Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,429 for Configurer (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

        /**
         * Configures the build, if not already done.
         * This may fail with an error, if this build is loaded from cache rather than configured.
         *
         * <p>Note: You should not use this method as no thread safety is applied to the return value.
         *
         * @return The configured Gradle build instance.
         */
        GradleInternal getConfiguredBuild();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

            get() = container
    
        /**
         * Configures a task by name, without triggering its creation or configuration, failing if there is no such task.
         *
         * @see [TaskContainer.named]
         * @see [TaskProvider.configure]
         */
        operator fun String.invoke(configuration: Task.() -> Unit): TaskProvider<Task> =
            named(this).apply { configure(configuration) }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def configureA = configureBuild.child("Configure project :a")
            configureA.child("Apply plugin org.gradle.help-tasks to project ':a'")
            configureA.children("Apply plugin'org.gradle.java' to project ':a'").empty
    
            def configureB = configureBuild.child("Configure project :b")
            configureB.child("Apply plugin org.gradle.help-tasks to project ':b'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * @since 7.1
         */
        Manifest manifest();
    
        /**
         * Creates and configures a new instance of a {@link Manifest}. The given closure configures
         * the new manifest instance before it is returned.
         *
         * @param closure The closure to use to configure the manifest.
         * @since 7.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Script.java

     */
    public interface Script {
        /**
         * <p>Configures the delegate object for this script using plugins or scripts.
         *
         * <p>The given closure is used to configure an {@link org.gradle.api.plugins.ObjectConfigurationAction} which is
         * then used to configure the delegate object.</p>
         *
         * @param closure The closure to configure the {@code ObjectConfigurationAction}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The configured objects.
         */
        Iterable<?> configure(Iterable<?> objects, Closure configureClosure);
    
        /**
         * Configures a collection of objects via an action.
         *
         * @param objects The objects to configure
         * @param configureAction The action to apply to each object
         * @return The configured objects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * @since 2.0
         */
        ArtifactResolutionQuery createArtifactResolutionQuery();
    
        /**
         * Configures the attributes schema. The action is passed a {@link AttributesSchema} instance.
         * @param configureAction the configure action
         * @return the configured schema
         *
         * @since 3.4
         */
        AttributesSchema attributesSchema(Action<? super AttributesSchema> configureAction);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

        @Restricted
        RepositoryHandler getRepositories();
    
        /**
         * Configure the plugin resolution strategy.
         */
        void resolutionStrategy(Action<? super PluginResolutionStrategy> action);
    
        /**
         * The plugin resolution strategy.
         */
        PluginResolutionStrategy getResolutionStrategy();
    
        /**
         * Configure the default plugin versions.
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

         */
        public abstract Manifest manifest();
    
        /**
         * Creates and configures a new instance of a {@link Manifest}. The given closure configures
         * the new manifest instance before it is returned.
         *
         * @param closure The closure to use to configure the manifest.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConfigurableConnection.java

        /**
         * Configures this connection with the given parameters.
         *
         * <p>Consumer compatibility: This method is used by all consumer versions from 1.2-rc-1.</p>
         * <p>Provider compatibility: This method is implemented by all provider versions from 1.2-rc-1.</p>
         *
         * @since 1.2-rc-1
         */
        void configure(ConnectionParameters parameters);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top