Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,036 for Configurer (0.13 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseWtp.java

            configure(action, component);
        }
    
        /**
         * Configures wtp component.
         * <p>
         * For examples see docs for {@link EclipseWtpComponent}
         *
         * @since 3.5
         */
        public void component(Action<? super EclipseWtpComponent> action) {
            action.execute(component);
        }
    
        /**
         * Configures wtp facet.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/DefaultToolingImplementationLoaderTest.groovy

        void configureLogging(boolean verboseLogging) {
            configured = verboseLogging
        }
    
        ConnectionMetaDataVersion1 getMetaData() {
            return new TestMetaData('1.0-milestone-8')
        }
    }
    
    class TestR10M3Connection implements ConnectionVersion4 {
        boolean configured
    
        void configureLogging(boolean verboseLogging) {
            configured = verboseLogging
        }
    
        void stop() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/CodeGenerator.kt

                $thisExtensions.getByName("$stringLiteral") as $type
    
            /**
             * Configures the [$original][$type] extension.
             */
            fun $targetType.`$kotlinIdentifier`(configure: Action<$type>): Unit =
                $thisExtensions.configure("$stringLiteral", configure)
        """
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    =====
    
    In the example generated by Gradle init, we define two tasks:
    
    1. `functionalTest`: This task is registered using `tasks.register()`. It configures the test task for functional tests.
    
    2. `test`: This task is configured using `tasks.named()` for the existing `test` task. It also configures the task to use JUnit Jupiter for unit tests.
    
    == Step 3. Update the Build scripts
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

            val myLambdaReceiver = Configured()
    
            @Suppress("unused")
            @Configuring
            fun configureLambdaArgument(configure: Configured.() -> Unit) {
                configure(myLambdaReceiver)
            }
    
            @Suppress("unused")
            @Configuring
            fun configureLambdaArgumentWithCustomInterface(configure: MyFunctionalInterface<Configured>) {
                configure.action(myLambdaReceiver)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseProject.java

    import java.util.Map;
    import java.util.Set;
    
    import static org.gradle.util.internal.ConfigureUtil.configure;
    
    /**
     * Enables fine-tuning project details (.project file) of the Eclipse plugin
     * <p>
     * Example of use with a blend of all possible properties.
     * Bear in mind that usually you don't have configure eclipse project directly because Gradle configures it for free!
     *
     * <pre class='autoTested'>
     * plugins {
     *     id 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/ScalaSourceSet.java

         */
        SourceDirectorySet getScala();
    
        /**
         * Configures the Scala source for this set.
         *
         * <p>The given closure is used to configure the {@link SourceDirectorySet} which contains the Scala source.
         *
         * @param configureClosure The closure to use to configure the Scala source.
         * @return this
         */
        @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovySourceSet.java

         */
        SourceDirectorySet getGroovy();
    
        /**
         * Configures the Groovy source for this set.
         *
         * <p>The given closure is used to configure the {@link SourceDirectorySet} which contains the Groovy source.
         *
         * @param configureClosure The closure to use to configure the Groovy source.
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTaskSelectorTest.groovy

            then:
            1 * projectConfigurer.configure(projectModel1)
            1 * resolver.selectWithName("b", projectModel1, false) >> selectionResult
            _ * selectionResult.collectTasks(_) >> { it[0] << excluded }
            0 * _
    
            and:
            !filter.isSatisfiedBy(excluded)
            filter.isSatisfiedBy(notExcluded)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

         *
         * <p>The given action is invoked to configure the item when the item is required. It is called after any actions provided to {@link #beforeEach(org.gradle.api.Action)} and {@link #create(String,
         * org.gradle.api.Action)}.
         *
         * @param name The name.
         * @param configAction An action that configures the item. The action is executed when the item is required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top