Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bodyOkay (0.07 sec)

  1. src/net/http/serve_test.go

    }
    func testHijackBeforeRequestBodyRead(t *testing.T, mode testMode) {
    	var requestBody = bytes.Repeat([]byte("a"), 1<<20)
    	bodyOkay := make(chan bool, 1)
    	gotCloseNotify := make(chan bool, 1)
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		defer close(bodyOkay) // caller will read false if nothing else
    
    		reqBody := r.Body
    		r.Body = nil // to test that server.go doesn't use this value.
    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