Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 631 for Succeeded (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/test/framework/components/authz/kube.go

    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy authz server ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy authz server in %v ===", time.Since(start))
    		}
    	}()
    
    	// Create the namespace, if unspecified.
    	if ns == nil {
    		ns, err = namespace.New(ctx, namespace.Config{
    			Prefix: "authz",
    			Inject: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. operator/pkg/util/progress/progress.go

    // a new line created so the information is not lost. To do this, we spin up a new bar with the remaining components
    // on a new line, and create a new bar. For example, this becomes "x succeeded", "waiting for y, z".
    func (p *Log) reportProgress(component string) func() {
    	return func() {
    		cmpName := name.ComponentName(component)
    		cliName := name.UserFacingComponentName(cmpName)
    		p.mu.Lock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K 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. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

      pipeline_opts.cost_threshold = 1024;
      pipeline_opts.merge_inter_dependent_streams = true;
    
      mlir::PassManager pm(module->getContext());
      pm.addPass(CreateTfToTfrtConversionPass(pipeline_opts));
    
      CHECK(mlir::succeeded(pm.run(*module)))
          << "Failed to lower module to TFRT: " << os.str();
    
      // Convert module to BEF.
      bef_buffer_ =
          tfrt::ConvertMLIRToBEF(*module, /*disable_optional_sections=*/false);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/syscall/exec_plan9.go

    	if r1 != 0 {
    		if int32(r1) == -1 {
    			return 0, NewError(errstr())
    		}
    		// parent; return PID
    		return int(r1), nil
    	}
    
    	// Fork succeeded, now in child.
    
    	// Close fds we don't need.
    	r1, _, _ = RawSyscall(SYS_OPEN, uintptr(unsafe.Pointer(dupdev)), uintptr(O_RDONLY), 0)
    	dupdevfd = int(r1)
    	if dupdevfd == -1 {
    		goto childerror
    	}
    dirloop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top