Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for benchmarkTCPConcurrentReadWrite (2.83 sec)

  1. src/net/tcpsock_test.go

    	}
    }
    
    func BenchmarkTCP4ConcurrentReadWrite(b *testing.B) {
    	benchmarkTCPConcurrentReadWrite(b, "127.0.0.1:0")
    }
    
    func BenchmarkTCP6ConcurrentReadWrite(b *testing.B) {
    	if !supportsIPv6() {
    		b.Skip("ipv6 is not supported")
    	}
    	benchmarkTCPConcurrentReadWrite(b, "[::1]:0")
    }
    
    func benchmarkTCPConcurrentReadWrite(b *testing.B, laddr string) {
    	testHookUninstaller.Do(uninstallTestHooks)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top