Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,641 for plfeature (0.26 sec)

  1. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

        }
    
        private void packagingTasks(boolean expectExecuted, String subproject, String feature = '') {
            def tasks = [":$subproject:process${feature.capitalize()}Resources", ":$subproject:${feature.isEmpty() ? 'classes' : feature + 'Classes'}", ":$subproject:${feature.isEmpty() ? 'jar' : feature + 'Jar'}"]
            if (expectExecuted) {
                executed(*tasks)
            } else {
                notExecuted(*tasks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. pkg/test/framework/tools/featuresgen/cmd/root_test.go

    	if s1 != "\tLabEl1_Label2\tFeature = \"lab-el1.label2\"" {
    		t.Errorf("Expected '\tLabEl1_Label2\tFeature = \"lab-el1.label2\"' got '%s'", s1)
    	}
    
    	s2 := createConstantString([]string{"lab.*)($)#el1", "lab.el2"})
    	if s2 != "\tLabel1_Label2\tFeature = \"lab*)($)#el1.label2\"" {
    		t.Errorf("Expected '\tLabel1_Label2\tFeature = \"lab*)($)#el1.label2\"' got '%s'", s2)
    	}
    }
    
    var testYaml = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	doc := NewParser().Parse(in)
    	return doc, nil
    }
    
    // An APIFeature is a symbol mentioned in an API file,
    // like the ones in the main go repo in the api directory.
    type APIFeature struct {
    	Package string // package that the feature is in
    	Build   string // build that the symbol is relevant for (e.g. GOOS, GOARCH)
    	Feature string // everything about the feature other than the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/FeatureSpec.java

         * If you want to keep the default capability and add a new one you need to
         * restore the default capability:
         *
         * <pre>
         * registerFeature("myFeature") {
         *     capability("${project.group}", "${project.name}-my-feature", "${project.version}")
         *     capability("com.example", "some-other-capability", "2.0")
         * }
         * </pre>
         *
         * @param group the group of the capability
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    import (
    	"k8s.io/apimachinery/pkg/util/runtime"
    
    	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 featuregate.Feature = "MyFeature"
    	//
    	// Feature gates should be listed in alphabetical, case-sensitive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. .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)
  8. 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)
  9. 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)
  10. 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)
Back to top