Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 4,686 for applyTo (0.29 sec)

  1. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/plugins/LocalPluginResolution.java

        public void accept(PluginResolutionVisitor visitor) {
            visitor.visitDependency(producingProject.getDependencies().create(producingProject));
        }
    
        @Override
        public void applyTo(PluginManagerInternal pluginManager) {
            pluginManager.apply(pluginId.getId());
        }
    
        static Optional<PluginResolution> resolvePlugin(GradleInternal gradle, PluginId requestedPluginId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/feature.go

    		"If true, replace the max-in-flight handler with an enhanced one that queues and dispatches with priority and fairness")
    }
    
    func (o *FeatureOptions) ApplyTo(c *server.Config, clientset kubernetes.Interface, informers informers.SharedInformerFactory) error {
    	if o == nil {
    		return nil
    	}
    
    	c.EnableProfiling = o.EnableProfiling
    	c.DebugSocketPath = o.DebugSocketPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

            }
            modelRegistry.bind(action.getSubject(), type, action);
        }
    
        @Override
        public void applyTo(NodePredicate predicate, ModelActionRole role, ModelAction action) {
            modelRegistry.configureMatching(predicate.scope(getPath()), role, action);
        }
    
        @Override
        public void applyTo(NodePredicate predicate, Class<? extends RuleSource> rules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/IntegerBuildOptionTest.groovy

            TestOption(String gradleProperty, CommandLineOptionConfiguration... commandLineOptionConfiguration) {
                super(gradleProperty, commandLineOptionConfiguration)
            }
    
            @Override
            void applyTo(int value, TestSettings settings, Origin origin) {
                settings.value = value
                settings.origin = origin
            }
        }
    
        static class TestSettings {
            int value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildLauncherTest.groovy

            def task = new Object() {
                String getPath() { return path }
            }
            return new FixedBuildIdentifierProvider(id()).applyTo(new ProtocolToModelAdapter().builder(Task)).build(task)
        }
    
        def selector(def object) {
            return new FixedBuildIdentifierProvider(id()).applyTo(new ProtocolToModelAdapter().builder(TaskSelector)).build(object)
        }
    
        def id() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/BuildTreeDefinedKeys.java

            return new File(keyringsRoot, VERIFICATION_KEYRING_ASCII);
        }
    
        public File getEffectiveKeyringsFile() {
            return effectiveKeyringsFile;
        }
    
        public PublicKeyService applyTo(PublicKeyService original) {
            if (keyService != null) {
                return PublicKeyServiceChain.of(keyService, original);
            } else {
                return original;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 13:00:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOptionTest.groovy

            TestOption(String gradleProperty, CommandLineOptionConfiguration commandLineOptionConfiguration) {
                super(gradleProperty, commandLineOptionConfiguration)
            }
    
            @Override
            void applyTo(TestSettings settings, Origin origin) {
                settings.flag = true
                settings.origin = origin
            }
        }
    
        static class TestSettings {
            boolean flag
            Origin origin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/DefaultPluginResolutionStrategy.java

            }
            resolutionRules.add(rule);
        }
    
        @Override
        public PluginRequestInternal applyTo(PluginRequestInternal pluginRequest) {
            DefaultPluginResolveDetails details = new DefaultPluginResolveDetails(pluginRequest);
            if (details.getRequested().getVersion() == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		"The order of plugins in this flag does not matter.")
    	fs.StringVar(&a.ConfigFile, "admission-control-config-file", a.ConfigFile,
    		"File with admission control configuration.")
    }
    
    // ApplyTo adds the admission chain to the server configuration.
    // In case admission plugin names were not provided by a cluster-admin they will be prepared from the recommended/default values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/test/groovy/org/gradle/testing/jacoco/plugins/JacocoPluginSpec.groovy

    import spock.lang.Issue
    
    class JacocoPluginSpec extends AbstractProjectBuilderSpec {
        def setup() {
            project.apply plugin: 'jacoco'
        }
    
        def 'jacoco applied to specific JavaExec task'() {
            given:
            JavaExec task = project.tasks.create('exec', JavaExec)
            when:
            project.jacoco.applyTo(task)
            then:
            task.extensions.getByType(JacocoTaskExtension) != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top