Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getArtifactCacheLayoutVersion (0.27 sec)

  1. platforms/software/dependency-management/src/crossVersionTest/groovy/org/gradle/integtests/resolve/artifactreuse/AbstractCacheReuseCrossVersionIntegrationTest.groovy

        /**
         * **** README ****
         *
         * If this test fails:
         *  1. Make sure DefaultGradleDistribution.getArtifactCacheLayoutVersion settings are correct
         *  2. Think about improving this test so that we don't have to manually fix things ;)
         */
        void setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

         */
        boolean isToolingApiLocksBuildActionClasses();
    
        /**
         * Returns the version of the artifact cache layout
         */
        CacheVersion getArtifactCacheLayoutVersion();
    
        /**
         * Returns true if the wrapper from this distribution can execute a build using the specified version.
         */
        boolean wrapperCanExecute(GradleVersion version);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

        }
    
        @Override
        boolean isToolingApiStdinInEmbeddedModeSupported() {
            return isSameOrNewer("5.6-rc-1");
        }
    
        @Override
        CacheVersion getArtifactCacheLayoutVersion() {
            if (isSameOrNewer("1.9-rc-2")) {
                return CacheLayout.META_DATA.getVersionMapping().getVersionUsedBy(this.version).get();
            } else if (isSameOrNewer("1.9-rc-1")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top