Sign in
go
/
go
/
ede9aa9e028e9bded416309981d8944d88366ffe
/
src
/
pkg
/
bufio
/
bufio_test.go
ede9aa9
bufio: drop buffer recycling, add Reader.Reset and Writer.Reset
by Brad Fitzpatrick
· 12 years ago
93c6d0e
bufio: check buffer availability before reading in ReadFrom
by Andrew Gerrand
· 12 years ago
99f6722
bufio: reuse Writer buffers after Flush
by Brad Fitzpatrick
· 12 years ago
b25a53a
bufio: make Reader buffer transient
by Brad Fitzpatrick
· 12 years ago
dc71ace
bufio: add some tests
by Brad Fitzpatrick
· 12 years ago
55ad7b9
bufio: new Scanner interface
by Rob Pike
· 12 years ago
f36a53c
cmd/gofmt, bufio, image: Consistency and error handling.
by Robin Eklind
· 12 years ago
46811d2
src: Use bytes.Equal instead of bytes.Compare where possible.
by Matthew Dempsky
· 12 years ago
f0d9ccb
bufio: minor fixes
by Russ Cox
· 12 years ago
0ba5ec5
bufio: remove a little unnecessary indirection in tests.
by Nigel Tao
· 12 years ago
e55fdff
bufio: make Writer.ReadFrom not flush prematurely. For example,
by Nigel Tao
· 12 years ago
2a4818d
bufio: Implement io.ReaderFrom for (*Writer).
by Michael Chaten
· 12 years ago
e289a2b
bufio: Implement io.WriterTo for (*Reader)
by Michael Chaten
· 13 years ago
88f8af1
bufio: don't return errors from good Peeks
by Brad Fitzpatrick
· 13 years ago
bb7b1a1
bufio: drop error return for NewReaderSize and NewWriterSize
by Rob Pike
· 13 years ago
5be2404
all: avoid bytes.NewBuffer(nil)
by Rob Pike
· 13 years ago
64776da
bufio: make the minimum read buffer size 16 bytes.
by Rob Pike
· 13 years ago
fd34e78
various: reduce overuse of os.EINVAL + others
by Russ Cox
· 13 years ago
30aa701
renaming_2: gofix -r go1pkgrename src/pkg/[a-l]*
by Rob Pike
· 13 years ago
bd43eac
bufio: return nil line from ReadLine on error, as documented
by Brad Fitzpatrick
· 13 years ago
c2049d2
src/pkg/[a-m]*: gofix -r error -force=error
by Russ Cox
· 13 years ago
9f6d036
bufio, io: use rune
by Russ Cox
· 13 years ago
56f9484
bufio: handle a "\r\n" that straddles the buffer.
by Andrew Gerrand
· 14 years ago
90564a9
go/printer: changed max. number of newlines from 3 to 2
by Robert Griesemer
· 14 years ago
f795bdb
bufio: do not cache Read errors
by Graham Miller
· 14 years ago
6392fc7
bufio: add ReadLine
by Adam Langley
· 14 years ago
d3c61fc
testing: fix build
by Rob Pike
· 14 years ago
1ce6245
throughout: fix broken calls to Printf etc.
by Rob Pike
· 14 years ago
3cb4bdb
utf8: make EncodeRune's destination the first argument.
by Adam Langley
· 14 years ago
d86ab01
use copy
by Russ Cox
· 14 years ago
3478891
gofmt -s -w src misc
by Robert Griesemer
· 14 years ago
52e3c99
bufio: bulletproof UnreadRune
by Rob Pike
· 14 years ago
e439345
bufio.UnreadRune: fix bug at EOF Fixes #1132.
by Rob Pike
· 15 years ago
1959c3a
tests: fix prints
by Rob Pike
· 15 years ago
acb695f
bufio: add UnreadRune.
by Rob Pike
· 15 years ago
27e2490
bufio: introduce Peek.
by Nigel Tao
· 15 years ago
041d978
bufio: change ReadSlice to match description
by Russ Cox
· 15 years ago
8c9944d
bufio: WriteRune also fix a printing error in the test for bytes.Buffer
by Rob Pike
· 15 years ago
9750adb
strings: delete Runes, Bytes
by Russ Cox
· 15 years ago
5a1d332
1) Change default gofmt default settings for
by Robert Griesemer
· 15 years ago
1698934
- replaced gofmt expression formatting algorithm with
by Robert Griesemer
· 15 years ago
40621d5
remove semis after statements in one-statement statement lists
by Robert Griesemer
· 15 years ago
646a2c5
gofmt-ify bufio
by Robert Griesemer
· 15 years ago
524ade9
fix bufio test case
by Robert Griesemer
· 15 years ago
6efd7e6
move strings.Buffer into bytes
by Rob Pike
· 16 years ago
fed4770
step 2 of the great buffer shift.
by Rob Pike
· 16 years ago
7be7700
use buf.String() instead of string(buf.Bytes())
by Rob Pike
· 16 years ago
d5be41f
rename bytes.Buffer.Data() to bytes.Buffer.Bytes()
by Rob Pike
· 16 years ago
ca6a0fe
more "declared and not used".
by Russ Cox
· 16 years ago
4b40928
remove Line in bufio.ReadLine(Bytes|Slice|String)
by Russ Cox
· 16 years ago
29415d0
fix bufio bugs involving readers that return os.EOF with the last bit of data.
by Russ Cox
· 16 years ago
52cf67a
naming cleanup.
by Russ Cox
· 16 years ago
b04ac10
convert non-low-level non-google pkg code to whole-package compilation.
by Russ Cox
· 16 years ago
5876cb0
- bufio.ReadRune fix for empty reads w/o errors - added testcases
by Robert Griesemer
· 16 years ago
2495c14
WriteString
by Rob Pike
· 16 years ago
d3a412a
io.StringBytes -> strings.Bytes io.ByteBuffer -> bytes.Buffer
by Russ Cox
· 16 years ago
64684cc
introduce os.EOF and io.ErrUnexpectedEOF.
by Russ Cox
· 16 years ago
d90e7cb
mv src/lib to src/pkg
by Rob Pike
· 16 years ago
[Renamed from src/lib/bufio/bufio_test.go]
be869ba
add io.ByteReader.
by Russ Cox
· 16 years ago
01712ae
embeddability: change bufio.BufRead to bufio.Reader etc.
by Rob Pike
· 16 years ago
c8b47c6
Name change to improve embeddability:
by Rob Pike
· 16 years ago
9b2c5da
directory-per-package step 1: move files from lib/X.go to lib/X/X.go
by Rob Pike
· 16 years ago
[Renamed from src/lib/bufio_test.go]
aaf63f8
Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors.
by Rob Pike
· 16 years ago
ee19695
make NewBufRead etc. idempotent
by Rob Pike
· 16 years ago
b80fdd1
an early 6g limitation forced the use of
by Russ Cox
· 16 years ago
5dd4ef5
document bufio
by Rob Pike
· 16 years ago
99d00ea
delete vestigial references to package syscall
by Rob Pike
· 16 years ago
be2edb5
Automated g4 rollback of changelist 25024, plus significant hand editing.
by Russ Cox
· 16 years ago
9f8f2e6
convert composite literals from { } to ( ).
by Russ Cox
· 16 years ago
9aa28f9
bufio:
by Russ Cox
· 16 years ago
4cf7711
update go code tree to new func rules.
by Russ Cox
· 16 years ago
839a684
delete export
by Russ Cox
· 16 years ago
33f3ed7
casify fixup for bufio
by Rob Pike
· 16 years ago
61f3302
printf->Printf etc.
by Rob Pike
· 16 years ago
5564504
new new & make
by Russ Cox
· 16 years ago
08ca30b
change *map to map; *chan to chan; new(T) to new(*T)
by Russ Cox
· 16 years ago
d47d888
convert *[] to [].
by Russ Cox
· 16 years ago
0f83fa3
convert tests. refine gotest's test selection criteria.
by Russ Cox
· 16 years ago
[Renamed (60%) from test/bufiolib.go]
983f06b
update code to follow new semicolon rules:
by Russ Cox
· 16 years ago
4dfc7f0
fix / work around bugs in bufio test
by Russ Cox
· 17 years ago
7c9e2c2
buffered input & output
by Russ Cox
· 17 years ago