github.com/endocode/docker@v1.4.2-0.20160113120958-46eb4700391e/daemon/execdriver/windows/update.go (about)

     1  // +build windows
     2  
     3  package windows
     4  
     5  import (
     6  	"fmt"
     7  
     8  	"github.com/docker/docker/daemon/execdriver"
     9  )
    10  
    11  // Update updates resource configs for a container.
    12  func (d *Driver) Update(c *execdriver.Command) error {
    13  	return fmt.Errorf("Windows: Update not implemented")
    14  }