Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 378 for gStates (0.11 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    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>>
    2. <<#sec:incubating_state,Incubating>>
    3. <<#sec:public,Public>>
    4. <<#sec:deprecated,Deprecated>>
    
    [[sec:internal]]
    == 1. 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)
  3. pkg/features/client_adapter.go

    // for client-go features without introducing a circular dependency between component-base and
    // client-go.
    type clientAdapter struct {
    	mfg featuregate.MutableFeatureGate
    }
    
    var _ clientfeatures.Gates = &clientAdapter{}
    
    func (a *clientAdapter) Enabled(name clientfeatures.Feature) bool {
    	return a.mfg.Enabled(featuregate.Feature(name))
    }
    
    var _ clientfeatures.Registry = &clientAdapter{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/internal/zstd/block.go

    	}
    	panic("unreachable")
    }
    
    // execSeqs reads and executes the sequences. RFC 3.1.1.3.2.1.2.
    func (r *Reader) execSeqs(data block, off int, litbuf []byte, seqCount int) error {
    	// Set up the initial states for the sequence code readers.
    
    	rbr, err := r.makeReverseBitReader(data, len(data)-1, off)
    	if err != nil {
    		return err
    	}
    
    	literalState, err := rbr.val(r.seqTableBits[seqLiteral])
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                        }
                    }
    
                    // If we have a result at this depth, don't bother building the next depth's states.
                    if (!results.isEmpty()) {
                        continue;
                    }
    
                    // Construct new states for processing at the next depth in case we can't find any solutions at this depth.
                    for (int i = 0; i < candidates.size(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    	"k8s.io/apiserver/pkg/authentication/serviceaccount"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/endpoints/request"
    )
    
    // Tests whether a given request and FlowSchema match.  Nobody mutates
    // either input.
    func matchesFlowSchema(digest RequestDigest, flowSchema *flowcontrol.FlowSchema) bool {
    	for _, policyRule := range flowSchema.Spec.Rules {
    		if matchesPolicyRule(digest, &policyRule) {
    			return true
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top