github.com/daaku/docker@v1.5.0/pkg/system/utimes_darwin.go (about)

     1  package system
     2  
     3  import "syscall"
     4  
     5  func LUtimesNano(path string, ts []syscall.Timespec) error {
     6  	return ErrNotSupportedPlatform
     7  }
     8  
     9  func UtimesNano(path string, ts []syscall.Timespec) error {
    10  	return syscall.UtimesNano(path, ts)
    11  }