summaryrefslogtreecommitdiff
path: root/src/time
Commit message (Expand)AuthorAgeFilesLines
* time: document hhmmss formatscuiweixie2022-04-272-6/+21
* time: fix quickcheck test to avoid wraparoundsRuss Cox2022-04-261-0/+11
* all: gofmt main repoRuss Cox2022-04-114-13/+25
* all: separate doc comment from //go: directivesRuss Cox2022-04-052-0/+2
* all: replace `` and '' with “ (U+201C) and ” (U+201D) in doc commentsRuss Cox2022-04-051-1/+1
* all: remove trailing blank doc comment linesRuss Cox2022-04-012-3/+0
* all: fix various doc comment formatting nitsRuss Cox2022-04-011-8/+8
* all: use new "unix" build tag where appropriateIan Lance Taylor2022-03-293-3/+3
* time: add Duration.AbsCarl Johnson2022-03-272-0/+37
* internal/testenv: add GOROOT and use it to fix tests broken with -trimpathBryan C. Mills2022-03-181-1/+2
* time: fix zoneinfo.zip locating logic when built with -trimpathBryan C. Mills2022-03-1817-62/+98
* time: document that Parse truncates to nanosecond precisionIan Lance Taylor2022-02-151-0/+1
* time: skip TestTimerModifiedEarlier on plan9/armBryan C. Mills2022-01-061-0/+5
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-133-7/+7
* lib/time, time/tzdata: update to 2021eIan Lance Taylor2021-11-111-6860/+6887
* time: fix looking for zone offset when date is close to a zone transitionzhouguangyuan2021-11-052-7/+49
* time: add some examplesjiahua wang2021-11-051-0/+50
* time: make Ticker.Reset(0) paniczhouguangyuan2021-11-052-1/+16
* all: go fix -fix=buildtag std cmd (except for bootstrap deps, vendor)Russ Cox2021-10-289-9/+0
* time: allow minimum int64 in ParseDurationMeng Zhuo2021-10-082-34/+49
* time: fallback to slower TestTicker test after one failureDamien Neil2021-10-061-6/+17
* time: truncate fractional seconds longer than 9 digitsAlexander Yastrebov2021-10-062-3/+47
* time: add doc comment about tzdata packageLeigh McCulloch2021-09-301-6/+7
* time: re-add space-padded day of year to docsRiley Avron2021-09-171-1/+1
* time: support fractional timezone minutes in MarshalBinaryHowJMay2021-09-172-7/+55
* runtime: in adjustTimers back up as far as necessaryIan Lance Taylor2021-09-151-0/+67
* all: remove some unused codeAlexander Melentyev2021-09-141-1/+0
* time: reference -tags=timetzdata in testing panicJosh Bleecher Snyder2021-09-101-1/+1
* time: propagate "," separator for fractional seconds into Formatkorzhao2021-09-092-11/+59
* time/format: avoid growslice in time.String()/time.GoString()korzhao2021-08-251-2/+3
* time: update current time commentastraw992021-08-162-8/+4
* time/tzdata: update links in commentIan Lance Taylor2021-08-152-4/+4
* time: fix docs for new comma layoutsRuss Cox2021-08-121-3/+3
* runtime: don't clear timerModifiedEarliest if adjustTimers is 0Ian Lance Taylor2021-07-221-0/+34
* time: correct typo in documentation for UnixMicrohelloPiers2021-07-191-1/+1
* time: handle invalid UTF-8 byte sequences in quote to prevent panicAndy Pan2021-06-242-3/+20
* time: fix receiver for Time.IsDST methodRuss Cox2021-06-171-1/+1
* time: rewrite the documentation for layout stringsRob Pike2021-05-181-78/+85
* time: make time.Time print a valid Go string with %#vKevin Burke2021-05-022-7/+108
* time: increase slop for TestTickerIan Lance Taylor2021-04-271-2/+7
* time: add missing "os" import to zoneinfo_test.goDamien Neil2021-04-151-0/+1
* time: replace os.Setenv with T.SetenvManlio Perillo2021-04-141-5/+2
* time: move slim test tzdata to testdata directoryMartin Sucha2021-04-145-7/+13
* time: properly quote strings containing quotes and backslashesAhmet Aktürk2021-04-063-1/+34
* time: use offset and isDST when caching zone from extend stringMartin Sucha2021-04-052-18/+40
* time: add Time.Unix{Milli,Micro} and to-Time helpers UnixMicro, UnixMilliConrad Irwin2021-03-272-0/+68
* time: check int64 overflow in Time.addSecAndy Pan2021-03-174-3/+38
* time: support "," as separator for fractional secondsEmmanuel T Odeke2021-03-162-15/+33
* time: add Time.IsDST() to check if its Location is in Daylight Savings TimeJoel Courtney2021-03-156-34/+86
* runtime, time: disable preemption in addtimerMichael Pratt2021-03-101-0/+16