Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for completion_mode (0.14 sec)

  1. pkg/controller/job/metrics/metrics.go

    			StabilityLevel: metrics.STABLE,
    			Buckets:        metrics.ExponentialBuckets(0.004, 2, 15),
    		},
    		[]string{"completion_mode", "result", "action"},
    	)
    	// JobSyncNum tracks the number of Job syncs. Possible label values:
    	//   completion_mode: Indexed, NonIndexed
    	//   result:          success, error
    	//   action:          reconciling, tracking, pods_created, pods_deleted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    	TTLSecondsAfterFinished *int32                                    `json:"ttlSecondsAfterFinished,omitempty"`
    	CompletionMode          *batchv1.CompletionMode                   `json:"completionMode,omitempty"`
    	Suspend                 *bool                                     `json:"suspend,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. pkg/apis/batch/fuzzer/fuzzer.go

    				j.BackoffLimitPerIndex = pointer.Int32(c.Rand.Int31())
    				j.MaxFailedIndexes = pointer.Int32(c.Rand.Int31())
    			}
    			if c.RandBool() {
    				j.BackoffLimit = pointer.Int32(math.MaxInt32)
    			}
    			j.CompletionMode = &mode
    			// We're fuzzing the internal JobSpec type, not the v1 type, so we don't
    			// need to fuzz the nil value.
    			j.Suspend = pointer.Bool(c.RandBool())
    			podReplacementPolicy := batch.TerminatingOrFailed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 17:25:15 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top