bufio.Writer.Available (method)
10 uses
bufio (current package)
bufio.go#L656: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L674: for len(p) > b.Available() && b.err == nil {
bufio.go#L702: if b.Available() <= 0 && b.Flush() != nil {
bufio.go#L724: n := b.Available()
bufio.go#L729: n = b.Available()
bufio.go#L749: for len(s) > b.Available() && b.err == nil {
bufio.go#L788: if b.Available() == 0 {
bufio.go#L818: if b.Available() == 0 {
net/http
h2_bundle.go#L3580: return w.bw.Available()
server.go#L908: if pool := bufioWriterPool(bw.Available()); pool != nil {
![]() |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |