Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,545 for Caching (0.13 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller.impl;
    
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.configuration.internal.BuildCacheConfigurationInternal;
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.controller.BuildCacheController;
    import org.gradle.caching.internal.controller.NoOpBuildCacheController;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.caching.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.execution.caching.CachingDisabledReason;
    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.execution.caching.CachingStateFactory;
    import org.gradle.internal.execution.history.BeforeExecutionState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

     */
    
    package org.gradle.caching.internal.controller.service;
    
    import org.gradle.caching.BuildCacheEntryReader;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.BuildCacheService;
    import org.gradle.caching.internal.controller.operations.LoadOperationDetails;
    import org.gradle.caching.internal.controller.operations.LoadOperationHitResult;
    import org.gradle.caching.internal.controller.operations.LoadOperationMissResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/caching/configuration/internal/DefaultBuildCacheConfigurationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.caching.configuration.internal
    
    import org.gradle.caching.BuildCacheServiceFactory
    import org.gradle.caching.configuration.AbstractBuildCache
    import org.gradle.caching.configuration.BuildCache
    import org.gradle.caching.local.DirectoryBuildCache
    import org.gradle.caching.local.internal.DirectoryBuildCacheServiceFactory
    import org.gradle.internal.reflect.Instantiator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 13:13:02 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/impl/GZipBuildCacheEntryPacker.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.packaging.impl;
    
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.origin.OriginReader;
    import org.gradle.caching.internal.origin.OriginWriter;
    import org.gradle.caching.internal.packaging.BuildCacheEntryPacker;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractResolveCachingStateStep.java

    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;
    import org.gradle.internal.execution.caching.CachingDisabledReasonCategory;
    import org.gradle.internal.execution.caching.CachingState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.caching;
    
    public enum CachingDisabledReasonCategory {
        /**
         * Reason for disabled caching is not known.
         */
        UNKNOWN,
    
        /**
         * Caching has not been enabled for the build.
         */
        BUILD_CACHE_DISABLED,
    
        /**
         * Caching has not been enabled for the work.
         */
        NOT_CACHEABLE,
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller
    
    import com.google.common.collect.Interner
    import org.gradle.caching.BuildCacheEntryReader
    import org.gradle.caching.BuildCacheEntryWriter
    import org.gradle.caching.BuildCacheKey
    import org.gradle.caching.BuildCacheService
    import org.gradle.caching.internal.CacheableEntity
    import org.gradle.caching.internal.TestBuildCacheKey
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/BuildCacheEntryPacker.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.packaging;
    
    import org.gradle.caching.internal.CacheableEntity;
    import org.gradle.caching.internal.origin.OriginMetadata;
    import org.gradle.caching.internal.origin.OriginReader;
    import org.gradle.caching.internal.origin.OriginWriter;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/BuildCacheConfigurationInternal.java

     * limitations under the License.
     */
    
    package org.gradle.caching.configuration.internal;
    
    import org.gradle.caching.BuildCacheServiceFactory;
    import org.gradle.caching.configuration.BuildCache;
    import org.gradle.caching.configuration.BuildCacheConfiguration;
    import org.gradle.caching.local.DirectoryBuildCache;
    import org.gradle.internal.service.scopes.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top