Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for FeatureFlag (0.23 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/FeatureFlags.java

     */
    @ServiceScope(Scope.BuildTree.class)
    public interface FeatureFlags {
        boolean isEnabled(FeatureFlag flag);
    
        /**
         * Explicitly enable the given flag. The resulting flag status may still be overridden.
         */
        void enable(FeatureFlag flag);
    
        /**
         * Checks if the given flag was enabled with {@link #enable(FeatureFlag)}. This method doesn't take overrides into account.
         * @param flag the flag to check
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/FeatureFlagListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.BuildTree.class)
    public interface FeatureFlagListener {
        void flagRead(FeatureFlag flag);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 876 bytes
    - Viewed (0)
  3. cmd/kubelet/app/plugins_providers.go

    	// if the plugin unregister feature flag is set
    	if featureGate.Enabled(pluginInfo.pluginUnregisterFeature) {
    		klog.InfoS("Skipped registration of plugin since feature flag is enabled", "pluginName", inTreePluginName, "featureFlag", pluginInfo.pluginUnregisterFeature)
    		return plugins, nil
    	}
    
    	plugins = append(plugins, pluginInfo.pluginProbeFunction()...)
    	return plugins, nil
    }
    
    type pluginInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.kotlinCoroutines)
        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top