Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 1a2b3c (0.08 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    func cronJob() batchv1.CronJob {
    	return batchv1.CronJob{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              "mycronjob",
    			Namespace:         "snazzycats",
    			UID:               types.UID("1a2b3c"),
    			CreationTimestamp: metav1.Time{Time: justBeforeTheHour()},
    		},
    		Spec: batchv1.CronJobSpec{
    			Schedule:          "* * * * ?",
    			ConcurrencyPolicy: "Allow",
    			JobTemplate: batchv1.JobTemplateSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    		newi       int
    	}{
    		{"a123", 0, 4, 0, false, 0},
    		{"1234", 1, 1, 0, false, 1},
    		{"123a", 0, 4, 123, true, 3},
    		{"12a3", 0, 4, 12, true, 2},
    		{"1234", 0, 4, 1234, true, 4},
    		{"1a234", 1, 3, 0, false, 1},
    	}
    	for _, tt := range testCases {
    		num, isnum, newi := Parsenum(tt.s, tt.start, tt.end)
    		if num != tt.num || isnum != tt.isnum || newi != tt.newi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    }
    
    var unescapeTests = []EscapeTest{
    	{
    		"",
    		"",
    		nil,
    	},
    	{
    		"abc",
    		"abc",
    		nil,
    	},
    	{
    		"1%41",
    		"1A",
    		nil,
    	},
    	{
    		"1%41%42%43",
    		"1ABC",
    		nil,
    	},
    	{
    		"%4a",
    		"J",
    		nil,
    	},
    	{
    		"%6F",
    		"o",
    		nil,
    	},
    	{
    		"%", // not enough characters after %
    		"",
    		EscapeError("%"),
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top