Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for queueForIdleConn (0.11 sec)

  1. src/net/http/transport.go

    		}
    	}
    	pconn.idleAt = time.Now()
    	return nil
    }
    
    // queueForIdleConn queues w to receive the next idle connection for w.cm.
    // As an optimization hint to the caller, queueForIdleConn reports whether
    // it successfully delivered an already-idle connection.
    func (t *Transport) queueForIdleConn(w *wantConn) (delivered bool) {
    	if t.DisableKeepAlives {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top