Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for previousDuration (0.12 sec)

  1. src/testing/benchmark.go

    	// 100µs is enough to amortize the overhead and provide sufficient
    	// dynamic load balancing.
    	grain := uint64(0)
    	if b.previousN > 0 && b.previousDuration > 0 {
    		grain = 1e5 * uint64(b.previousN) / uint64(b.previousDuration)
    	}
    	if grain < 1 {
    		grain = 1
    	}
    	// We expect the inner loop and function call to take at least 10ns,
    	// so do not do more than 100µs/10ns=1e4 iterations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top