Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,550 for statDep (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                for (ChainState state : toProcess) {
                    // The set of transforms which could potentially produce a variant compatible with `requested`.
                    ImmutableFilteredList<TransformRegistration> candidates =
                        state.transforms.matching(transform -> matcher.isMatching(transform.getTo(), state.requested));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.proto

    // state of a system.
    message CarpStatus {
      // Current condition of the carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of carp.
      // More info: http://kubernetes.io/docs/user-guide/carp-states#carp-conditions
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/example/v1/types.go

    // state of a system.
    type PodStatus struct {
    	// Current condition of the pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
    	// +optional
    	Phase PodPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=PodPhase"`
    	// Current service state of pod.
    	// More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    The term _feature_ typically means an API or DSL method or property in this context, but it is not restricted to this definition.
    Command line arguments and modes of execution (e.g. the Build Daemon) are two examples of other features.
    
    [[sec:states]]
    == Feature States
    
    Features can be in one of four states:
    
    1. <<#sec:internal,Internal>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         * @param <S> type of the binary to return
         * @return a binary from the collection in a finalized state
         */
        <S> BinaryProvider<S> get(Class<S> type, Spec<? super S> spec);
    
        /**
         * Returns a {@link BinaryProvider} that contains the single binary with the given name. The binary will be in the finalized state. The provider can be used to apply configuration to the element before it is finalized.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/net/http/export_test.go

    			return false
    		}
    	}
    	return true
    }
    
    func (s *Server) ExportAllConnsByState() map[ConnState]int {
    	states := map[ConnState]int{}
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	for c := range s.activeConn {
    		st, _ := c.getState()
    		states[st] += 1
    	}
    	return states
    }
    
    func (r *Request) WithT(t *testing.T) *Request {
    	return r.WithContext(context.WithValue(r.Context(), tLogKey{}, t.Logf))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:11:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top