Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 872 for plfeature (0.14 sec)

  1. cmd/kubeadm/app/features/features_test.go

    // each feature gate when no feature gates are specified.
    func TestEnabledDefaults(t *testing.T) {
    	for featureName, feature := range InitFeatureGates {
    		featureList := make(map[string]bool)
    
    		enabled := Enabled(featureList, featureName)
    		if enabled != feature.Default {
    			t.Errorf("Enabled returned %v instead of default value %v for feature %s", enabled, feature.Default, featureName)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 04:57:22 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedSpecInterceptor.groovy

    import java.lang.reflect.Field
    import java.util.concurrent.atomic.AtomicBoolean
    
    class ToBeFixedSpecInterceptor {
    
        private final String feature
    
        ToBeFixedSpecInterceptor(String feature) {
            this.feature = feature
        }
    
        void intercept(SpecElementInfo specElementInfo, String[] iterationMatchers) {
            if (specElementInfo instanceof SpecInfo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/controllermanager_test.go

    		// we have to parse this from KnownFeatures, because usage of mutable FeatureGate is not allowed in unit tests
    		feature := featureGateRegex.FindString(featureText)
    		if strings.Contains(featureText, string(featuregate.Alpha)) && feature != "AllAlpha" {
    			alphaFeatures.Insert(feature)
    		}
    
    	}
    
    	for name, controller := range NewControllerDescriptors() {
    		if len(controller.GetAliases()) == 0 {
    			continue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/plugins_providers.go

    		logger.Info("Skip registration of plugin since feature flag is enabled", "plugin", inTreePluginName, "feature", pluginInfo.pluginUnregisterFeature)
    		return plugins, nil
    	}
    	plugins = append(plugins, pluginInfo.pluginProbeFunction()...)
    	return plugins, nil
    }
    
    type pluginInfo struct {
    	pluginMigrationFeature  featuregate.Feature
    	pluginUnregisterFeature featuregate.Feature
    	pluginProbeFunction     probeFn
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/features/FeaturesResolveIntegrationTest.groovy

                        capability('org', 'feature-1', '1.0')
                        attribute('org.gradle.usage', 'java-runtime')
                        attribute('org.gradle.libraryelements', 'jar')
                        attribute('org.gradle.category', 'library')
                        artifact('feat1')
                    }
                    variant('feature2') {
                        capability('org', 'feature-2', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 20:29:39 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/configuration/BuildFeature.java

    import org.gradle.api.provider.Provider;
    
    /**
     * Status of a feature in a build that affects Gradle behavior,
     * and may impose additional requirements on plugins or build scripts.
     * <p>
     * It is possible to check if the feature is {@link #getActive() active} in the current build.
     * The {@link #getRequested() requested} property shows whether the user opted in or opted out from the feature.
     *
     * @see BuildFeatures
     * @since 8.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 19:28:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-fixtures/src/main/java/org/gradle/api/plugins/JavaTestFixturesPlugin.java

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build.gradle.kts

    tasks.register("checkFeatures") {
        group = "verification"
        description = "Run all feature tests"
        dependsOn(gradle.includedBuild("admin-feature").task(":config:check"))
        dependsOn(gradle.includedBuild("user-feature").task(":data:check"))
        dependsOn(gradle.includedBuild("user-feature").task(":table:check"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 428 bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

    name: Feature Enhancement Request
    description: I want to make an existing feature better
    labels: ["type=enhancement"]
    body:
      - type: markdown
        attributes:
          value: >
            Filing feature requests is one of the most popular ways to contribute to Guava.
    
    
            Be aware, though: most feature requests are not accepted, even if they're suggested by
            a full-time Guava team member. [Feedback](https://stackoverflow.com/a/4543114) from our
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCacheExtension.groovy

        void visitFeatureAnnotation(ToBeFixedForConfigurationCache annotation, FeatureInfo feature) {
    
            if (GradleContextualExecuter.isNotConfigCache()) {
                return
            }
    
            if (!isEnabledSpec(annotation, feature)) {
                return
            }
    
            if (annotation.skip() != DO_NOT_SKIP) {
                feature.skipped = true
                return
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 08:57:52 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top