aboutsummaryrefslogtreecommitdiff
path: root/src/time/format.go
AgeCommit message (Expand)Author
2025-09-19time: improve ParseDuration performance for invalid inputapocelipes
2025-03-14time: optimize quote using byte(c) for ASCII1911860538
2024-11-05time: add examples for Since, Until, Abs and fix some commentscuishuang
2024-09-10time: don't check non-nil err twice in parseTobias Klauser
2024-09-03all: omit unnecessary 0 in slice expressionnlwkobe30
2024-07-31time: optimize time <-> date conversionsRuss Cox
2024-07-02time: fix time zone parsing when format includes time zone secondsDarin Krauss
2024-06-11time: add to format documentation about dangers of using RFC1123{,Z} for parsingDana Burkart
2024-05-23all: document legacy //go:linkname for modules with ≥200 dependentsRuss Cox
2024-05-23time: check for time zone offset overflowIan Lance Taylor
2024-05-05time: use stringslite.Cloneqiulaidongfeng
2024-04-04time: add available godoc linkcui fliter
2023-02-16src: rename unexported errors by adding prefix errOleksandr Redko
2022-11-18all: add missing periods in commentscui fliter
2022-11-17time: avoid creating a parse error from the next chunk of the valueZeke Lu
2022-10-24time: optimize appendInt and appendNanosJoe Tsai
2022-10-20time: implement strict RFC 3339 during marshal and unmarshalJoe Tsai
2022-09-20time: optimize Parse for []byte argumentsJoe Tsai
2022-09-15time: move RFC 3339 optimizations to separate fileJoe Tsai
2022-09-13time: optimize Parse for RFC3339 and RFC3339NanoJoe Tsai
2022-08-29time: add fuzz test for Time.appendFormatRFC3339Joe Tsai
2022-08-23all: append(bytes, str...) works out of the boxDaniel Martí
2022-08-23time: fix Parse for time zonesJoe Tsai
2022-08-23time: fix Parse for empty secondsJoe Tsai
2022-08-23time: fix Parse to ignore extra sub-nanosecond digitsJoe Tsai
2022-08-17time: optimize GoStringAmarjeet Anand
2022-08-11time: optimize Format for RFC3339 and RFC3339NanoAmarjeet Anand
2022-08-09time: add DateTime, DateOnly, and TimeOnlyJoe Tsai
2022-07-25time: clarify documentation for allowed formats and add tests to prove themMarcus Watkins
2022-04-27time: document hhmmss formatscuiweixie
2022-04-11all: gofmt main repoRuss Cox
2022-04-01all: remove trailing blank doc comment linesRuss Cox
2022-02-15time: document that Parse truncates to nanosecond precisionIan Lance Taylor
2021-10-08time: allow minimum int64 in ParseDurationMeng Zhuo
2021-10-06time: truncate fractional seconds longer than 9 digitsAlexander Yastrebov
2021-09-17time: re-add space-padded day of year to docsRiley Avron
2021-09-09time: propagate "," separator for fractional seconds into Formatkorzhao
2021-08-25time/format: avoid growslice in time.String()/time.GoString()korzhao
2021-08-12time: fix docs for new comma layoutsRuss Cox
2021-06-24time: handle invalid UTF-8 byte sequences in quote to prevent panicAndy Pan
2021-05-18time: rewrite the documentation for layout stringsRob Pike
2021-05-02time: make time.Time print a valid Go string with %#vKevin Burke
2021-04-06time: properly quote strings containing quotes and backslashesAhmet Aktürk
2021-03-16time: support "," as separator for fractional secondsEmmanuel T Odeke
2021-03-15time: add Time.IsDST() to check if its Location is in Daylight Savings TimeJoel Courtney
2020-06-02time: note that formats may parse invalid stringsDavid Golden
2020-04-14time: quote original value in errors returned by ParseDurationObeyda Djeffal
2020-02-23time: don't get confused about day 31 when parsing 002Ian Lance Taylor
2020-01-23time: document how Parse handles two-digit yearsKirill Tatchihin
2019-04-26time: fix misleading error with the leading zero formatLE Manh Cuong