github.com/khulnasoft-lab/khulnasoft@v26.0.1-0.20240328202558-330a6f959fe0+incompatible/daemon/update_windows.go (about)

     1  package daemon // import "github.com/docker/docker/daemon"
     2  
     3  import (
     4  	"github.com/docker/docker/api/types/container"
     5  	libcontainerdtypes "github.com/docker/docker/libcontainerd/types"
     6  )
     7  
     8  func toContainerdResources(resources container.Resources) *libcontainerdtypes.Resources {
     9  	// We don't support update, so do nothing
    10  	return nil
    11  }