func bufio.NewWriterSize
9 uses
bufio (current package)
bufio.go#L568: func NewWriterSize(w io.Writer, size int) *Writer {
bufio.go#L585: return NewWriterSize(w, defaultBufSize)
github.com/go-git/go-git/v5/plumbing/format/packfile
scanner.go#L405: wbuf: bufio.NewWriterSize(nil, 64),
golang.org/x/net/http2
http2.go#L263: return bufio.NewWriterSize(nil, bufWriterPoolBufferSize)
server.go#L72: rws.bw = bufio.NewWriterSize(chunkWriter{rws}, handlerChunkWriteSize)
net/http
h2_bundle.go#L3335: return bufio.NewWriterSize(nil, http2bufWriterPoolBufferSize)
h2_bundle.go#L3638: rws.bw = bufio.NewWriterSize(http2chunkWriter{rws}, http2handlerChunkWriteSize)
server.go#L862: return bufio.NewWriterSize(w, size)
transport.go#L1741: pconn.bw = bufio.NewWriterSize(persistConnWriter{pconn}, t.writeBufferSize())
 |
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. |