net/http.Transport.idleConn (field)
13 uses
net/http (current package)
transport.go#L97: idleConn map[connectMethodKey][]*persistConn // most recently used at end
transport.go#L761: m := t.idleConn
transport.go#L762: t.idleConn = nil
transport.go#L963: if t.idleConn == nil {
transport.go#L964: t.idleConn = make(map[connectMethodKey][]*persistConn)
transport.go#L966: idles := t.idleConn[key]
transport.go#L975: t.idleConn[key] = append(idles, pconn)
transport.go#L1026: if list, ok := t.idleConn[w.key]; ok {
transport.go#L1066: t.idleConn[w.key] = list
transport.go#L1068: delete(t.idleConn, w.key)
transport.go#L1100: pconns := t.idleConn[key]
transport.go#L1107: delete(t.idleConn, key)
transport.go#L1118: t.idleConn[key] = pconns[:len(pconns)-1]
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |