Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for maxFailedIndexes (0.15 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/batch/v1/jobspec.go

    	BackoffLimitPerIndex    *int32                                    `json:"backoffLimitPerIndex,omitempty"`
    	MaxFailedIndexes        *int32                                    `json:"maxFailedIndexes,omitempty"`
    	Selector                *metav1.LabelSelectorApplyConfiguration   `json:"selector,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)
  2. pkg/apis/batch/fuzzer/fuzzer.go

    			j.ManualSelector = pointer.Bool(c.RandBool())
    			mode := batch.NonIndexedCompletion
    			if c.RandBool() {
    				mode = batch.IndexedCompletion
    				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
    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