- 9d12307 ioutil: add Discard, update tree. by Brad Fitzpatrick · 14 years ago
- 6a186d3 src/pkg: make package doc comments consistently start with "Package foo". by Nigel Tao · 14 years ago
- 0be2ef3 io: clarify that ReadAt shouldn't move the seek offset by Brad Fitzpatrick · 14 years ago
- 8dc0ba7 io: fixes for Read with n > 0, os.EOF by Robert Hencke · 14 years ago
- 8a90fd3 os: New Open API. by Rob Pike · 14 years ago
- 3479bb6 ioutil: add NopCloser by Brad Fitzpatrick · 14 years ago
- 478f08a io/ioutil: clean-up of ReadAll and ReadFile by Robert Griesemer · 14 years ago
- 6d6f338 io: reimplement Pipe by Russ Cox · 14 years ago
- 2b4a960 io/ioutil: use filepath.Join, handle trailing / in $TMPDIR by Russ Cox · 14 years ago
- 04ca4f8 path/filepath: new OS-specific path support by Gustavo Niemeyer · 14 years ago
- 9ebe384 io/ioutil: add TempDir by Russ Cox · 14 years ago
- 827e98d io: rename interfaces by Robert Griesemer · 14 years ago
- 622d729 io: add ReadRuner by Rob Pike · 14 years ago
- 0f26608 io: fix Copyn EOF handling by Russ Cox · 14 years ago
- 84fc1e2 Fix documentation typo. by Anschel Schaffer-Cohen · 14 years ago
- 6101788 io: use SetFinalizer more elegantly in Pipe by Christopher Wedgwood · 14 years ago
- 4e9cc08 testing: eliminate testing/regexp by Rob Pike · 14 years ago
- 3478891 gofmt -s -w src misc by Robert Griesemer · 14 years ago
- f3549d8 io/ioutil: use _test not _obj in test by Russ Cox · 14 years ago
- 1959c3a tests: fix prints by Rob Pike · 14 years ago
- 4642708 io: prevent ReadAtLeast spinloop if min > len(buf) by Andrew Gerrand · 15 years ago
- da392d9 build: no required environment variables by Russ Cox · 15 years ago
- e45b58f os: change the type of permissions argument for Open etc. to uint32. by Rob Pike · 15 years ago
- 3f5966d io: consolidate multi_reader and multi_writer into a single file, multi.go by Rob Pike · 15 years ago
- 719cde2 io: MultiReader and MultiWriter by Brad Fitzpatrick · 15 years ago
- 9a2f002 io: Avoid another race condition in pipes. by Ian Lance Taylor · 15 years ago
- 56b3e5d io: fix SectionReader Seek to seek backwards by Peter Mundy · 15 years ago
- 0e25775 io/ioutil.TempFile for Windows Fixes #834. by Peter Mundy · 15 years ago
- 7c1be45 io: Avoid race condition in pipe. by Ian Lance Taylor · 15 years ago
- 28852c1 io/ioutil: add TempFile by Russ Cox · 15 years ago
- cc62bed pipe: implementation #3; this time for sure! Added goroutine; got simpler. by Russ Cox · 15 years ago
- 5cd8c83 FileInfo: regularize the types of some fields. by Rob Pike · 15 years ago
- 3ddeef8 rename os.Dir to os.FileInfo by Rob Pike · 15 years ago
- 0085e35 io/ioutil: fix bug in ReadFile when Open succeeds but Stat fails by Russ Cox · 15 years ago
- 9750adb strings: delete Runes, Bytes by Russ Cox · 15 years ago
- 2a5d30f io: revised Pipe implementation by Russ Cox · 15 years ago
- 6039a41 io: fix nil Write bug in Pipe by Russ Cox · 15 years ago
- fce5d60 add a standard interface that wraps ReadByte, io.ReadByter by Rob Pike · 15 years ago
- a3d1045 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
- 295ceb4 remove uses of string concatenation from src and misc directory by Robert Griesemer · 15 years ago
- bc3e347 Add ReadFrom and WriteTo methods to bytes.Buffer, to enable i/o without buffer allocation. by Rob Pike · 15 years ago
- b0683bd move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package. by Rob Pike · 15 years ago
- f9810f1 make io.ReadFile use Stat.Size as a hint for preallocation by Rob Pike · 15 years ago
- 6fc8207 go: makes it build for the case $GOROOT has whitespaces by Sergio Luis O. B. Correia · 15 years ago
- b90f673 io.ReadWriter: fix doc comment (ReadWrite -> ReadWriter) by Russ Cox · 15 years ago
- 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
- 3bb0032 - 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
- 368f8cb - fine-tuning of one-line func heuristic (nodes.go) by Robert Griesemer · 15 years ago
- d3d3acc gofmt-ify io, json, runtime, encoding by Robert Griesemer · 15 years ago
- 4d310f2 reverse the arguments to io.Copy so the destination is on the by Rob Pike · 15 years ago
- b80d36d - implemented utility functions for directory reading/traversal - added tests by Robert Griesemer · 15 years ago
- 094f1d5 more lgtm files from gofmt by Russ Cox · 15 years ago
- c2ec958 apply gofmt to go, gob, hash, http, image, io, json, log by Russ Cox · 15 years ago
- 20011bc unused imports by Russ Cox · 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
- f277ebf import debug/gosym from usr/austin/sym by Russ Cox · 16 years ago
- e596297 add SectionReader, ReaderAt. by Russ Cox · 16 years ago
- 90dcd5f add io.LimitReader. use it to limit data read from http.Request Body by Russ Cox · 16 years ago
- b3062f1 Add a standard Seeker interface. by Austin Clements · 16 years ago
- 3b864e4 convert low-level (used by testing) packages to by Russ Cox · 16 years ago
- e7af3b8 comment change by Robert Griesemer · 16 years ago
- ff9e657 WriteFile util function by Robert Griesemer · 16 years ago
- 55e790a clean up some BUG/TODO in go code by Russ Cox · 16 years ago
- 832e72b delete io.ByteBuffer by Russ Cox · 16 years ago
- d3a412a io.StringBytes -> strings.Bytes io.ByteBuffer -> bytes.Buffer by Russ Cox · 16 years ago
- a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
- 5766553 fix io.Bytebuffer.Read for new EOF semantics by Rob Pike · 16 years ago
- 71f19d6 document requirements on Write method by Russ Cox · 16 years ago
- da5abb9 changes required if we disallow the implicit * by Russ Cox · 16 years ago
- 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
- 2805eb9 fix build by Rob Pike · 16 years ago
- 08aab44 Add ReadByte to bytebuffer by Scott Schwartz · 16 years ago
- d90e7cb mv src/lib to src/pkg by Rob Pike · 16 years ago