Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Succeeded (0.16 sec)

  1. pkg/controller/job/job_controller.go

    	uncountedStatus := status.UncountedTerminatedPods
    	newUncounted := filterInUncountedUIDs(uncountedStatus.Succeeded, uidsWithFinalizer)
    	if len(newUncounted) != len(uncountedStatus.Succeeded) {
    		updated = true
    		status.Succeeded += int32(len(uncountedStatus.Succeeded) - len(newUncounted))
    		uncountedStatus.Succeeded = newUncounted
    	}
    	newUncounted = filterInUncountedUIDs(uncountedStatus.Failed, uidsWithFinalizer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  2. pkg/apis/batch/validation/validation.go

    		}
    	}
    	if opts.RejectDecreasingSucceededCounter {
    		if job.Status.Succeeded < oldJob.Status.Succeeded {
    			allErrs = append(allErrs, field.Invalid(statusFld.Child("succeeded"), job.Status.Succeeded, "cannot decrease the succeeded counter"))
    		}
    	}
    	if opts.RejectMutatingCompletionTime {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			// but finalizeDelete returns a metav1.Status, so return
    			// the object in the request instead.
    			return obj, false, err
    		}
    		return nil, false, storeerr.InterpretDeleteError(err, e.qualifiedResourceFromContext(ctx), name)
    	}
    	_, err := e.finalizeDelete(ctx, out, true, options)
    	// clients are expecting an updated object if a PUT succeeded, but
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.Job.json

        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 54.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
          "failed": [
            "failedValue"
          ]
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
  7. src/os/os_test.go

    		t.Error("fs.ReadDir of nonexistent directory succeeded")
    	}
    
    	// Test that the error message does not contain a backslash,
    	// and does not contain the DirFS argument.
    	const nonesuch = "dir/nonesuch"
    	_, err := fsys.Open(nonesuch)
    	if err == nil {
    		t.Error("fs.Open of nonexistent file succeeded")
    	} else {
    		if !strings.Contains(err.Error(), nonesuch) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        if (auto broadcast_in_dim_op = TryCast<stablehlo::BroadcastInDimOp>(
                subtract_op_second_operand.getDefiningOp(),
                /*name=*/"broadcast_in_dim_for_subtract_op_operand");
            succeeded(broadcast_in_dim_op)) {
          subtract_op_second_operand = broadcast_in_dim_op->getOperand();
        }
    
        auto input_zp_filter_prod_convert_op = TryCast<stablehlo::ConvertOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	if _, err := X509KeyPair([]byte(rsaCertPEM), []byte(ecdsaKeyPEM)); err == nil {
    		t.Error("Load of RSA certificate succeeded with ECDSA private key")
    	}
    	if _, err := X509KeyPair([]byte(ecdsaCertPEM), []byte(rsaKeyPEM)); err == nil {
    		t.Error("Load of ECDSA certificate succeeded with RSA private key")
    	}
    }
    
    func newLocalListener(t testing.TB) net.Listener {
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		"kill the pod if all main containers succeeded if pod's RestartPolicy == Never": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyNever },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				// all main containers succeeded
    				for i := 1; i <= 3; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top