mirror of
https://github.com/rancher/plugins.git
synced 2025-09-10 13:07:20 +00:00
Windows: Updates Windows Vendoring
Updates windows dependent libraries for vendoing.
This commit is contained in:
19
vendor/github.com/Microsoft/hcsshim/internal/uvm/constants.go
generated
vendored
Normal file
19
vendor/github.com/Microsoft/hcsshim/internal/uvm/constants.go
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
package uvm
|
||||
|
||||
import "fmt"
|
||||
|
||||
const (
|
||||
// MaxVPMEMCount is the maximum number of VPMem devices that may be added to an LCOW
|
||||
// utility VM
|
||||
MaxVPMEMCount = 128
|
||||
|
||||
// DefaultVPMEMCount is the default number of VPMem devices that may be added to an LCOW
|
||||
// utility VM if the create request doesn't specify how many.
|
||||
DefaultVPMEMCount = 64
|
||||
|
||||
// DefaultVPMemSizeBytes is the default size of a VPMem device if the create request
|
||||
// doesn't specify.
|
||||
DefaultVPMemSizeBytes = 4 * 1024 * 1024 * 1024 // 4GB
|
||||
)
|
||||
|
||||
var errNotSupported = fmt.Errorf("not supported")
|
Reference in New Issue
Block a user