summaryrefslogtreecommitdiff
path: root/src/pkg/time/format.go
Commit message (Expand)AuthorAgeFilesLines
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-1248/+0
* time: Fix missing colon when formatting time zone offsets with secondsJoel Stemmer2014-08-081-1/+1
* time: make it clearer that the reference time is the reference time.Rob Pike2014-07-281-2/+3
* time: minor typo in docMathieu Lonjaret2014-07-241-1/+1
* time: MeST is a time zone nameRui Ueyama2014-04-301-2/+2
* all: fix typosRui Ueyama2014-04-161-1/+1
* time: handle int64 overflow in ParseDuration.Adam Langley2014-03-101-0/+3
* time: fix ParseDuration overflow when given more than 9 digits on 32-bit archShenghou Ma2013-10-221-2/+2
* time: fix time zones yet again.Rob Pike2013-08-161-12/+27
* time: expand acceptance of time zones when parsingRob Pike2013-08-151-14/+23
* time: handle GMT possibly with offsetRob Pike2013-08-151-19/+61
* time: match month and day names only when not followed immediately by a lower...Rob Pike2013-08-051-2/+16
* time: Allow Parse and Format to handle time zone offsets with secondsUlf Holm Nielsen2013-07-311-40/+88
* all: excise some warts found by vet -shadowRob Pike2013-06-201-1/+1
* time: remove Time.FormatAppendBrad Fitzpatrick2013-05-211-17/+10
* time: add Time.FormatAppendBrad Fitzpatrick2013-05-151-10/+17
* time: fix typo in commentChristian Himpel2013-04-221-1/+1
* time: fix typo in commentRob Pike2013-04-221-1/+1
* time: improve the explanation of the working of Format and ParseRob Pike2013-04-221-17/+24
* time: fix error message from ParseRuss Cox2013-02-041-2/+2
* time: deal a bit better with time zones in ParseRuss Cox2013-02-031-13/+40
* time: standard time doc fix and format exampleCaleb Spare2013-01-221-1/+1
* time: add note about Parse()'s choice of default yearShenghou Ma2013-01-191-1/+2
* time: fix panic with time.Parse(time.StampNano, ... )Dave Cheney2012-12-181-5/+10
* time: accept numbers larger than 2^32 in ParseDuration.David Symonds2012-10-151-5/+6
* time: accept .999 in ParseRuss Cox2012-06-041-1/+15
* time: make Format 2.7x fasterRuss Cox2012-06-031-187/+210
* time: parse fractional second with single digitRobert Hencke2012-04-161-1/+1
* time: in Format give buffer an initial capacityBobby Powers2012-04-071-1/+1
* time.RFC822: make the string standard-compliantRob Pike2012-04-041-2/+2
* all: remove various unused unexported functions and constants.R?my Oudompheng2012-02-281-8/+0
* time: use "2006-01-02 15:04:05.999999999 -0700 MST" as String formatRuss Cox2012-02-141-2/+2
* time: improve commentary about standard time and formatting/parsingRob Pike2012-02-101-15/+21
* time: clean up MarshalJSON, add RFC3339 methodRuss Cox2012-02-071-23/+54
* pkg: Add & fix Copyright of "hand generated" filesOlivier Duperray2012-01-191-0/+4
* time: delete unused buffer.WriteByte methodRob Pike2012-01-131-4/+0
* time: add ParseDuration.David Symonds2011-12-231-16/+130
* time: update doc string for Error methodRob Pike2011-12-011-1/+1
* time: new Time, Duration, ZoneInfo typesRuss Cox2011-11-301-149/+290
* src/pkg/[n-z]*: gofix -r error -force=errorRuss Cox2011-11-011-9/+9
* time: add RFC1123 with numeric timezone formatScott Lawrence2011-10-311-6/+6
* time: make month/day name comparisons case insenstivePaul Borman2011-10-041-1/+19
* time: make Weekday a method.Rob Pike2011-09-121-5/+7
* time: allow the input to have fractional seconds even ifRob Pike2011-08-101-25/+58
* time: parse and format fractional secondsRob Pike2011-08-081-1/+65
* time: typo in documentationRobert Griesemer2011-07-181-1/+1
* time: zero-pad two-digit years.Rob Pike2011-06-301-1/+1
* os.Error API: don't export os.ErrorString, use os.NewError consistentlyRobert Griesemer2011-06-221-1/+1
* time: midnight is 12AM.Rob Pike2011-05-281-13/+23
* time: fix Format bug: noon is 12PM, not 0PM.Rob Pike2011-05-271-2/+11