...

Source file src/github.com/Microsoft/hcsshim/internal/vm/hcs/supported.go

Documentation: github.com/Microsoft/hcsshim/internal/vm/hcs

     1  //go:build windows
     2  
     3  package hcs
     4  
     5  import "github.com/Microsoft/hcsshim/internal/vm"
     6  
     7  func (uvm *utilityVM) Supported(resource vm.Resource, op vm.ResourceOperation) bool {
     8  	// For now at least HCS supports everything we care about.
     9  	return true
    10  }
    11  

View as plain text