Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for thursday (0.08 sec)

  1. src/time/format_test.go

    	name, offset := time.Zone()
    	if test.hasTZ && offset != -28800 {
    		t.Errorf("%s: bad tz offset: %s %d not %d", test.name, name, offset, -28800)
    	}
    	if test.hasWD && time.Weekday() != Thursday {
    		t.Errorf("%s: bad weekday: %s not %s", test.name, time.Weekday(), Thursday)
    	}
    }
    
    func TestFormatAndParse(t *testing.T) {
    	const fmt = "Mon MST " + RFC3339 // all fields
    	f := func(sec int64) bool {
    		t1 := Unix(sec/2, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/declarations.input

    func _() {
    	type day struct { n int; short, long string }
    	var (
    		Sunday = day{ 0, "SUN", "Sunday" }
    		Monday = day{ 1, "MON", "Monday" }
    		Tuesday = day{ 2, "TUE", "Tuesday" }
    		Wednesday = day{ 3, "WED", "Wednesday" }
    		Thursday = day{ 4, "THU", "Thursday" }
    		Friday = day{ 5, "FRI", "Friday" }
    		Saturday = day{ 6, "SAT", "Saturday" }
    	)
    }
    
    
    // formatting of multi-line variable declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. src/go/printer/testdata/declarations.golden

    func _() {
    	type day struct {
    		n		int
    		short, long	string
    	}
    	var (
    		Sunday		= day{0, "SUN", "Sunday"}
    		Monday		= day{1, "MON", "Monday"}
    		Tuesday		= day{2, "TUE", "Tuesday"}
    		Wednesday	= day{3, "WED", "Wednesday"}
    		Thursday	= day{4, "THU", "Thursday"}
    		Friday		= day{5, "FRI", "Friday"}
    		Saturday	= day{6, "SAT", "Saturday"}
    	)
    }
    
    // formatting of multi-line variable declarations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  4. pkg/controller/cronjob/utils.go

    		mostRecentTime = t
    	}
    
    	// An object might miss several starts. For example, if
    	// controller gets wedged on friday at 5:01pm when everyone has
    	// gone home, and someone comes in on tuesday AM and discovers
    	// the problem and restarts the controller, then all the hourly
    	// jobs, more than 80 of them for one hourly cronJob, should
    	// all start running with no further intervention (if the cronJob
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top