Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for buildCacheKey (0.81 sec)

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

            private final BuildCacheKey key;
            private final Throwable e;
            private final BuildCacheOperationType operationType;
    
            public RemoteDisabledDueToFailureProgressDetails(BuildCacheKey key, Throwable e, BuildCacheOperationType operationType) {
                this.key = key;
                this.e = e;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/NullLocalBuildCacheServiceHandle.java

        }
    
        @Override
        public Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, Function<File, BuildCacheLoadResult> unpackFunction) {
            return Optional.empty();
        }
    
        @Override
        public boolean canStore() {
            return false;
        }
    
        @Override
        public boolean maybeStore(BuildCacheKey key, File file) {
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/operations/UnpackOperationDetails.java

    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.operations.BuildCacheArchiveUnpackBuildOperationType;
    
    public class UnpackOperationDetails implements BuildCacheArchiveUnpackBuildOperationType.Details {
    
        private final BuildCacheKey key;
        private final long archiveSize;
    
        public UnpackOperationDetails(BuildCacheKey key, long archiveSize) {
            this.key = key;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.controller.BuildCacheController;
    import org.gradle.caching.internal.controller.service.BuildCacheLoadResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

            def thirdBuildCacheKey = buildCacheKey(":write")
            thirdBuildCacheKey != firstBuildCacheKey
            thirdBuildCacheKey != null
            originBuildInvocationId(":write") == null
    
            when:
            succeeds "write"
    
            then:
            executed ":write"
            with(origin(":write")) {
                buildInvocationId == thirdBuildId
                buildCacheKey == thirdBuildCacheKey
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/local/internal/LocalBuildCacheService.java

         * Loads a cache artifact from a local file store. If a result is found the {@code reader} is executed.
         */
        void loadLocally(BuildCacheKey key, Consumer<? super File> reader);
    
        /**
         * Store the given file in the local file store as a cache artifact.
         */
        void storeLocally(BuildCacheKey key, File file);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheKeyFixture.groovy

                            def buildCacheKey = buildCacheKeysByParentId.remove(buildOperation.id.id)
                            if (buildCacheKey != null) {
                                buildCacheKeys.put(buildOperation.details.task.getIdentityPath(), buildCacheKey)
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/LocalBuildCacheServiceHandle.java

        Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, Function<File, BuildCacheLoadResult> unpackFunction);
    
        boolean canStore();
    
        /**
         * Stores the file to the local cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
         * Returns true if store was completed.
         */
        boolean maybeStore(BuildCacheKey key, File file);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 16:23:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/NullRemoteBuildCacheServiceHandle.java

        }
    
        @Override
        public Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, File toFile, Function<File, BuildCacheLoadResult> unpackFunction) {
            return Optional.empty();
        }
    
        @Override
        public boolean canStore() {
            return false;
        }
    
        @Override
        public boolean maybeStore(BuildCacheKey key, File file) {
            return false;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/NoOpBuildCacheController.java

        @Override
        public boolean isEnabled() {
            return false;
        }
    
        @Override
        public Optional<BuildCacheLoadResult> load(BuildCacheKey cacheKey, CacheableEntity cacheableEntity) {
            return Optional.empty();
        }
    
        @Override
        public void store(BuildCacheKey cacheKey, CacheableEntity entity, Map<String, FileSystemSnapshot> snapshots, Duration executionTime) {
    
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:26 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top