Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,950 for applyTo (0.15 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ClassPathPluginResolution.java

            return pluginId;
        }
    
        @Nullable
        @Override
        public String getPluginVersion() {
            return pluginVersion;
        }
    
        @Override
        public void applyTo(PluginManagerInternal pluginManager) {
            pluginManager.apply(plugin);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.plugins.JacocoPluginExtension.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>applyTo</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/tracing.go

    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ConfigFile, "tracing-config-file", o.ConfigFile,
    		"File with apiserver tracing configuration.")
    }
    
    // ApplyTo fills up Tracing config with options.
    func (o *TracingOptions) ApplyTo(es *egressselector.EgressSelector, c *server.Config) error {
    	if o == nil || o.ConfigFile == "" {
    		return nil
    	}
    	if !feature.DefaultFeatureGate.Enabled(features.APIServerTracing) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 21:39:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResultTest.groovy

            given:
            result.attempted("a")
            result.attempted("b")
            result.resolved(state, graphState)
    
            when:
            result.applyTo(idResult)
    
            then:
            1 * idResult.attempted("a")
            1 * idResult.attempted("b")
            1 * idResult.resolved(state, graphState)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolution.java

        /**
         * Accepts a visitor and visits the resolved plugin.
         */
        default void accept(PluginResolutionVisitor visitor) { }
    
        /**
         * Apply the plugin to the provided plugin manager.
         */
        void applyTo(PluginManagerInternal pluginManager);
    
        /**
         * The resolved plugin version, if known.
         *
         * @return The resolved plugin version, or null if the plugin version is not known.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/hpacontroller.go

    }
    
    // ApplyTo fills up HPAController config with options.
    func (o *HPAControllerOptions) ApplyTo(cfg *poautosclerconfig.HPAControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.ConcurrentHorizontalPodAutoscalerSyncs = o.ConcurrentHorizontalPodAutoscalerSyncs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

            state.assertCanMutate();
            modelNode.applyTo(allLinks(), ModelActionRole.Finalize, NoInputsModelAction.of(elementTypeReference, descriptor.append("afterEach()"), configAction));
        }
    
        @Override
        public void beforeEach(Action<? super T> configAction) {
            state.assertCanMutate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    }
    
    // ApplyTo fills up EndpointSliceMirroringController config with options.
    func (o *EndpointSliceMirroringControllerOptions) ApplyTo(cfg *endpointslicemirroringconfig.EndpointSliceMirroringControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/WelcomeMessageBuildOptions.java

            public WelcomeMessageOption() {
                super(PROPERTY_NAME, WelcomeMessageDisplayMode.class, WelcomeMessageDisplayMode.values(), PROPERTY_NAME);
            }
    
            @Override
            public void applyTo(WelcomeMessageDisplayMode value, WelcomeMessageConfiguration settings, Origin origin) {
                settings.setWelcomeMessageDisplayMode(value);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultResourceAwareResolveResult.java

            attempted.add(locationDescription);
        }
    
        @Override
        public void attempted(ExternalResourceName location) {
            attempted(location.getDisplayName());
        }
    
        @Override
        public void applyTo(ResourceAwareResolveResult target) {
            if (attempted != null) {
                for (String location : attempted) {
                    target.attempted(location);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top