syscall.Timespec.Nsec (field)
5 uses
syscall (current package)
syscall.go#L81: return int64(ts.Sec), int64(ts.Nsec)
syscall.go#L91: return int64(ts.Sec)*1e9 + int64(ts.Nsec)
syscall_linux_amd64.go#L112: return Timespec{Sec: sec, Nsec: nsec}
ztypes_linux_amd64.go#L26: Nsec int64
os
file_posix.go#L183: utimes[i] = syscall.Timespec{Sec: _UTIME_OMIT, Nsec: _UTIME_OMIT}
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |