Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for failedIndexes (0.21 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
        "ready": 9
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  2. 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)
  3. pkg/apis/batch/validation/validation_test.go

    			completions:         20,
    			wantError:           errors.New("failedIndexes and completedIndexes overlap at index: 8"),
    		},
    		"overlapping intervals, corrupted completed interval skipped": {
    			completedIndexesStr: "0,2-4,x,6-8,12-19",
    			failedIndexesStr:    "1,8,9-10",
    			completions:         20,
    			wantError:           errors.New("failedIndexes and completedIndexes overlap at index: 8"),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "The number of pods which reached phase Failed. The value increases monotonically.",
                "format": "int32",
                "type": "integer"
              },
              "failedIndexes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"failedIndexes": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. api/openapi-spec/swagger.json

              "description": "The number of pods which reached phase Failed. The value increases monotonically.",
              "format": "int32",
              "type": "integer"
            },
            "failedIndexes": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top