Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,417 for Configurer (0.19 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/samples/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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/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) {
            logDeprecation();
            if (configureClosure == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/DependencyHandlerExtensionsTest.kt

                events.add("configured")
            }
    
            dependencies {
                val createdDependency = create("notation", configureAction)
                assertThat(
                    createdDependency,
                    sameInstance(dependency)
                )
            }
    
            assertThat(
                events,
                equalTo(listOf("created", "configured"))
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModel.java

            this.targetVersion = targetVersion;
        }
    
        /**
         * Configures IDEA module information. <p> For examples see docs for {@link IdeaModule}.
         */
        public void module(@SuppressWarnings("rawtypes") @DelegatesTo(IdeaModule.class) Closure closure) {
            configure(closure, getModule());
        }
    
        /**
         * Configures IDEA module information. <p> For examples see docs for {@link IdeaModule}.
         * @since 3.5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    ====
    
    The following command executes the `test` and `testBoth` tasks specified above.
    Because Gradle only configures requested tasks and their dependencies, the `configured` task never configures:
    
    [source.multi-language-sample,kotlin]
    ----
    > gradle test testBoth
    include::{snippetsPath}/buildlifecycle/basic/tests/buildlifecycle.out[]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilitiesResolution.java

         *
         * @param action the configuration action
         */
        void withCapability(Capability capability, Action<? super CapabilityResolutionDetails> action);
    
        /**
         * Configures the resolution strategy of a specific capability.
         *
         * @param group the group of the capability to configure
         * @param name the name of the capability to configure
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmPluginServices.java

         */
        void configureAsApiElements(HasConfigurableAttributes<?> configuration);
    
        /**
         * Configures a consumable configuration to provide a runtime classpath.
         *
         * @param configuration the configuration to be configured
         */
        void configureAsRuntimeElements(HasConfigurableAttributes<?> configuration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            apply(file("a"))
            apply(file("b"))
    
            // Prebuild buildSrc
            server.expect("configure-root")
            server.expect("configure-a")
            server.expect("configure-b")
            run()
    
            given:
            server.expect("configure-root")
            server.expectConcurrent("model-root", "configure-a", "configure-b")
            server.expectConcurrent("model-a", "model-b")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top