Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,036 for Configurer (0.2 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/util/internal/ConfigureUtil.java

         * {@code delegate}'s {@link Configurable#configure(Closure)} method.</p>
         *
         * @param configureClosure The configuration closure
         * @param target The object to be configured
         * @return The delegate param
         */
        public static <T> T configure(@Nullable Closure configureClosure, T target) {
            if (configureClosure == null) {
                return target;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

         *
         * The first parameter is used to create a custom artifact and add it to the publication, as per {@link #artifact(Object)}.
         * The created {@link MavenArtifact} is then configured using the supplied action, which can override the extension or classifier of the artifact.
         * This method also accepts the configure action as a closure argument, by type coercion.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

                }
            """
    
            when:
            succeeds("a:dependencies", "--configure-on-demand", "--debug")
            then:
            outputContains("More outputs are being registered even though the build output cleanup registry has already been finalized.")
    
            expect:
            succeeds("a:dependencies", "--configure-on-demand")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    <2> *Configuration*: Gradle configures each project by executing the `build.gradle(.kts)` files. It resolves dependencies and creates a dependency graph of all the available tasks.
    <3> *Execution*: Gradle executes the tasks passed on the command line and any prerequisite tasks.
    
    It is important to note that while `task1` was configured and executed, `task2` was not.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/GradlePluginDevelopmentExtension.java

            return plugins;
        }
    
        /**
         * Configures the declared plugins.
         *
         * @param action the configuration action to invoke on the plugins
         */
        public void plugins(Action<? super NamedDomainObjectContainer<PluginDeclaration>> action) {
            action.execute(plugins);
        }
    
        /**
         * Whether the plugin should automatically configure the publications for the plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyPublication.java

         * Creates an {@link IvyArtifact} to be included in the publication, which is configured by the associated action.
         *
         * The first parameter is used to create a custom artifact and add it to the publication, as per {@link #artifact(Object)}.
         * The created {@link IvyArtifact} is then configured using the supplied action.
         * This method also accepts the configure action as a closure argument, by type coercion.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    val verificationTask by tasks.registering {
        // Configure verificationTask
    }
    check {
        dependsOn(verificationTask)
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    def check = tasks.register("check")
    def verificationTask = tasks.register("verificationTask") {
        // Configure verificationTask
    }
    check.configure {
        dependsOn verificationTask
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.internal.configure.NativeBinaryRules> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (NativeBinaryRules.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    == Configure the `Test` task for a test suite
    ====
    include::sample[dir="snippets/testing/test-suite-configure-source-dir/kotlin",files="build.gradle.kts[tags=configure-test-task]"]
    include::sample[dir="snippets/testing/test-suite-configure-source-dir/groovy",files="build.gradle[tags=configure-test-task]"]
    ====
    
    <1> Configure the `integrationTest` task created by declaring a suite of the same name.
    <2> Configure the `Test` task properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/README.adoc

    ...
    ----
    =====
    ====
    
    * `com.myorg.java-conventions` - configures conventions that are generic for any Java project in the organization.
    This applies for both types of previously identified software and thus this plugin will be applied in both subsequent plugins.
    * `com.myorg.library-conventions` - adds publishing configuration to publish to the organization's repository and configures mandatory documentation checks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top