Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,029 for statDep (0.12 sec)

  1. cmd/kubeadm/app/cmd/upgrade/plan.go

    	for _, state := range versionStates {
    		_, _ = printer.Fprintf(tabw,
    			"%s\t%s\t%s\t%s\n",
    			state.Group,
    			strOrDash(state.CurrentVersion),
    			strOrDash(state.PreferredVersion),
    			yesOrNo(state.ManualUpgradeRequired),
    		)
    	}
    
    	_ = tabw.Flush()
    	printer.printLineSeparator(w)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

      }
    
      static void awaitWaiting(Thread t) {
        while (true) {
          Thread.State state = t.getState();
          switch (state) {
            case RUNNABLE:
            case BLOCKED:
              Thread.yield();
              break;
            case WAITING:
              return;
            default:
              throw new AssertionError("unexpected state: " + state);
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 09 15:17:25 UTC 2018
    - 13.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * </p>
     *
     * <h1>The value content</h1>
     *
     * <p>Each provider guarantees that the content of the value is in some particular state when the provider is queried.
     * Currently there are only two states that the various provider implementations can guarantee:
     * </p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

      // Two vector to collect Non-empty operands and results states.
      std::vector<quant::QuantState *> mutable_states, immutable_states;
      for (int i = 0, e = op->getNumOperands(); i != e; ++i) {
        auto &state = states_manager_.GetOperandQuantState(op, i);
        if (state.immutable) {
          immutable_states.push_back(&state);
        } else if (!state.IsEmpty()) {
          mutable_states.push_back(&state);
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/runtime/debuglog.go

    		printunlock()
    		return
    	}
    	state := (*[1 << 20]readState)(state1)[:n]
    	{
    		l := all
    		for i := range state {
    			s := &state[i]
    			s.debugLogReader = l.w.r
    			s.first = true
    			s.lost = l.w.r.begin
    			s.nextTick = s.peek()
    			l = l.allLink
    		}
    	}
    
    	// Print records.
    	for {
    		// Find the next record.
    		var best struct {
    			tick uint64
    			i    int
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

        }
    
        public boolean isSelected() {
            return state == ComponentSelectionState.Selected;
        }
    
        public boolean isCandidateForConflictResolution() {
            return state.isCandidateForConflictResolution();
        }
    
        void evict() {
            state = ComponentSelectionState.Evicted;
        }
    
        void select() {
            state = ComponentSelectionState.Selected;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    In order to generate or update lock state, you specify the `--write-locks` command line argument in addition to the normal tasks that would trigger configurations to be resolved.
    This will cause the creation of lock state for each resolved configuration in that build execution.
    Note that if lock state existed previously, it is overwritten.
    
    NOTE: Gradle will not write lock state to disk if the build fails.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

                                                              get_next.getResult());
      SmallVector<Value, 4> reduce_fn_args;
    
      // Function arguments are state values, dataset values, and then passthrough
      // arguments.
      // First argument to body is the while loop condition and state values start
      // at index=1.
      for (int i = 1; i < state_size + 1; ++i) {
        reduce_fn_args.push_back(body_args[i]);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. pkg/kubelet/prober/prober_manager.go

    			continue
    		}
    		if !kubetypes.IsRestartableInitContainer(&initContainer) {
    			if c.State.Terminated != nil && c.State.Terminated.ExitCode == 0 {
    				podStatus.InitContainerStatuses[i].Ready = true
    			}
    			continue
    		}
    
    		if !started {
    			continue
    		}
    
    		var ready bool
    		if c.State.Running == nil {
    			ready = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    	envelopeService := newTestEnvelopeService()
    	state, err := testStateFunc(ctx, envelopeService, clock.RealClock{}, useSeed)()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// start with a broken state
    	stateErr := fmt.Errorf("some state error")
    
    	transformer := NewEnvelopeTransformer(envelopeService, testProviderName,
    		func() (State, error) { return state, stateErr }, testAPIServerID,
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
Back to top