File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 76
76
// For debugging, the result of t.String does include the monotonic
77
77
// clock reading if present. If t != u because of different monotonic clock readings,
78
78
// that difference will be visible when printing t.String() and u.String().
79
+ //
80
+ // # Timer Resolution
81
+ //
82
+ // Timer resolution varies depending on the Go runtime, the operating system
83
+ // and the underlying hardware.
84
+ // On Unix, the resolution is approximately 1ms.
85
+ // On Windows, the default resolution is approximately 16ms, but
86
+ // a lower resolution may be requested using [timeBeginPeriod].
87
+ //
88
+ // [timeBeginPeriod]: https://learn.microsoft.com/en-us/windows/win32/api/timeapi/nf-timeapi-timebeginperiod
79
89
package time
80
90
81
91
import (
You can’t perform that action at this time.
0 commit comments