Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 301 for Hashing (0.18 sec)

  1. subprojects/core/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerFactoryTest.groovy

    import org.gradle.caching.BuildCacheServiceFactory
    import org.gradle.caching.configuration.AbstractBuildCache
    import org.gradle.caching.configuration.internal.DefaultBuildCacheConfiguration
    import org.gradle.caching.configuration.internal.DefaultBuildCacheServiceRegistration
    import org.gradle.caching.internal.FinalizeBuildCacheConfigurationBuildOperationType
    import org.gradle.caching.internal.origin.OriginMetadataFactory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/internal/BuildCacheServices.java

    import org.gradle.caching.internal.packaging.impl.FilePermissionAccess;
    import org.gradle.caching.internal.packaging.impl.GZipBuildCacheEntryPacker;
    import org.gradle.caching.internal.packaging.impl.TarBuildCacheEntryPacker;
    import org.gradle.caching.internal.packaging.impl.TarPackerFileSystemSupport;
    import org.gradle.caching.internal.services.BuildCacheControllerFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

    import org.gradle.caching.internal.controller.service.BuildCacheServicesConfiguration;
    import org.gradle.caching.internal.origin.OriginMetadataFactory;
    import org.gradle.caching.internal.packaging.BuildCacheEntryPacker;
    import org.gradle.caching.local.DirectoryBuildCache;
    import org.gradle.caching.local.internal.DirectoryBuildCacheService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCacheService.java

     */
    
    package org.gradle.caching.local.internal;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.cache.PersistentCache;
    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.caching.internal.BuildCacheKeyInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 14:32:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

     */
    
    package org.gradle.caching.internal.controller
    
    import groovy.transform.Immutable
    import org.gradle.api.internal.cache.StringInterner
    import org.gradle.caching.internal.CacheableEntity
    import org.gradle.caching.internal.controller.operations.PackOperationResult
    import org.gradle.caching.internal.controller.operations.UnpackOperationResult
    import org.gradle.caching.internal.origin.OriginMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/StatefulNextGenBuildCacheService.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal;
    
    import org.apache.commons.io.output.UnsynchronizedByteArrayOutputStream;
    import org.gradle.caching.BuildCacheEntryWriter;
    import org.gradle.caching.BuildCacheException;
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.BuildCacheService;
    
    import java.io.Closeable;
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheServiceServices.java

     * limitations under the License.
     */
    
    package org.gradle.caching.http.internal;
    
    import org.gradle.caching.configuration.internal.BuildCacheServiceRegistration;
    import org.gradle.caching.configuration.internal.DefaultBuildCacheServiceRegistration;
    import org.gradle.caching.http.HttpBuildCache;
    import org.gradle.internal.service.ServiceRegistration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top