func bufio.NewWriterSize
7 uses
bufio (current package)
bufio.go#L589: func NewWriterSize(w io.Writer, size int) *Writer {
bufio.go#L608: return NewWriterSize(w, defaultBufSize)
go.uber.org/zap/zapcore
buffered_write_syncer.go#L128: s.writer = bufio.NewWriterSize(s.WS, size)
net/http
h2_bundle.go#L3574: return bufio.NewWriterSize(nil, http2bufWriterPoolBufferSize)
h2_bundle.go#L3884: rws.bw = bufio.NewWriterSize(http2chunkWriter{rws}, http2handlerChunkWriteSize)
server.go#L853: return bufio.NewWriterSize(w, size)
transport.go#L1774: pconn.bw = bufio.NewWriterSize(persistConnWriter{pconn}, t.writeBufferSize())
The pages are generated with Golds v0.6.7. (GOOS=linux 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. |