Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,291 for statDep (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

    // state of a system.
    message PodStatus {
      // Current condition of the pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
      // +optional
      repeated PodCondition conditions = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/evented.go

    		// old and new set of container states may vary;
    		// get a unique set of container states combining both
    		containerStates := make(map[kubecontainer.State]bool)
    		for state := range oldContainerStateCount {
    			containerStates[state] = true
    		}
    		for state := range currentContainerStateCount {
    			containerStates[state] = true
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/config/types.go

    	// Reconciler runs a periodic loop to reconcile the desired state of the with
    	// the actual state of the world by triggering attach detach operations.
    	// This flag enables or disables reconcile.  Is false by default, and thus enabled.
    	DisableAttachDetachReconcilerSync bool
    	// ReconcilerSyncLoopPeriod is the amount of time the reconciler sync states loop
    	// wait between successive executions. Is set to 60 sec by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/html/template/html.go

    		if c.delim == delimNone {
    			st := c.state
    			// Use RCDATA instead of parsing into JS or CSS styles.
    			if c.element != elementNone && !isInTag(st) {
    				st = stateRCDATA
    			}
    			d, nread := transitionFunc[st](c, s[i:])
    			i1 := i + nread
    			if c.state == stateText || c.state == stateRCDATA {
    				// Emit text up to the start of the tag or comment.
    				j := i1
    				if d.state != c.state {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:42:28 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/sigqueue.go

    	// Notify receiver that queue has new bit.
    Send:
    	for {
    		switch sig.state.Load() {
    		default:
    			throw("sigsend: inconsistent state")
    		case sigIdle:
    			if sig.state.CompareAndSwap(sigIdle, sigSending) {
    				break Send
    			}
    		case sigSending:
    			// notification already pending
    			break Send
    		case sigReceiving:
    			if sig.state.CompareAndSwap(sigReceiving, sigIdle) {
    				if GOOS == "darwin" || GOOS == "ios" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top