testing.BenchmarkResult.T (field)

6 uses

	testing (current package)
		benchmark.go#L362: 	T         time.Duration // The total time taken.
		benchmark.go#L379: 	return r.T.Nanoseconds() / int64(r.N)
		benchmark.go#L387: 	if r.Bytes <= 0 || r.T <= 0 || r.N <= 0 {
		benchmark.go#L390: 	return (float64(r.Bytes) * float64(r.N) / 1e6) / r.T.Seconds()
		benchmark.go#L431: 		ns = float64(r.T.Nanoseconds()) / float64(r.N)
		benchmark.go#L691: 	r.T += time.Duration(other.NsPerOp())