Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 398 for Succeeded (0.22 sec)

  1. pkg/printers/internalversion/printers_test.go

    						{Name: "restartable-init-2", RestartPolicy: &containerRestartPolicyAlways},
    					}, Containers: make([]api.Container, 1)},
    				Status: api.PodStatus{
    					Phase: "Succeeded",
    					InitContainerStatuses: []api.ContainerStatus{
    						{
    							Name:                 "restartable-init-1",
    							Ready:                false,
    							RestartCount:         3,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/registry/batch/job/strategy.go

    		return batchvalidation.JobStatusValidationOptions{
    			// We allow to decrease the counter for succeeded pods for jobs which
    			// have equal parallelism and completions, as they can be scaled-down.
    			RejectDecreasingSucceededCounter:             !isIndexed || !ptr.Equal(newJob.Spec.Completions, newJob.Spec.Parallelism),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/kubelet_pods_test.go

    						succeededState("containerA"),
    						succeededState("containerB"),
    					},
    				},
    			},
    			true,
    			v1.PodSucceeded,
    			"all regular containers succeeded and restartable init container succeeded with restart always, but the pod is terminal",
    		},
    	}
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.SidecarContainers, true)
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. 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)
  6. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                        } catch (ChecksumFailedException e) {
                            // if we catch a ChecksumFailedException, it means the transfer/read succeeded, but the
                            // checksum doesn't match. This could be a problem with the server (ibiblio HTTP-200 error
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        rhs_reshape_segids.at(std::get<0>(i)) = num_rhs_reshape_segids;
      }
      ++num_rhs_reshape_segids;
    
      // If LHS requires reshapes.
      if (lhs_rank != num_lhs_reshape_segids) {
        if (succeeded(VerifyShapeOfReshapeOp(lhs_shape))) {
          *lhs = createReshapeOp(*lhs, lhs_shape, lhs_type.getElementType(), loc,
                                 rewriter);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. src/go/types/assignments.go

    	r = len(rhs)
    	if l == r {
    		for i, lhs := range lhs {
    			check.initVar(lhs, rhs[i], context)
    		}
    		// Only record comma-ok expression if both initializations succeeded
    		// (go.dev/issue/59371).
    		if commaOk && rhs[0].mode != invalid && rhs[1].mode != invalid {
    			check.recordCommaOkTypes(orig_rhs[0], rhs)
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

      ASSERT_TRUE(module_op);
    
      FailureOr<TF::XlaCallModuleOp> xla_call_module_op =
          FindFirstOpFromMainFunc<TF::XlaCallModuleOp>(*module_op);
      ASSERT_TRUE(succeeded(xla_call_module_op));
    
      // Test that `GetQuantizationMethodOrDefault` returns a valid `Method`
      // corresponding to `"no_quantization {}"`.
      const Method method = GetQuantizationMethodOrDefault(*xla_call_module_op);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/istio.go

    			scopes.Framework.Infof("=== FAILED: Deploy Istio in %v [Suite=%s] ===", time.Since(t0), ctx.Settings().TestID)
    			return err
    		}
    
    		if i != nil {
    			*i = ins
    		}
    		scopes.Framework.Infof("=== SUCCEEDED: Deploy Istio in %v [Suite=%s]===", time.Since(t0), ctx.Settings().TestID)
    		return nil
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top