Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for wroteRequest (0.22 sec)

  1. src/net/http/transport.go

    // will wait to see the Request's Body.Write result after getting a
    // response from the server. See comments in (*persistConn).wroteRequest.
    //
    // In tests, we set this to a large value to avoid flakiness from inconsistent
    // recycling of connections.
    var maxWriteWaitBeforeConnReuse = 50 * time.Millisecond
    
    // wroteRequest is a check before recycling a connection that the previous write
    // (from writeLoop above) happened and was successful.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. src/net/http/request.go

    func (r *Request) write(w io.Writer, usingProxy bool, extraHeaders Header, waitForContinue func() bool) (err error) {
    	trace := httptrace.ContextClientTrace(r.Context())
    	if trace != nil && trace.WroteRequest != nil {
    		defer func() {
    			trace.WroteRequest(httptrace.WroteRequestInfo{
    				Err: err,
    			})
    		}()
    	}
    	closed := false
    	defer func() {
    		if closed {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		},
    		WroteHeaders: func() {
    			logf("WroteHeaders")
    		},
    		Wait100Continue: func() { logf("Wait100Continue") },
    		Got100Continue:  func() { logf("Got100Continue") },
    		WroteRequest: func(e httptrace.WroteRequestInfo) {
    			logf("WroteRequest: %+v", e)
    			gotWroteReqEvent <- struct{}{}
    		},
    	}
    	if mode == http2Mode {
    		trace.TLSHandshakeStart = func() { logf("tls handshake start") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	if trace != nil && trace.Wait100Continue != nil {
    		trace.Wait100Continue()
    	}
    }
    
    func http2traceWroteRequest(trace *httptrace.ClientTrace, err error) {
    	if trace != nil && trace.WroteRequest != nil {
    		trace.WroteRequest(httptrace.WroteRequestInfo{Err: err})
    	}
    }
    
    func http2traceFirstResponseByte(trace *httptrace.ClientTrace) {
    	if trace != nil && trace.GotFirstResponseByte != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

              sink = sink,
            )
          source.timeout().timeout(readTimeoutMillis.toLong(), TimeUnit.MILLISECONDS)
          sink.timeout().timeout(writeTimeoutMillis.toLong(), TimeUnit.MILLISECONDS)
          tunnelCodec.writeRequest(nextRequest.headers, requestLine)
          tunnelCodec.finishRequest()
          val response =
            tunnelCodec.readResponseHeaders(false)!!
              .request(nextRequest)
              .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top