Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 398 for Succeeded (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 35K bytes
    - Viewed (0)
  6. android/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)
  7. android/guava/src/com/google/common/util/concurrent/AbstractCatchingFuture.java

          throwable = t;
        }
    
        if (throwable == null) {
          /*
           * The cast is safe: There was no exception, so the assignment from getDone must have
           * succeeded.
           */
          set(uncheckedCastNullableTToT(sourceResult));
          return;
        }
    
        if (!isInstanceOfThrowableClass(throwable, localExceptionType)) {
          setFuture(localInputFuture);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AggregateFutureState.java

           * other callers have added to it.
           *
           * This read is guaranteed to get us the right value because we only set this once (here).
           *
           * requireNonNull is safe because either our compareAndSet succeeded or it failed because
           * another thread did it for us.
           */
          seenExceptionsLocal = requireNonNull(seenExceptions);
        }
        return seenExceptionsLocal;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/apply.go

    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    	return len(r.processedObjects) > 0 || r.deployed > 0
    }
    
    // ApplyManifest applies the manifest to create or update resources. It returns the processed (created or updated)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

      llvm::SmallVector<StringAttr, 4> attrs;
      if (succeeded(parser.parseOptionalLess())) {
        bool l_square_parsed = false;
        if (succeeded(parser.parseOptionalLSquare())) {
          l_square_parsed = true;
        }
    
        do {
          StringRef attr;
          if (failed(parser.parseKeyword(&attr))) return {};
          attrs.push_back(StringAttr::get(ctx, attr));
        } while (succeeded(parser.parseOptionalComma()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
Back to top