Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,853 for statDep (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

            GraphClosed(false);
    
            public final boolean mutable;
    
            State(boolean mutable) {
                this.mutable = mutable;
            }
    
            public State previous() {
                return ModelNode.State.values()[ordinal() - 1];
            }
    
            public boolean isAtLeast(State state) {
                return this.ordinal() >= state.ordinal();
            }
        }
    
        ModelPath getPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/types.go

    // state of a system.
    type CarpStatus struct {
    	// Current condition of the carp.
    	// More info: http://kubernetes.io/docs/user-guide/carp-states#carp-phase
    	// +optional
    	Phase CarpPhase `json:"phase,omitempty" protobuf:"bytes,1,opt,name=phase,casttype=CarpPhase"`
    	// 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: Tue Feb 20 15:45:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/ready.go

    	r.lock.RLock()
    	defer r.lock.RUnlock()
    	return r.generation, r.state == Ready
    }
    
    // set the state to Pending (false) or Ready (true), it does not have effect if the state is Stopped.
    func (r *ready) set(ok bool) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    	if r.state == Stopped {
    		return
    	}
    	if ok && r.state == Pending {
    		r.state = Ready
    		r.generation++
    		select {
    		case <-r.waitCh:
    		default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 13:32:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pkg/config/schema/resource/schema.go

    }
    
    func (s *schemaImpl) Status() (config.Status, error) {
    	statTyp := s.statusType
    	if statTyp == nil {
    		return nil, errors.New("unknown status type")
    	}
    	instance := reflect.New(statTyp).Interface()
    	p, ok := instance.(config.Status)
    	if !ok {
    		return nil, fmt.Errorf("status: statusType not an instance of config.Status. type: %v, value: %v", statTyp, instance)
    	}
    	return p, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top