Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for benchmarkClientServerParallel (0.19 sec)

  1. src/net/http/serve_test.go

    			b.Fatal("Got body:", body)
    		}
    	}
    
    	b.StopTimer()
    }
    
    func BenchmarkClientServerParallel(b *testing.B) {
    	for _, parallelism := range []int{4, 64} {
    		b.Run(fmt.Sprint(parallelism), func(b *testing.B) {
    			run(b, func(b *testing.B, mode testMode) {
    				benchmarkClientServerParallel(b, parallelism, mode)
    			}, []testMode{http1Mode, https1Mode, http2Mode})
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top