Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getBuildCacheConfigurationIdentifier (0.48 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteDisabledDueToFailureProgressDetails.java

         * <p>
         * For Gradle, this is the <code>buildPath</code> of the build that configured the remote build cache in use.
         *
         * @since 8.6
         */
        String getBuildCacheConfigurationIdentifier();
    
        /**
         * The cache key.
         *
         * @since 8.6
         */
        String getCacheKey();
    
        /**
         * The failure that caused the build cache to be disabled.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:53:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

                this.key = key;
                this.e = e;
                this.operationType = operationType;
            }
    
            @Override
            public String getBuildCacheConfigurationIdentifier() {
                return buildPath;
            }
    
            @Override
            public String getCacheKey() {
                return key.getHashCode();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top