bufio.Writer.Buffered (method)
9 uses
bufio (current package)
bufio.go#L670: func (b *Writer) Buffered() int { return b.n }
bufio.go#L679: if b.Buffered() == 0 {
bufio.go#L754: if b.Buffered() == 0 && sw == nil && tryStringWriter {
bufio.go#L758: if b.Buffered() == 0 && tryStringWriter {
bufio.go#L796: if readerFromOK && b.Buffered() == 0 {
go.uber.org/zap/zapcore
buffered_write_syncer.go#L148: if len(bs) > s.writer.Available() && s.writer.Buffered() > 0 {
net/http
h2_bundle.go#L6653: if rws.bw.Buffered() > 0 {
nhooyr.io/websocket
write.go#L356: i := c.bw.Buffered()
write.go#L368: maskKey = mask(maskKey, c.writeBuf[i:c.bw.Buffered()])
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. |