Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for timerDone (0.19 sec)

  1. pkg/apis/batch/validation/validation.go

    func validateTimeZone(timeZone *string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if timeZone == nil {
    		return allErrs
    	}
    
    	if len(*timeZone) == 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath, timeZone, "timeZone must be nil or non-empty string"))
    		return allErrs
    	}
    
    	for _, part := range strings.Split(*timeZone, "/") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    		tc := tc
    
    		t.Run(name, func(t *testing.T) {
    			cj := cronJob()
    			cj.Spec.ConcurrencyPolicy = tc.concurrencyPolicy
    			cj.Spec.Suspend = &tc.suspend
    			cj.Spec.Schedule = tc.schedule
    			cj.Spec.TimeZone = tc.timeZone
    			if tc.deadline != noDead {
    				cj.Spec.StartingDeadlineSeconds = &tc.deadline
    			}
    
    			var (
    				job *batchv1.Job
    				err error
    			)
    			js := []*batchv1.Job{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 63.4K bytes
    - Viewed (0)
  7. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

        ],
        "time_options": [
          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "MinIO Node Replication Dashboard",
      "uid": "gmTJnqnnk3",
      "version": 1,
      "weekStart": ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/replication/minio-replication-cluster.json

        ],
        "time_options": [
          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
        ]
      },
      "timezone": "",
      "title": "MinIO Cluster Replication Dashboard",
      "uid": "TgmJnnqnk3",
      "version": 1,
      "weekStart": ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		{Date(2020, 1, 1, 0, 0, 0, 0, FixedZone("", 24*60*60)), "Time.MarshalJSON: timezone hour outside of range [0,23]"},
    		{Date(2020, 1, 1, 0, 0, 0, 0, FixedZone("", 123*60*60)), "Time.MarshalJSON: timezone hour outside of range [0,23]"},
    	}
    
    	for _, tt := range tests {
    		want := tt.want
    		b, err := tt.time.MarshalJSON()
    		switch {
    		case b != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("developer", pom.getValue("developers[1]/organization"));
            assertEquals("https://devel.org", pom.getValue("developers[1]/organizationUrl"));
            assertEquals("-1", pom.getValue("developers[1]/timezone"));
            assertEquals("yes", pom.getValue("developers[1]/properties/developer"));
            assertEquals(1, ((List<?>) pom.getValue("developers[1]/roles")).size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
Back to top