You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: use 'us' instead of 'µs' for microseconds in examples
Users may not know how to type the µ character. Go's time.ParseDuration
accepts both 'us' and 'µs' for microseconds, so use the ASCII-friendly
version in documentation and CI examples.
Signed-off-by: Sertac Ozercan <[email protected]>
|`--min-threshold`||`0`| Minimum absolute latency difference to consider (e.g., `100µs`). Useful for fast policies where percentage changes may be noise. |
666
+
|`--min-threshold`||`0`| Minimum absolute latency difference to consider (e.g., `100us` or `100µs`). Useful for fast policies where percentage changes may be noise. |
667
667
|`--stats`||`false`| Gather detailed statistics from constraint framework |
Use `--min-threshold` in CI to prevent flaky failures. For policies that evaluate in under 1ms, a 10% regression might only be 50µs of noise from system jitter.
876
+
Use `--min-threshold` in CI to prevent flaky failures. For policies that evaluate in under 1ms, a 10% regression might only be 50us of noise from system jitter.
0 commit comments