bufio.Writer.Available (method)
11 uses
bufio (current package)
bufio.go#L624: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L634: for len(p) > b.Available() && b.err == nil {
bufio.go#L662: if b.Available() <= 0 && b.Flush() != nil {
bufio.go#L683: n := b.Available()
bufio.go#L688: n = b.Available()
bufio.go#L705: for len(s) > b.Available() && b.err == nil {
bufio.go#L737: if b.Available() == 0 {
bufio.go#L761: if b.Available() == 0 {
golang.org/x/net/http2
http2.go#L271: return w.bw.Available()
net/http
h2_bundle.go#L3343: return w.bw.Available()
server.go#L867: if pool := bufioWriterPool(bw.Available()); pool != nil {
![]() |
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. |