Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,429 for Configurer (0.39 sec)

  1. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            return new PgpSignatoryProvider();
        }
    
        /**
         * Configures the signatory provider (delegating to its {@link SignatoryProvider#configure(SigningExtension, Closure) configure method}).
         *
         * @param closure the signatory provider configuration DSL
         * @return the configured signatory provider
         */
        @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    /**
     * Test Fixtures Plugin.
     *
     * Configures the Project as a test fixtures producer if `src/testFixtures` is a directory:
     * - adds a new `testFixtures` source set which should contain utilities/fixtures to assist in unit testing
     *   classes from the main source set,
     * - the test fixtures are automatically made available to the test classpath.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top