Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for __2 (0.01 sec)

  1. src/time/export_test.go

    	stdWeekDay:                      "Mon",
    	stdDay:                          "2",
    	stdUnderDay:                     "_2",
    	stdZeroDay:                      "02",
    	stdUnderYearDay:                 "__2",
    	stdZeroYearDay:                  "002",
    	stdHour:                         "15",
    	stdHour12:                       "3",
    	stdZeroHour12:                   "03",
    	stdMinute:                       "4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 19:23:32 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. src/time/format.go

    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    // Within the format string, the underscores in "_2" and "__2" represent spaces
    // that may be replaced by digits if the following number has multiple digits,
    // for compatibility with fixed-width Unix time formats. A leading zero represents
    // a zero-padded value.
    //
    // The formats __2 and 002 are space-padded and zero-padded
    // three-character day of year; there is no unpadded day of year format.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/time/format_test.go

    	{"DateOnly", DateOnly, "2009-02-04"},
    	{"TimeOnly", TimeOnly, "21:00:57"},
    	{"YearDay", "Jan  2 002 __2 2", "Feb  4 035  35 4"},
    	{"Year", "2006 6 06 _6 __6 ___6", "2009 6 09 _6 __6 ___6"},
    	{"Month", "Jan January 1 01 _1", "Feb February 2 02 _2"},
    	{"DayOfMonth", "2 02 _2 __2", "4 04  4  35"},
    	{"DayOfWeek", "Mon Monday", "Wed Wednesday"},
    	{"Hour", "15 3 03 _3", "21 9 09 _9"},
    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