Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isRemotePush (0.1 sec)

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

        }
    
        public boolean isLocalPush() {
            return localPush;
        }
    
        @Nullable
        public BuildCacheService getRemote() {
            return remote;
        }
    
        public boolean isRemotePush() {
            return remotePush;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

        ) {
            this.local = toLocalHandle(config.getLocal(), config.isLocalPush(), buildOperationRunner);
            this.remote = toRemoteHandle(config.getBuildPath(), config.getRemote(), config.isRemotePush(), buildOperationRunner, buildOperationProgressEventEmitter, logStackTraces, disableRemoteOnError);
            this.tmp = toTempFileStore(config.getLocal(), temporaryFileFactory);
            this.packExecutor = new PackOperationExecutor(
    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