github.com/docker/engine@v22.0.0-20211208180946-d456264580cf+incompatible/pkg/system/utimes_unsupported.go (about) 1 //go:build !linux && !freebsd 2 // +build !linux,!freebsd 3 4 package system // import "github.com/docker/docker/pkg/system" 5 6 import "syscall" 7 8 // LUtimesNano is only supported on linux and freebsd. 9 func LUtimesNano(path string, ts []syscall.Timespec) error { 10 return ErrNotSupportedPlatform 11 }