time.go

 1package sys
 2
 3import "math"
 4
 5// UTIME_OMIT is a special constant for use in updating times via FS.Utimens
 6// or File.Utimens. When used for atim or mtim, the value is retained.
 7//
 8// Note: This may be implemented via a stat when the underlying filesystem
 9// does not support this value.
10const UTIME_OMIT int64 = math.MinInt64