Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOperationType (0.28 sec)

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

         *
         * @since 8.6
         */
        Throwable getFailure();
    
        /**
         * The type of operation that had the failure.
         *
         * @since 8.6
         */
        BuildCacheOperationType getOperationType();
    
        /**
         * The type of build cache operation.
         *
         * @since 8.6
         */
        enum BuildCacheOperationType {
            /**
             * @since 8.6
             */
            LOAD,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:53:25 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/OpFiringRemoteBuildCacheServiceHandle.java

                return key.getHashCode();
            }
    
            @Override
            public Throwable getFailure() {
                return e;
            }
    
            @Override
            public BuildCacheOperationType getOperationType() {
                return operationType;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top