summaryrefslogtreecommitdiff
path: root/src/pkg/io
Commit message (Expand)AuthorAgeFilesLines
* build: move package sources from src/pkg to srcRuss Cox2014-09-0810-1919/+0
* io: document that Readers and Writers must not retain buffersBrad Fitzpatrick2014-08-251-1/+7
* io: copy slice argument in MultiReader and MultiWriterRuss Cox2014-05-122-2/+33
* io: document that a Writer must not write to pBrad Fitzpatrick2014-04-151-0/+1
* io: clarify MultiReader documentationAndrew Gerrand2014-01-281-1/+2
* io: add tests for SectionReader ReadAt and SizeShawn Smith2013-12-291-0/+20
* io/ioutil: use sync.Pool in DiscardBrad Fitzpatrick2013-12-202-26/+11
* io: prevent write to PipeWriter after CloseRick Arnold2013-08-132-0/+36
* io/ioutil: add WriteString to DiscardBrad Fitzpatrick2013-08-091-0/+4
* io: let SectionReader seek past the end; document Seeker semantics moreBrad Fitzpatrick2013-07-182-11/+43
* io/ioutil: make WriteFile notice errors from Close()Robert Obryk2013-06-051-1/+3
* io: Prioritize WriterTos over ReaderFroms in Copy.Daniel Morsing2013-05-232-8/+34
* io: explain what (0,nil) means from ReadRob Pike2013-04-181-0/+9
* io: document non-guarantees of io.CloserBrad Fitzpatrick2013-04-091-0/+3
* all: remove now-unnecessary unreachable panicsBrad Fitzpatrick2013-03-111-1/+0
* src: use internal tests if possibleRobin Eklind2013-02-192-4/+2
* io: document and test new CopyN return behaviorBrad Fitzpatrick2013-02-132-3/+22
* io: Simplify CopyN implementation by delegating to Copy.Jeremy Schlatter2013-02-071-36/+5
* io: guarantee err == nil for full reads in ReadFull and ReadAtLeastRuss Cox2013-01-312-13/+26
* io/ioutil: fix Discard data raceBrad Fitzpatrick2012-12-283-17/+15
* io: SectionReader.ReadAt should return EOF when buf is not fully readShenghou Ma2012-12-132-0/+37
* io: add ByteWriter interfaceBrad Fitzpatrick2012-10-301-0/+5
* io/ioutil: use pathname instead of name in docs to avoid confusionShenghou Ma2012-10-131-3/+3
* io/ioutil: fix data race on randDmitriy Vyukov2012-10-091-0/+4
* io/ioutil: fix data race under the race detectorDmitriy Vyukov2012-10-073-3/+28
* io: amend ReaderFrom doc as per r's commentAndrew Gerrand2012-08-081-3/+3
* io: document ReaderFrom and WriterToBrad Fitzpatrick2012-08-071-0/+12
* io/ioutil: fix crash when Stat failsRuss Cox2012-03-141-3/+6
* io: minor change in io.WriteAt docs.Francisco Souza2012-03-081-1/+1
* io: more docs on WriterAtBrad Fitzpatrick2012-03-071-0/+7
* all: more typosRobert Griesemer2012-03-021-1/+1
* io: Pipes and ReadAt are safe to use concurrently.Rob Pike2012-03-012-0/+7
* io: document that i/o is not necessarily safe for parallel access.Rob Pike2012-02-291-0/+4
* os: delete os.EINVAL and so onRob Pike2012-02-171-2/+2
* io/ioutil: document EOF behavior in ReadFile and ReadAllRob Pike2012-02-081-0/+6
* io: API tweaksRob Pike2012-02-062-15/+16
* build: remove Make.pkg, Make.toolRuss Cox2012-01-302-25/+0
* bytes.Buffer: restore panic on out-of-memoryRob Pike2012-01-211-2/+15
* os: use FileMode instead of uint32 in various functionsBrad Fitzpatrick2012-01-191-1/+1
* io/ioutil: close file in TestWriteFile before deleting itAlex Brainman2011-12-191-0/+1
* io/ioutil: remove another reference to _testRuss Cox2011-12-151-11/+11
* io/ioutil, old/template: do not assume _test exists for scratch spaceRuss Cox2011-12-151-1/+5
* various: a grab-bag of time.Duration cleanups.David Symonds2011-12-131-1/+1
* Add a []byte argument to hash.Hash to allow an allocation to be saved.Adam Langley2011-12-011-1/+1
* os: new FileInfo, FileMode types + update treeRuss Cox2011-11-302-18/+14
* use new time APIRuss Cox2011-11-301-1/+1
* net, io/ioutil: remove use of os.TimeAnthony Martin2011-11-111-2/+2
* all: sort importsRuss Cox2011-11-021-1/+1
* src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox2011-11-012-13/+13
* io: use error, add EOF, avoid osRuss Cox2011-11-016-107/+110