summaryrefslogtreecommitdiff
path: root/src/pkg/base64/base64_test.go
AgeCommit message (Collapse)AuthorFilesLines
2009-11-01These files were moved to encoding/base64. The directory wasIan Lance Taylor1-201/+0
already removed from the Makefile. R=rsc http://go/go-review/1017006
2009-10-08more lgtm files from gofmtRuss Cox1-2/+2
R=gri OCL=35485 CL=35488
2009-10-06apply gofmt to the LGTM-marked files from 34501Russ Cox1-10/+10
that have not changed since I applied gofmt. R=gri DELTA=456 (77 added, 3 deleted, 376 changed) OCL=35378 CL=35383
2009-09-21move strings.Buffer into bytesRob Pike1-2/+2
delete strings.Buffer add a test for a bug not caught before (mustn't install zero-length blocks) R=rsc DELTA=987 (289 added, 587 deleted, 111 changed) OCL=34850 CL=34850
2009-09-21step 2 of the great buffer shift.Rob Pike1-2/+2
make strings.Buffer handle strings and bytes with comparable efficiency. if ok, next step will be to move this code to bytes.Buffer and terminate strings.Buffer's short happy life. R=rsc DELTA=292 (212 added, 0 deleted, 80 changed) OCL=34837 CL=34849
2009-09-17use buf.String() instead of string(buf.Bytes())Rob Pike1-5/+4
use strings.Buffer instead of bytes.Buffer in some places R=rsc DELTA=40 (0 added, 3 deleted, 37 changed) OCL=34770 CL=34775
2009-09-16rename bytes.Buffer.Data() to bytes.Buffer.Bytes()Rob Pike1-2/+2
R=rsc DELTA=152 (6 added, 0 deleted, 146 changed) OCL=34695 CL=34701
2009-09-15more "declared and not used".Russ Cox1-1/+1
the last round omitted := range and only checked 1 out of N vars in a multi-var := R=r OCL=34624 CL=34638
2009-09-14fix "declared and not used" errors in non-test code.Russ Cox1-1/+0
R=r DELTA=112 (6 added, 57 deleted, 49 changed) OCL=34610 CL=34610
2009-08-20naming cleanup.Russ Cox1-2/+2
gzip.GzipInflater -> gzip.Inflater gzip.NewGzipInflater -> gzip.NewInflater zlib.NewZlibInflater -> zlib.NewInflater io.ByteReader deleted in favor of bytes.Buffer io.NewByteReader -> bytes.NewBuffer R=r DELTA=52 (3 added, 0 deleted, 49 changed) OCL=33589 CL=33592
2009-08-12convert non-low-level non-google pkg codeRuss Cox1-1/+0
to whole-package compilation. R=r OCL=33070 CL=33101
2009-07-07base64_test: use new reflect interface (CL 31107)Russ Cox1-3/+3
R=austin DELTA=3 (0 added, 0 deleted, 3 changed) OCL=31112 CL=31282
2009-06-29io.StringBytes -> strings.BytesRuss Cox1-11/+12
io.ByteBuffer -> bytes.Buffer left io.ByteBuffer stub around for now, for protocol compiler. R=r OCL=30861 CL=30872
2009-06-24base64: cut out some middle layersRuss Cox1-0/+34
R=austin DELTA=352 (67 added, 196 deleted, 89 changed) OCL=30694 CL=30713
2009-06-24Base64 encoder/decoder package.Austin Clements1-0/+169
R=rsc APPROVED=rsc DELTA=722 (722 added, 0 deleted, 0 changed) OCL=30660 CL=30691