Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for failedIndexes (0.33 sec)

  1. staging/src/k8s.io/api/batch/v1/types.go

    	//
    	// This field is beta-level. It can be used when the `JobBackoffLimitPerIndex`
    	// feature gate is enabled (enabled by default).
    	// +optional
    	FailedIndexes *string `json:"failedIndexes,omitempty" protobuf:"bytes,10,opt,name=failedIndexes"`
    
    	// uncountedTerminatedPods holds the UIDs of Pods that have terminated but
    	// the job controller hasn't yet accounted for in the status counters.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

      - lastProbeTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
        type: typeValue
      failed: 6
      failedIndexes: failedIndexesValue
      ready: 9
      startTime: "2002-01-01T01:01:01Z"
      succeeded: 5
      terminating: 11
      uncountedTerminatedPods:
        failed:
        - failedValue
        succeeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/generated.proto

      // For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
      // represented as "1,3-5,7".
      // +optional
      optional string completedIndexes = 7;
    
      // FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set.
      // The indexes are represented in the text format analogous as for the
      // `completedIndexes` field, ie. they are kept as decimal integers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"failedIndexes":           "FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set. The indexes are represented in the text format analogous as for the `completedIndexes` field, ie. they are kept as decimal integers separated by commas. The numbers are...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	// last element of the series, separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    	// represented as "1,3-5,7".
    	// +optional
    	CompletedIndexes string
    
    	// FailedIndexes holds the failed indexes when spec.backoffLimitPerIndex is set.
    	// The indexes are represented in the text format analogous as for the
    	// `completedIndexes` field, ie. they are kept as decimal integers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top