crypto/tls.atLeastReader.N (field)
17 uses
github.com/go-git/go-git/v5/plumbing/format/index
decoder.go#L290: d.extReader.Reset(&io.LimitedReader{R: d.r, N: int64(len)})
golang.org/x/mod/zip
zip.go#L517: lr := &io.LimitedReader{R: rc, N: size + 1}
zip.go#L521: if lr.N <= 0 {
zip.go#L658: lr := &io.LimitedReader{R: r, N: int64(zf.UncompressedSize64) + 1}
zip.go#L668: if lr.N <= 0 {
io
io.go#L413: if l, ok := src.(*LimitedReader); ok && int64(size) > l.N {
io.go#L414: if l.N < 1 {
io.go#L417: size = int(l.N)
io.go#L463: N int64 // max bytes remaining
io.go#L467: if l.N <= 0 {
io.go#L470: if int64(len(p)) > l.N {
io.go#L471: p = p[0:l.N]
io.go#L474: l.N -= int64(n)
net/http
transfer.go#L861: if lr, ok := b.src.(*io.LimitedReader); ok && lr.N > 0 {
transfer.go#L873: if lr, ok := b.src.(*io.LimitedReader); ok && lr.N == 0 {
transfer.go#L965: return lr.N
transfer.go#L986: if lr, ok := b.src.(*io.LimitedReader); ok && lr.N > maxPostHandlerReadBytes {
![]() |
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. |