Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ttlSecondsAfterFinished (0.38 sec)

  1. staging/src/k8s.io/api/batch/v1/generated.pb.go

    		copy(dAtA[i:], *m.CompletionMode)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.CompletionMode)))
    		i--
    		dAtA[i] = 0x4a
    	}
    	if m.TTLSecondsAfterFinished != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.TTLSecondsAfterFinished))
    		i--
    		dAtA[i] = 0x40
    	}
    	if m.BackoffLimit != nil {
    		i = encodeVarintGenerated(dAtA, i, uint64(*m.BackoffLimit))
    		i--
    		dAtA[i] = 0x38
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation_test.go

    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		"spec.ttlSecondsAfterFinished: must be greater than or equal to 0": {
    			job: batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:      "myjob",
    					Namespace: metav1.NamespaceDefault,
    					UID:       types.UID("1a2b3c"),
    				},
    				Spec: batch.JobSpec{
    					TTLSecondsAfterFinished: &negative,
    					Selector:                validGeneratedSelector,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  3. pkg/registry/batch/job/strategy_test.go

    							Labels: labelsWithNonBatch,
    						},
    						Spec: validPodSpec,
    					},
    					Completions:             ptr.To[int32](2),
    					Suspend:                 ptr.To(true),
    					TTLSecondsAfterFinished: ptr.To[int32](0),
    					CompletionMode:          completionModePtr(batch.IndexedCompletion),
    				},
    			},
    			wantJob: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Spec: batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
Back to top