Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for leverages (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

                    }
                }
            """
        }
    
        @TargetGradleVersion(">=8.1")
        def "nested actions that query a project model which leverages toolchain information do not cause Property evaluation to be in unexpected state"() {
            given:
            setupBuildWithToolchainsResolution()
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/VariantResolvingArtifactSet.java

         *
         * <p>This emulates the normal variant selection process where graph variants are first
         * considered, then artifact variants. We first consider graph variants, which leverages the
         * same algorithm used during graph variant selection. This considers requested and declared
         * capabilities.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/maven/ApiMavenResolver.groovy

    import org.eclipse.aether.transfer.TransferResource
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil
    
    /**
     * Performs resolution of dependencies against Maven repositories.
     *
     * <p>This resolver leverages Maven's stable public API for dependency resolution and does
     * not run a full Maven build.</p>
     */
    class ApiMavenResolver {
    
        /**
         * The local repository used for caching resolved artifacts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            when:
            succeeds "resolve"
    
            then:
            output.count("Minifying") == 1
            output.count('minified=true')
            output.count('Sizing') == 0
        }
    
        def "disambiguation leverages schema rules before doing it size based"() {
            given:
            createDirs("child")
            settingsFile << """
    include('child')
    """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    * A project leverages the rich versions constraints of Gradle, which have a lossy conversion to Ivy.
    Instead of relying on the conversion, it publishes the resolved versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    * A project leverages the rich versions constraints of Gradle, which have a lossy conversion to Maven.
    Instead of relying on the conversion, it publishes the resolved versions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    A first feature using the build cache is _task output caching_.
    Essentially, task output caching leverages the same intelligence as <<incremental_build#incremental_build,up-to-date checks>> that Gradle uses to avoid work when a previous local build has already produced a set of task outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    .Applying the Kotlin DSL Plugin to a `buildSrc` project
    ====
    include::sample[dir="snippets/kotlinDsl/kotlinDslPlugin/kotlin",files="buildSrc/build.gradle.kts[tags=apply]"]
    ====
    
    The Kotlin DSL Plugin leverages <<toolchains#toolchains,Java Toolchains>>.
    By default the code will target Java 8.
    You can change that by defining a Java toolchain to be used by the project:
    
    .Changing the JVM target using toolchains
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    - `getFirstLevelModuleDependencies(Spec)`
    - `getFiles(Spec)`
    - `getArtifacts(Spec)`
    
    To mitigate this deprecation, consider the example below that leverages the `ArtifactView`
    API along with the `componentFilter` method to select a subset of a Configuration's artifacts:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    The Kotlin DSL is embedded into the Gradle Build Tool and, just like the IDE, makes use of the Kotlin toolchain.
    Both the Kotlin DSL and the Kotlin toolchain leverage the Gradle Build Cache.
    
    image::images/C4_1_Context.svg[]
    
    ## Level 2: Container diagram
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top