Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BenchmarkEndToEnd (1.06 sec)

  1. src/encoding/gob/timing_test.go

    			}
    		}
    	})
    }
    
    func BenchmarkEndToEndPipe(b *testing.B) {
    	benchmarkEndToEnd(b, func() any {
    		return &Bench{7, 3.2, "now is the time", bytes.Repeat([]byte("for all good men"), 100)}
    	}, func() (r io.Reader, w io.Writer, err error) {
    		r, w, err = os.Pipe()
    		return
    	})
    }
    
    func BenchmarkEndToEndByteBuffer(b *testing.B) {
    	benchmarkEndToEnd(b, func() any {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 07:16:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/net/rpc/server_test.go

    				if atomic.AddInt32(&recv, -1) == 0 {
    					close(res)
    				}
    			}
    			wg.Done()
    		}()
    	}
    	wg.Wait()
    }
    
    func BenchmarkEndToEnd(b *testing.B) {
    	benchmarkEndToEnd(dialDirect, b)
    }
    
    func BenchmarkEndToEndHTTP(b *testing.B) {
    	benchmarkEndToEnd(dialHTTP, b)
    }
    
    func BenchmarkEndToEndAsync(b *testing.B) {
    	benchmarkEndToEndAsync(dialDirect, b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top