Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 305 for gStates (0.23 sec)

  1. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      private final Object lock = new Object();
    
      /*
       * Conceptually, these two variables describe the executor being in
       * one of three states:
       *   - Active: shutdown == false
       *   - Shutdown: runningTasks > 0 and shutdown == true
       *   - Terminated: runningTasks == 0 and shutdown == true
       */
      @GuardedBy("lock")
      private int runningTasks = 0;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. pkg/kubelet/pleg/evented.go

    		}
    	} else {
    		oldContainerStateCount := getContainerStateCount(cachedPodStatus)
    		currentContainerStateCount := getContainerStateCount(podStatus)
    
    		// 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
    		}
    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. src/cmd/compile/internal/ssa/rewrite.go

    			// Start checking for cycles. (This is too expensive to do routinely.)
    			// Note: we avoid this path for deadChange-only iterations, to fix #51639.
    			if states == nil {
    				states = make(map[string]bool)
    			}
    			h := f.rewriteHash()
    			if _, ok := states[h]; ok {
    				// We've found a cycle.
    				// To diagnose it, set debug to 2 and start again,
    				// so that we'll print all rules applied until we complete another cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  4. src/os/dir_darwin.go

    		}
    		if entptr == nil { // EOF
    			break
    		}
    		// Darwin may return a zero inode when a directory entry has been
    		// deleted but not yet removed from the directory. The man page for
    		// getdirentries(2) states that programs are responsible for skipping
    		// those entries:
    		//
    		//   Users of getdirentries() should skip entries with d_fileno = 0,
    		//   as such entries represent files which have been deleted but not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/features/kube_features.go

    	// owner: @mikedanese
    	// alpha: v1.7
    	// beta: v1.12
    	//
    	// Gets a server certificate for the kubelet from the Certificate Signing
    	// Request API instead of generating one self signed and auto rotates the
    	// certificate as expiration approaches.
    	RotateKubeletServerCertificate featuregate.Feature = "RotateKubeletServerCertificate"
    
    	// owner: @kiashok
    	// kep: https://kep.k8s.io/4216
    	// alpha: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/constant.go

    	// DryRun flag instructs kubeadm to don't apply any changes; just output what would be done.
    	DryRun = "dry-run"
    
    	// FeatureGatesString flag sets key=value pairs that describe feature gates for various features.
    	FeatureGatesString = "feature-gates"
    
    	// IgnorePreflightErrors sets the path a list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. pkg/kubeapiserver/default_storage_factory_builder.go

    	ResourceEncodingOverrides []schema.GroupVersionResource
    	EtcdServersOverrides      []string
    }
    
    // Complete completes the StorageFactoryConfig with provided etcdOptions returning completedStorageFactoryConfig.
    // This method mutates the receiver (StorageFactoryConfig).  It must never mutate the inputs.
    func (c *StorageFactoryConfig) Complete(etcdOptions *serveroptions.EtcdOptions) *completedStorageFactoryConfig {
    	c.StorageConfig = etcdOptions.StorageConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                this.stateChanged.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        private boolean stateIn(ExecHandleState... states) {
            lock.lock();
            try {
                return Arrays.asList(states).contains(this.state);
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/security/apparmor/validate.go

    func (v *validator) ValidateHost() error {
    	return v.validateHostErr
    }
    
    // validateHost verifies that the host and runtime is capable of enforcing AppArmor profiles.
    func validateHost() error {
    	// Check feature-gates
    	if !utilfeature.DefaultFeatureGate.Enabled(features.AppArmor) {
    		return errors.New("AppArmor disabled by feature-gate")
    	}
    
    	// Check build support.
    	if isDisabledBuild {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers.go

    	var states []string
    	if obj.DeletionTimestamp != nil {
    		states = append(states, "deleted")
    	}
    	if obj.Status.Allocation == nil {
    		if obj.DeletionTimestamp == nil {
    			states = append(states, "pending")
    		}
    	} else {
    		states = append(states, "allocated")
    		if len(obj.Status.ReservedFor) > 0 {
    			states = append(states, "reserved")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top