Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for justAfterTheHourInZone (0.32 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    	return T1
    }
    
    func justAfterTheHour() *time.Time {
    	T1, err := time.Parse(time.RFC3339, "2016-05-19T10:01:00Z")
    	if err != nil {
    		panic("test setup error")
    	}
    	return &T1
    }
    
    func justAfterTheHourInZone(tz string) time.Time {
    	location, err := time.LoadLocation(tz)
    	if err != nil {
    		panic("tz error: " + err.Error())
    	}
    
    	T1, err := time.ParseInLocation(time.RFC3339, "2016-05-19T10:01:00Z", location)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
Back to top