Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkParallelTimerLatency (0.49 sec)

  1. src/time/sleep_test.go

    		}
    	}
    }
    
    // Benchmark timer latency when the thread that creates the timer is busy with
    // other work and the timers must be serviced by other threads.
    // https://golang.org/issue/38860
    func BenchmarkParallelTimerLatency(b *testing.B) {
    	gmp := runtime.GOMAXPROCS(0)
    	if gmp < 2 || runtime.NumCPU() < gmp {
    		b.Skip("skipping with GOMAXPROCS < 2 or NumCPU < GOMAXPROCS")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
Back to top