Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkSyscall (0.11 sec)

  1. src/runtime/norace_test.go

    func BenchmarkSyscall(b *testing.B) {
    	benchmarkSyscall(b, 0, 1)
    }
    
    func BenchmarkSyscallWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 1)
    }
    
    func BenchmarkSyscallExcess(b *testing.B) {
    	benchmarkSyscall(b, 0, 4)
    }
    
    func BenchmarkSyscallExcessWork(b *testing.B) {
    	benchmarkSyscall(b, 100, 4)
    }
    
    func benchmarkSyscall(b *testing.B, work, excess int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 983 bytes
    - Viewed (0)
Back to top