net/http.wantConnQueue.headPos (field)
9 uses
net/http (current package)
transport.go#L1255: headPos int
transport.go#L1261: return len(q.head) - q.headPos + len(q.tail)
transport.go#L1271: if q.headPos >= len(q.head) {
transport.go#L1276: q.head, q.headPos, q.tail = q.tail, 0, q.head[:0]
transport.go#L1278: w := q.head[q.headPos]
transport.go#L1279: q.head[q.headPos] = nil
transport.go#L1280: q.headPos++
transport.go#L1286: if q.headPos < len(q.head) {
transport.go#L1287: return q.head[q.headPos]
![]() |
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. |