Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 398 for Succeeded (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_globals_to_ml_program.cc

                BlockArgument arg;
                if (traceUpwardsToArgument(operands[blockArg.getArgNumber()], seen,
                                           &arg)
                        .succeeded()) {
                  options.insert(arg);
                }
              }
            } else {
              op->emitOpError("Predecessor op doesn't implement BranchOpInterface");
              return failure();
            }
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                controller.transition(TestState.A, TestState.B, action)
            }
    
            then:
            1 * action.apply(_) >> { ExecutionResult r ->
                assert r.failures.empty
                ExecutionResult.succeeded()
            }
            0 * action._
            result.failures.empty
        }
    
        def "can transition to new state and take previous failure as input"() {
            def action = Mock(Function)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

        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)
  4. 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)
  5. 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)
  6. pkg/controller/storageversionmigrator/resourceversion.go

    	gvr := getGVRFromResource(toBeProcessedSVM)
    
    	if IsConditionTrue(toBeProcessedSVM, svmv1alpha1.MigrationSucceeded) || IsConditionTrue(toBeProcessedSVM, svmv1alpha1.MigrationFailed) {
    		logger.V(4).Info("Migration has already succeeded or failed previously, skipping", "svm", name)
    		return nil
    	}
    
    	if len(toBeProcessedSVM.Status.ResourceVersion) != 0 {
    		logger.V(4).Info("Resource version is already set", "svm", name)
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

        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: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ExecutionList.java

          if (executed) {
            return;
          }
          executed = true;
          list = runnables;
          runnables = null; // allow GC to free listeners even if this stays around for a while.
        }
        // If we succeeded then list holds all the runnables we to execute. The pairs in the stack are
        // in the opposite order from how they were added so we need to reverse the list to fulfill our
        // contract.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractReportGenerator.java

            } else if (failureCollector.getFlakyScenarioSmallRegressions() != 0) {
                messageTemplate = ", flaky scenario %s regressed slightly.";
            } else {
                messageTemplate = ", scenario %s succeeded.";
            }
            return String.format(messageTemplate, performanceExperiment.getDisplayName());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top