Age | Commit message (Expand) | Author | Files | Lines |
2010-05-07 | gob: add an internal commentary example showing how the | Rob Pike | 1 | -0/+249 |
2010-05-05 | gob: add support for maps. | Rob Pike | 1 | -5/+50 |
2010-03-24 | delete all uses of panicln by rewriting them using panic or, | Rob Pike | 1 | -1/+1 |
2010-03-02 | gofmt: experiment: align values in map composites where possible | Robert Griesemer | 1 | -13/+13 |
2009-12-29 | fix dumb bug: must write out default values inside arrays and slices | Rob Pike | 1 | -19/+25 |
2009-12-15 | 1) Change default gofmt default settings for | Robert Griesemer | 1 | -149/+149 |
2009-12-01 | gob: fix build | Russ Cox | 1 | -1/+1 |
2009-11-09 | - replaced gofmt expression formatting algorithm with | Robert Griesemer | 1 | -8/+8 |
2009-11-09 | remove semis after statements in one-statement statement lists | Robert Griesemer | 1 | -18/+18 |
2009-10-08 | more lgtm files from gofmt | Russ Cox | 1 | -3/+3 |
2009-10-06 | apply gofmt to go, gob, hash, http, image, io, json, log | Russ Cox | 1 | -34/+34 |
2009-09-17 | unused imports | Russ Cox | 1 | -1/+0 |
2009-09-15 | more "declared and not used". | Russ Cox | 1 | -1/+1 |
2009-08-12 | delete forward type declarations | Russ Cox | 1 | -1/+0 |
2009-08-12 | convert gob to whole-package compilation. | Russ Cox | 1 | -3/+0 |
2009-07-29 | handle unsupported types safely. | Rob Pike | 1 | -16/+34 |
2009-07-28 | change the encoding of uints to simplify overflow checking and to make them | Rob Pike | 1 | -11/+19 |
2009-07-28 | - clean up code creating keys for type maps | Rob Pike | 1 | -16/+16 |
2009-07-16 | clean up the code, flow errors out to decoder. | Rob Pike | 1 | -2/+2 |
2009-07-15 | make the low-level encoder and decoder private and have them access byte.Buff... | Rob Pike | 1 | -68/+68 |
2009-07-09 | store ids rather than Types in the structs so they can be encoded. | Rob Pike | 1 | -16/+26 |
2009-07-07 | bug fix: encOpFor etc. need to indirect | Rob Pike | 1 | -10/+10 |
2009-07-07 | gob: use new reflect | Russ Cox | 1 | -79/+54 |
2009-07-02 | indirection on array elements. | Rob Pike | 1 | -12/+32 |
2009-07-02 | arrays, not slices, and only with non-pointer elements. | Rob Pike | 1 | -42/+62 |
2009-07-02 | encode and decode for nested structures. | Rob Pike | 1 | -28/+53 |
2009-07-02 | encoders and decoders for string, []uint8 | Rob Pike | 1 | -4/+40 |
2009-07-01 | move dereference code out of the ops and into the interpreter loops. | Rob Pike | 1 | -103/+29 |
2009-07-01 | Encode and decode engines for gobs. | Rob Pike | 1 | -14/+132 |
2009-06-30 | scalar decoders | Rob Pike | 1 | -42/+38 |
2009-06-30 | pass the state to the encoders and decoders so error handling can be centrali... | Rob Pike | 1 | -59/+71 |
2009-06-30 | encoders for booleans and numbers. | Rob Pike | 1 | -0/+245 |
2009-06-29 | integer encode/decode | Rob Pike | 1 | -0/+40 |