github.com/uppal0016/docker_new@v0.0.0-20240123060250-1c98be13ac2c/pkg/system/utimes_unsupported.go (about)

     1  // +build !linux,!freebsd,!darwin
     2  
     3  package system
     4  
     5  import "syscall"
     6  
     7  // LUtimesNano is not supported on platforms other than linux, freebsd and darwin.
     8  func LUtimesNano(path string, ts []syscall.Timespec) error {
     9  	return ErrNotSupportedPlatform
    10  }