Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for buildCacheKey (1.47 sec)

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

    import org.gradle.api.UncheckedIOException;
    import org.gradle.caching.BuildCacheEntryReader;
    import org.gradle.caching.BuildCacheEntryWriter;
    import org.gradle.caching.BuildCacheException;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.resource.transport.http.HttpClientHelper;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedImplementationIntegrationTest.groovy

                            }
                        }
    
                        return new BuildCacheService() {
                            @Override
                            public boolean load(BuildCacheKey key, BuildCacheEntryReader reader) throws BuildCacheException {
                                String value = data.getProperty(key.getHashCode());
                                if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:09:58 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

                return getDelegate().isEnabled();
            }
    
            @Override
            public Optional<BuildCacheLoadResult> load(BuildCacheKey cacheKey, CacheableEntity cacheableEntity) {
                return getDelegate().load(cacheKey, cacheableEntity);
            }
    
            @Override
            public void store(BuildCacheKey cacheKey, CacheableEntity entity, Map<String, FileSystemSnapshot> snapshots, Duration executionTime) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.controller.BuildCacheController;
    import org.gradle.internal.execution.UnitOfWork;
    import org.gradle.internal.execution.caching.CachingDisabledReason;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

            Duration originExecutionTime = result.getDuration().plus(Duration.ofMillis(snapshotOutputDuration));
            HashCode buildCacheKey = ((BuildCacheKeyInternal) cacheKeyCalculatedState.getKey()).getHashCodeInternal();
            return new OriginMetadata(
                buildInvocationScopeId.asString(),
                buildCacheKey,
                originExecutionTime
            );
        }
    
        /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

            """
                class NoOpBuildCacheService implements BuildCacheService {
                    @Override
                    boolean load(BuildCacheKey key, BuildCacheEntryReader reader) { false }
    
                    @Override
                    void store(BuildCacheKey key, BuildCacheEntryWriter writer) {}
    
                    @Override
                    void close() {}
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionErrorHandlingIntegrationTest.groovy

                    FailingBuildCacheService(String shouldFail) {
                        this.shouldFail = shouldFail
                    }
    
                    @Override
                    boolean load(BuildCacheKey key, BuildCacheEntryReader reader) throws BuildCacheException {
                        println "> Attempting load for \$key"
                        if (shouldFail == "load") {
                            shouldFail = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.steps
    
    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: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

     */
    
    package org.gradle.caching.example;
    
    import com.google.common.collect.ImmutableMap;
    import com.google.inject.Guice;
    import com.google.inject.Inject;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.SimpleBuildCacheKey;
    import org.gradle.caching.internal.controller.BuildCacheController;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

    import com.google.common.collect.ImmutableSet;
    import com.google.common.collect.ImmutableSortedMap;
    import com.google.common.collect.Maps;
    import org.gradle.api.NonNullApi;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.history.BeforeExecutionState;
    import org.gradle.internal.execution.history.ExecutionInputState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top