mirror of
https://github.com/mudler/luet.git
synced 2025-08-02 07:59:22 +00:00
* bump github.com/moby/buildkit to v0.13.0 Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * fix: update dep usage based on newer version Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * remove empty line Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> * ci: bump golang to 1.21.x * Bump moby * debug --------- Signed-off-by: Nianyu Shen <nianyu@spectrocloud.com> Co-authored-by: Nianyu Shen <nianyu@spectrocloud.com>
23 lines
1.1 KiB
Go
23 lines
1.1 KiB
Go
// This package provides utilities for efficiently performing Win32 IO operations in Go.
|
|
// Currently, this package is provides support for genreal IO and management of
|
|
// - named pipes
|
|
// - files
|
|
// - [Hyper-V sockets]
|
|
//
|
|
// This code is similar to Go's [net] package, and uses IO completion ports to avoid
|
|
// blocking IO on system threads, allowing Go to reuse the thread to schedule other goroutines.
|
|
//
|
|
// This limits support to Windows Vista and newer operating systems.
|
|
//
|
|
// Additionally, this package provides support for:
|
|
// - creating and managing GUIDs
|
|
// - writing to [ETW]
|
|
// - opening and manageing VHDs
|
|
// - parsing [Windows Image files]
|
|
// - auto-generating Win32 API code
|
|
//
|
|
// [Hyper-V sockets]: https://docs.microsoft.com/en-us/virtualization/hyper-v-on-windows/user-guide/make-integration-service
|
|
// [ETW]: https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/event-tracing-for-windows--etw-
|
|
// [Windows Image files]: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/work-with-windows-images
|
|
package winio
|