Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BuildCacheOperationException (0.27 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/BuildCacheOperationException.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller;
    
    public class BuildCacheOperationException extends RuntimeException {
        public BuildCacheOperationException(String message) {
            super(message);
        }
    
        public BuildCacheOperationException(String message, Throwable cause) {
            super(message, cause);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 938 bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            try {
                return local.maybeLoad(key, file -> packExecutor.unpack(key, entity, file));
            } catch (Exception e) {
                throw new BuildCacheOperationException("Could not load from local cache: " + e.getMessage(), e);
            }
        }
    
        private Optional<BuildCacheLoadResult> loadRemoteAndStoreResultLocally(BuildCacheKey key, CacheableEntity entity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top