github.com/prometheus/common/expfmt.TextParser.buf (field)
11 uses
github.com/prometheus/common/expfmt (current package)
text_parse.go#L53: buf *bufio.Reader // Where the parsed input is read through.
text_parse.go#L123: if p.buf == nil {
text_parse.go#L124: p.buf = bufio.NewReader(in)
text_parse.go#L126: p.buf.Reset(in)
text_parse.go#L180: if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil {
text_parse.go#L529: if p.currentByte, p.err = p.buf.ReadByte(); p.err != nil || !isBlankOrTab(p.currentByte) {
text_parse.go#L551: p.currentByte, p.err = p.buf.ReadByte()
text_parse.go#L586: p.currentByte, p.err = p.buf.ReadByte()
text_parse.go#L601: p.currentByte, p.err = p.buf.ReadByte()
text_parse.go#L619: p.currentByte, p.err = p.buf.ReadByte()
text_parse.go#L635: if p.currentByte, p.err = p.buf.ReadByte(); p.err != 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. |