Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for job3 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controller/job/metrics/metrics.go

    			Subsystem:      JobControllerSubsystem,
    			Name:           "job_syncs_total",
    			Help:           "The number of job syncs",
    			StabilityLevel: metrics.STABLE,
    		},
    		[]string{"completion_mode", "result", "action"},
    	)
    	// JobFinishedNum tracks the number of Jobs that finish. Empty reason label
    	// is used to count successful jobs.
    	// Possible label values:
    	//   completion_mode: Indexed, NonIndexed
    	//   result:          failed, succeeded
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// configuration, the controller will stop creating new new Jobs and will create a system event with the
    	// reason UnknownTimeZone.
    	// More information can be found in https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#time-zones
    	// +optional
    	TimeZone *string `json:"timeZone,omitempty" protobuf:"bytes,8,opt,name=timeZone"`
    
    	// Optional deadline in seconds for starting the job if it misses scheduled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. src/regexp/backtrack.go

    func (re *Regexp) tryBacktrack(b *bitState, i input, pc uint32, pos int) bool {
    	longest := re.longest
    
    	b.push(re, pc, pos, false)
    	for len(b.jobs) > 0 {
    		l := len(b.jobs) - 1
    		// Pop job off the stack.
    		pc := b.jobs[l].pc
    		pos := b.jobs[l].pos
    		arg := b.jobs[l].arg
    		b.jobs = b.jobs[:l]
    
    		// Optimization: rather than push and pop,
    		// code that is going to Push and continue
    		// the loop simply updates ip, p, and arg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/storage/storage.go

    		CreateStrategy:      job.Strategy,
    		UpdateStrategy:      job.Strategy,
    		DeleteStrategy:      job.Strategy,
    		ResetFieldsStrategy: job.Strategy,
    
    		TableConvertor: printerstorage.TableConvertor{TableGenerator: printers.NewTableGenerator().With(printersinternal.AddHandlers)},
    	}
    	options := &generic.StoreOptions{RESTOptions: optsGetter, AttrFunc: job.GetAttrs}
    	if err := store.CompleteWithOptions(options); err != nil {
    		return nil, nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.1K bytes
    - Viewed (0)
Back to top