Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClientTrace (0.25 sec)

  1. src/net/http/transport_test.go

    				c.Transport.(*Transport).DisableKeepAlives = tc.disableKeepAlives
    				req, err := NewRequest("GET", ts.URL, nil)
    				if err != nil {
    					t.Fatal(err)
    				}
    				count := 0
    				trace := &httptrace.ClientTrace{
    					WroteHeaderField: func(key string, field []string) {
    						if key != "Connection" {
    							return
    						}
    						if httpguts.HeaderValuesContainsToken(field, "close") {
    							count += 1
    						}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    				}
    				return false
    			}
    			return true
    		})
    		conns := 0
    		var info httptrace.GotConnInfo
    		ctx := httptrace.WithClientTrace(context.Background(), &httptrace.ClientTrace{
    			GotConn: func(v httptrace.GotConnInfo) {
    				conns++
    				info = v
    			},
    		})
    		req, err := NewRequestWithContext(ctx, "GET", cst.ts.URL, nil)
    		if err != nil {
    			t.Fatal(err)
    		}
    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