Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,031 for plfeature (0.29 sec)

  1. platforms/jvm/testing-jvm/src/integTest/resources/org/gradle/testing/cucumberjvm/CucumberJVMReportIntegrationTest/testReportingSupportsCucumberStepsWithSlashes/src/test/resources/helloworld.feature

    Feature: Hello World /one
    
    @bar
    Scenario: Say hello /two/three
    Given I have a hello app with Howdy and /four
    When I ask it to say hi and /five/six/seven
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 192 bytes
    - Viewed (0)
  2. hack/list-feature-tests.sh

    # limitations under the License.
    
    # This script lists all of the [Feature:.+] tests in our e2e suite.
    # Usage: `hack/list-feature-tests.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 28 00:27:40 UTC 2020
    - 887 bytes
    - Viewed (0)
  3. BUGS-AND-FEATURE-REQUESTS.md

    # Bugs and Feature Requests
    
    You can report bugs and feature requests to the Istio team in one of three places:
    
    - [Product Bugs and Feature Requests](https://github.com/istio/istio/issues)
    - [Documentation Bugs and Feature Requests](https://github.com/istio/istio.io/issues)
    - [Community and Governance Issues](https://github.com/istio/community/issues)
    
    For security vulnerabilities, please don't report a bug (which is public) and instead follow
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 17 16:57:25 UTC 2019
    - 519 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top