Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 3pm (0.01 sec)

  1. src/time/example_test.go

    	do("Basic short date", "2006/01/02", "2015/02/25")
    
    	// The hour of the reference time is 15, or 3PM. The layout can express
    	// it either way, and since our value is the morning we should see it as
    	// an AM time. We show both in one format string. Lower case too.
    	do("AM/PM", "3PM==3pm==15h", "11AM==11am==11h")
    
    	// When parsing, if the seconds value is followed by a decimal point
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. src/time/format_test.go

    	{"RFC3339", RFC3339, "2009-02-04T21:00:57-08:00"},
    	{"RFC3339Nano", RFC3339Nano, "2009-02-04T21:00:57.0123456-08:00"},
    	{"Kitchen", Kitchen, "9:00PM"},
    	{"am/pm", "3pm", "9pm"},
    	{"AM/PM", "3PM", "9PM"},
    	{"two-digit year", "06 01 02", "09 02 04"},
    	// Three-letter months and days must not be followed by lower-case letter.
    	{"Janet", "Hi Janet, the Month is January", "Hi Janet, the Month is February"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top