Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SimpleBuildCacheKey (0.41 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.caching.internal;
    
    import org.gradle.internal.hash.HashCode;
    
    public class SimpleBuildCacheKey implements BuildCacheKeyInternal {
        private final HashCode hashCode;
    
        public SimpleBuildCacheKey(HashCode hashCode) {
            this.hashCode = hashCode;
        }
    
        @Override
        public HashCode getHashCodeInternal() {
            return hashCode;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

    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;
    import org.gradle.caching.internal.controller.service.BuildCacheLoadResult;
    import org.gradle.caching.local.internal.DirectoryBuildCache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultBuildCacheKey.java

        }
    
        @Override
        public byte[] toByteArray() {
            return hashCode.toByteArray();
        }
    
        @Deprecated
        @Override
        public String getDisplayName() {
            // TODO Switch to SimpleBuildCacheKey once this method is removed
            DeprecationLogger.deprecateMethod(BuildCacheKey.class, "getDisplayName()")
                .replaceWith("getHashCode()")
                .willBeRemovedInGradle9()
                .undocumented()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:58 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top