1. 2adc4e8 all: use "reports whether" in place of "returns true if(f)" by Josh Bleecher Snyder · 10 years ago
  2. d1210ac time: correctly parse large input durations and avoid precision loss by Martin Möhrmann · 10 years ago
  3. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/time/format.go]
  4. 298c623 time: Fix missing colon when formatting time zone offsets with seconds by Joel Stemmer · 11 years ago
  5. d3fb02b time: make it clearer that the reference time is the reference time. by Rob Pike · 11 years ago
  6. cf35f5b time: minor typo in doc by Mathieu Lonjaret · 11 years ago
  7. 70f6c43 time: MeST is a time zone name by Rui Ueyama · 11 years ago
  8. fb91559 all: fix typos by Rui Ueyama · 11 years ago
  9. 4ca6e58 time: handle int64 overflow in ParseDuration. by Adam Langley · 11 years ago
  10. d220c99 time: fix ParseDuration overflow when given more than 9 digits on 32-bit arch by Shenghou Ma · 11 years ago
  11. 4c855f3 time: fix time zones yet again. by Rob Pike · 12 years ago
  12. a454d2f time: expand acceptance of time zones when parsing by Rob Pike · 12 years ago
  13. 727b2b6 time: handle GMT possibly with offset by Rob Pike · 12 years ago
  14. af8426e time: match month and day names only when not followed immediately by a lower-case letter by Rob Pike · 12 years ago
  15. aa38aea time: Allow Parse and Format to handle time zone offsets with seconds by Ulf Holm Nielsen · 12 years ago
  16. 0bc7e79 all: excise some warts found by vet -shadow by Rob Pike · 12 years ago
  17. 509a117 time: remove Time.FormatAppend by Brad Fitzpatrick · 12 years ago
  18. 0af302f time: add Time.FormatAppend by Brad Fitzpatrick · 12 years ago
  19. 237cee7 time: fix typo in comment by Christian Himpel · 12 years ago
  20. 14234c2 time: fix typo in comment by Rob Pike · 12 years ago
  21. c285789 time: improve the explanation of the working of Format and Parse by Rob Pike · 12 years ago
  22. 6b4cf2b3 time: fix error message from Parse by Russ Cox · 12 years ago
  23. 1d9f67d time: deal a bit better with time zones in Parse by Russ Cox · 12 years ago
  24. 657168f time: standard time doc fix and format example by Caleb Spare · 12 years ago
  25. e985d54 time: add note about Parse()'s choice of default year by Shenghou Ma · 12 years ago
  26. 2d3bdab time: fix panic with time.Parse(time.StampNano, ... ) by Dave Cheney · 12 years ago
  27. f2045aa time: accept numbers larger than 2^32 in ParseDuration. by David Symonds · 12 years ago
  28. dcc4638 time: accept .999 in Parse by Russ Cox · 13 years ago
  29. a76c8b2 time: make Format 2.7x faster by Russ Cox · 13 years ago
  30. c81705f time: parse fractional second with single digit by Robert Hencke · 13 years ago
  31. c9529e0 time: in Format give buffer an initial capacity by Bobby Powers · 13 years ago
  32. 7a33265 time.RFC822: make the string standard-compliant by Rob Pike · 13 years ago
  33. c10f508 all: remove various unused unexported functions and constants. by Rémy Oudompheng · 13 years ago
  34. d599acc time: use "2006-01-02 15:04:05.999999999 -0700 MST" as String format by Russ Cox · 13 years ago
  35. 1bfffb6 time: improve commentary about standard time and formatting/parsing by Rob Pike · 13 years ago
  36. 1d8250c time: clean up MarshalJSON, add RFC3339 method by Russ Cox · 13 years ago
  37. e5c1f38 pkg: Add & fix Copyright of "hand generated" files by Olivier Duperray · 13 years ago
  38. eaecf35 time: delete unused buffer.WriteByte method by Rob Pike · 13 years ago
  39. f298d0c time: add ParseDuration. by David Symonds · 13 years ago
  40. 473de60 time: update doc string for Error method Fixes #2512. by Rob Pike · 13 years ago
  41. efe3d35 time: new Time, Duration, ZoneInfo types by Russ Cox · 13 years ago
  42. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  43. a7e473b time: add RFC1123 with numeric timezone format by Scott Lawrence · 13 years ago
  44. 93b8438 time: make month/day name comparisons case insenstive by Paul Borman · 13 years ago
  45. 7d43b84 time: make Weekday a method. by Rob Pike · 14 years ago
  46. c9cf04a time: allow the input to have fractional seconds even if by Rob Pike · 14 years ago
  47. 3c10403 time: parse and format fractional seconds by Rob Pike · 14 years ago
  48. 95117d3 time: typo in documentation by Robert Griesemer · 14 years ago
  49. de36d19 time: zero-pad two-digit years. Fixes #2024 by Rob Pike · 14 years ago
  50. 712fb6d os.Error API: don't export os.ErrorString, use os.NewError consistently by Robert Griesemer · 14 years ago
  51. 5a35757 time: midnight is 12AM. by Rob Pike · 14 years ago
  52. 406d738 time: fix Format bug: noon is 12PM, not 0PM. Fixes #1882. by Rob Pike · 14 years ago
  53. 2e8be52 time: explain the formats a little better. by Rob Pike · 14 years ago
  54. be443ee 5g: register allocation bugs by Russ Cox · 15 years ago
  55. 0aa2317 arm: work around reg allocator bug in 5g, in two parts. by Rob Pike · 15 years ago
  56. f699811 time: do not crash in String on nil Time by Russ Cox · 15 years ago
  57. 2100f57 time.Parse should not require minutes for time zone Fixes #1026. by Jan H. Hosang · 15 years ago
  58. 02786d2 time: fix parsing of minutes in time zones. by Adam Langley · 15 years ago
  59. 9d5f80b time: implement timezones for windows by Alex Brainman · 15 years ago
  60. 6c124cb time: remove incorrect time.ISO8601 and add time.RFC3339 by Micah Stetson · 15 years ago
  61. 78547ca time: do not segment time strings by character class. by Russ Cox · 15 years ago
  62. 2bcca5d Add RFC822 formats as named constants. by Rob Pike · 15 years ago
  63. 10a5eb0 fix +0000 time zones. by Rob Pike · 15 years ago
  64. d9283b2 clean up handling of numeric time zones allow formatting of ruby-style times. by Rob Pike · 15 years ago
  65. 63d6392 don't worry about the number of spaces when parsing. by Rob Pike · 15 years ago
  66. 448aa49 Add a parser to the time package, the inverse of time.Format by Rob Pike · 15 years ago
  67. 676f9df make Format about twice as fast by removing allocations, using a bytes.Buffer by Rob Pike · 15 years ago
  68. e05b381 New time formatter, time.Format(formatString) by Rob Pike · 15 years ago