Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for plfeature (0.2 sec)

  1. pkg/scheduler/framework/plugins/registry.go

    func NewInTreeRegistry() runtime.Registry {
    	fts := plfeature.Features{
    		EnableDynamicResourceAllocation:              feature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation),
    		EnableVolumeCapacityPriority:                 feature.DefaultFeatureGate.Enabled(features.VolumeCapacityPriority),
    		EnableNodeInclusionPolicyInPodTopologySpread: feature.DefaultFeatureGate.Enabled(features.NodeInclusionPolicyInPodTopologySpread),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/feature/feature.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    Andrew DeMaria <******@****.***> 1713811823 -0600
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/features/kube_features.go

    limitations under the License.
    */
    
    package features
    
    import (
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // alpha: v1.4
    	// MyFeature() bool
    
    	// owner: @alexzielenski
    	// alpha: v1.28
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

                if (withDocumentation) {
                    expectedVariants.addAll([variantName(feature, 'javadocElements'), variantName(feature, 'sourcesElements')])
                }
            }
            def parsedModuleVariants = mavenModule.parsedModuleMetadata.variants*.name as TreeSet
            assert parsedModuleVariants == expectedVariants
    
            features.each { feature ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "sha3", Feature: &ARM64.HasSHA3},
    		{Name: "sha512", Feature: &ARM64.HasSHA512},
    		{Name: "sm3", Feature: &ARM64.HasSM3},
    		{Name: "sm4", Feature: &ARM64.HasSM4},
    		{Name: "sve", Feature: &ARM64.HasSVE},
    		{Name: "sve2", Feature: &ARM64.HasSVE2},
    		{Name: "crc32", Feature: &ARM64.HasCRC32},
    		{Name: "atomics", Feature: &ARM64.HasATOMICS},
    		{Name: "asimdhp", Feature: &ARM64.HasASIMDHP},
    		{Name: "cpuid", Feature: &ARM64.HasCPUID},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	// initialzation, it can flip the support at runtime.
    	Supports(feature storage.Feature) bool
    	// CheckClient works with etcd client to recalcualte feature support and cache it internally.
    	// All etcd clients should support feature to cause `Supports` return true.
    	// If client A supports and client B doesn't support the feature, the `Supports` will
    	// first return true at client A initializtion and then return false on client B
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/internal/cpu/cpu_x86.go

    )
    
    var maxExtendedFunctionInformation uint32
    
    func doinit() {
    	options = []option{
    		{Name: "adx", Feature: &X86.HasADX},
    		{Name: "aes", Feature: &X86.HasAES},
    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
    		{Name: "rdtscp", Feature: &X86.HasRDTSCP},
    		{Name: "sha", Feature: &X86.HasSHA},
    	}
    	level := getGOAMD64level()
    	if level < 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 13:40:20 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/features/features.go

    }
    
    // Feature represents a feature being gated
    type Feature struct {
    	featuregate.FeatureSpec
    	MinimumVersion     *version.Version
    	HiddenInHelpText   bool
    	DeprecationMessage string
    }
    
    // FeatureList represents a list of feature gates
    type FeatureList map[string]Feature
    
    // ValidateVersion ensures that a feature gate list is compatible with the chosen Kubernetes version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ExpectingFailureRuleStatement.groovy

        private final Statement next
    
        private final String feature
    
        ExpectingFailureRuleStatement(Statement next, String feature) {
            this.next = next
            this.feature = feature
        }
    
        @Override
        void evaluate() throws Throwable {
            try {
                next.evaluate()
                throw new ToBeFixedSpecInterceptor.UnexpectedSuccessException(feature)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:04:13 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top