Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 575 for job3 (0.05 sec)

  1. pkg/controller/job/job_controller_test.go

    				statusUpdates = append(statusUpdates, *job.Status.DeepCopy())
    				return job, tc.statusUpdateErr
    			}
    			job := tc.job.DeepCopy()
    			if job.Status.UncountedTerminatedPods == nil {
    				job.Status.UncountedTerminatedPods = &batch.UncountedTerminatedPods{}
    			}
    			jobCtx := &syncJobCtx{
    				job:                  job,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    			expected: []metav1.TableRow{
    				{
    					Cells: []interface{}{"job1", "Running", "1/2", "", "0s", "fake-job-container1,fake-job-container2", "fake-job-image1,fake-job-image2", "job-label=job-label-value"},
    				},
    			},
    		},
    		// Job with ten-year age.
    		{
    			job: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "job2",
    					CreationTimestamp: metav1.Time{Time: time.Now().AddDate(-10, 0, 0)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/job.yaml

    apiVersion: batch/v1
    kind: Job
    metadata:
      name: pi
    spec:
      template:
        metadata:
          name: pi
        spec:
          containers:
          - name: pi
            image: perl
            command: ["perl",  "-Mbignum=bpi", "-wle", "print bpi(2000)"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 261 bytes
    - Viewed (0)
  4. cmd/batch-job-common-types.go

    		return false
    	}
    	return true
    }
    
    // Validate checks if sf is a valid batch-job size filter
    func (sf BatchJobSizeFilter) Validate() error {
    	if sf.LowerBound > 0 && sf.UpperBound > 0 && sf.LowerBound >= sf.UpperBound {
    		return BatchJobYamlErr{
    			line: sf.line,
    			col:  sf.col,
    			msg:  "invalid batch-job size filter",
    		}
    	}
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/job.yaml.injected

              value: REDIRECT
            - name: ISTIO_META_WORKLOAD_NAME
              value: pi
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/batch/v1/namespaces/default/jobs/pi
            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            name: istio-proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1beta1/generated.proto

      // reason UnknownTimeZone.
      // More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones
      // +optional
      optional string timeZone = 8;
    
      // Optional deadline in seconds for starting the job if it misses scheduled
      // time for any reason.  Missed jobs executions will be counted as failed ones.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // reason UnknownTimeZone.
      // More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones
      // +optional
      optional string timeZone = 8;
    
      // Optional deadline in seconds for starting the job if it misses scheduled
      // time for any reason.  Missed jobs executions will be counted as failed ones.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				}
    			}
    			if len(jc.Jobs) != expectedCreates {
    				t.Errorf("%s: expected %d job started, actually %v", name, expectedCreates, len(jc.Jobs))
    			}
    			for i := range jc.Jobs {
    				job := &jc.Jobs[i]
    				controllerRef := metav1.GetControllerOf(job)
    				if controllerRef == nil {
    					t.Errorf("%s: expected job to have ControllerRef: %#v", name, job)
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	JobTrackingFinalizer = labelPrefix + "job-tracking"
    	// The Job labels will use batch.kubernetes.io as a prefix for all labels
    	// Historically the job controller uses unprefixed labels for job-name and controller-uid and
    	// Kubernetes continutes to recognize those unprefixed labels for consistency.
    	JobNameLabel = labelPrefix + "job-name"
    	// ControllerUid is used to programatically get pods corresponding to a Job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/GradleEnterprisePluginBackgroundJobExecutorsIntegrationTest.groovy

                    ${code}
                }, executors.userJobExecutor)
    
                // Block until the job completes to ensure it run at the configuration time.
                future.get()
            """
        }
    
        def "background job executor runs jobs submitted at configuration time"() {
            given:
            buildFile << """
                import ${CompletableFuture.name}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top