github.com/Prakhar-Agarwal-byte/moby@v0.0.0-20231027092010-a14e3e8ab87e/pkg/system/utimes_unsupported.go (about)

     1  //go:build !linux && !freebsd
     2  
     3  package system // import "github.com/Prakhar-Agarwal-byte/moby/pkg/system"
     4  
     5  import "syscall"
     6  
     7  // LUtimesNano is only supported on linux and freebsd.
     8  func LUtimesNano(path string, ts []syscall.Timespec) error {
     9  	return ErrNotSupportedPlatform
    10  }