Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,031 for plfeature (0.35 sec)

  1. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

    name: Feature request
    description: Suggest an idea for this project
    labels: [ "a:feature", "to-triage" ]
    assignees: [ ]
    body:
      - type: markdown
        attributes:
          value: |
            Please follow the instructions below.
            We receive dozens of issues every week, so to stay productive, we will close issues that don't provide enough information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    This results in a special mark for them in the DSL and API references.
    
    If an _incubating_ feature is discussed in this User Manual, it will be explicitly said to be in the _incubating_ state.
    
    [[feature_preview]]
    === Feature Preview API
    
    The feature preview API allows certain _incubating_ features to be activated by adding `enableFeaturePreview('FEATURE')` in your _settings_ file.
    Individual preview features will be announced in release notes.
    
    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. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

        /**
         * Registers a feature.
         * <p>
         * The new feature will have a default capability corresponding to the
         * "group", "name" + feature name and version of this project. For example,
         * if the group of the component is "org", that the project name is "lib"
         * the version is "1.0" and the feature name is "myFeature", then a
         * capability named "org:lib-my-feature:1.0" is automatically added.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. pkg/features/kube_features.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientfeatures "k8s.io/client-go/features"
    	"k8s.io/component-base/featuregate"
    )
    
    const (
    	// Every feature gate should add method here following this template:
    	//
    	// // owner: @username
    	// // kep: https://kep.k8s.io/NNN
    	// // alpha: v1.X
    	// MyFeature featuregate.Feature = "MyFeature"
    	//
    	// Feature gates should be listed in alphabetical, case-sensitive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. pkg/registry/core/service/strategy.go

    	return true
    }
    
    // dropServiceDisabledFields drops fields that are not used if their associated feature gates
    // are not enabled.  The typical pattern is:
    //
    //	if !utilfeature.DefaultFeatureGate.Enabled(features.MyFeature) && !myFeatureInUse(oldSvc) {
    //	    newSvc.Spec.MyFeature = nil
    //	}
    func dropServiceDisabledFields(newSvc *api.Service, oldSvc *api.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:36 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy.go

    	}
    }
    
    // dropStatefulSetDisabledFields drops fields that are not used if their associated feature gates
    // are not enabled.
    // The typical pattern is:
    //
    //	if !utilfeature.DefaultFeatureGate.Enabled(features.MyFeature) && !myFeatureInUse(oldSvc) {
    //	    newSvc.Spec.MyFeature = nil
    //	}
    func dropStatefulSetDisabledFields(newSS *apps.StatefulSet, oldSS *apps.StatefulSet) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:10 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/jvm/component/internal/DefaultJvmSoftwareComponentIntegrationTest.groovy

                }
    
                java {
                    registerFeature("myFeature") {
                        usingSourceSet(sourceSets["custom"])
                    }
                }
            """
    
            expect:
            fails("tasks")
            failure.assertHasErrorOutput("Cannot register feature because multiple JVM components are present. The following components were found: module, thing")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:18:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		{Name: "bmi2", Feature: &X86.HasBMI2},
    		{Name: "cx16", Feature: &X86.HasCX16},
    		{Name: "erms", Feature: &X86.HasERMS},
    		{Name: "fma", Feature: &X86.HasFMA},
    		{Name: "osxsave", Feature: &X86.HasOSXSAVE},
    		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
    		{Name: "popcnt", Feature: &X86.HasPOPCNT},
    		{Name: "rdrand", Feature: &X86.HasRDRAND},
    		{Name: "rdseed", Feature: &X86.HasRDSEED},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. 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)
  10. pkg/test/framework/tools/featuresgen/cmd/root.go

    		name += "_"
    
    		value += dotsRegex.ReplaceAllString(path[i], "")
    		value += "."
    	}
    	name = strings.TrimSuffix(name, "_")
    	value = strings.TrimSuffix(value, ".")
    	return fmt.Sprintf("\t%s\tFeature = \"%s\"", name, value)
    }
    
    // Reads the yaml file and generates a string constant for each leaf node
    func createLabelsFromYaml() string {
    	data, err := os.ReadFile(input)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top