Stop
Stops the timer.
Stop a timer by explicitly calling it’s Stop
method.
Although timers are stopped at the end of a build you sometimes want to explicitly stop it.
{{ $t1 := debug.Timer "Stopped" }}
{{ range seq 2000 }}
{{ $f := math.Sqrt . }}
{{ end }}
{{ $t1.Stop }}
{{ range seq 2000 }}
{{ $f := math.Sqrt . }}
{{ end }}
{{ end }}
Here the timer is stopped after the first inner range. That way the rest of the code is not included in the timing report
INFO timer: name Stopped count 1 duration 4.3045ms average 4.3045ms median 4.3045ms
Last updated:
March 17, 2025
:
content: add documentation for Timer.Stop (cc495b6bd)
Improve this page