...

Source file src/github.com/tetratelabs/wazero/experimental/sys/time.go

Documentation: github.com/tetratelabs/wazero/experimental/sys

     1  package sys
     2  
     3  import "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.
    10  const UTIME_OMIT int64 = math.MinInt64
    11  

View as plain text