Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for BuildCacheRemoteLoadBuildOperationType (0.74 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteLoadBuildOperationType.java

     *
     * A load operation may HIT or MISS.
     * It may also fail.
     * Load operation results and failures are mutually exclusive.
     */
    public final class BuildCacheRemoteLoadBuildOperationType implements BuildOperationType<BuildCacheRemoteLoadBuildOperationType.Details, BuildCacheRemoteLoadBuildOperationType.Result> {
    
        public interface Details {
    
            /**
             * The cache key.
             */
            String getCacheKey();
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/operations/LoadOperationMissResult.java

     */
    
    package org.gradle.caching.internal.controller.operations;
    
    import org.gradle.caching.internal.operations.BuildCacheRemoteLoadBuildOperationType;
    
    public class LoadOperationMissResult implements BuildCacheRemoteLoadBuildOperationType.Result {
    
        public static final BuildCacheRemoteLoadBuildOperationType.Result INSTANCE = new LoadOperationMissResult();
    
        private LoadOperationMissResult() {
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteDisabledDueToFailureProgressDetails
    import org.gradle.caching.internal.operations.BuildCacheRemoteLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.BuildCacheOperationFixtures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/operations/LoadOperationDetails.java

     */
    
    package org.gradle.caching.internal.controller.operations;
    
    import org.gradle.caching.BuildCacheKey;
    import org.gradle.caching.internal.operations.BuildCacheRemoteLoadBuildOperationType;
    
    public class LoadOperationDetails implements BuildCacheRemoteLoadBuildOperationType.Details {
    
        private final BuildCacheKey buildCacheKey;
    
        public LoadOperationDetails(BuildCacheKey buildCacheKey) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/operations/LoadOperationHitResult.java

     * limitations under the License.
     */
    
    package org.gradle.caching.internal.controller.operations;
    
    import org.gradle.caching.internal.operations.BuildCacheRemoteLoadBuildOperationType;
    
    public class LoadOperationHitResult implements BuildCacheRemoteLoadBuildOperationType.Result {
    
        private final long size;
    
        public LoadOperationHitResult(long size) {
            this.size = size;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top