Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OVERLAPPING_OUTPUTS (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationResult.java

                case NON_CACHEABLE_OUTPUT:
                    return CachingDisabledReasonCategory.NON_CACHEABLE_TREE_OUTPUT;
                case OVERLAPPING_OUTPUTS:
                    return CachingDisabledReasonCategory.OVERLAPPING_OUTPUTS;
                case VALIDATION_FAILURE:
                    return CachingDisabledReasonCategory.VALIDATION_FAILURE;
                default:
                    throw new AssertionError();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/CachingDisabledReasonCategory.java

         *     <li>an output is not tracked.</li>
         * </ul>
         */
        NON_CACHEABLE_OUTPUT,
    
        /**
         * Work's outputs overlap with other work's.
         */
        OVERLAPPING_OUTPUTS,
    
        /**
         * The work has failed validation.
         */
        VALIDATION_FAILURE,
    
        /**
         * One of the work's inputs is not cacheable.
         *
         * Reasons for non-cacheable inputs:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

                        return org.gradle.operations.execution.CachingDisabledReasonCategory.NON_CACHEABLE_TREE_OUTPUT;
                    case OVERLAPPING_OUTPUTS:
                        return org.gradle.operations.execution.CachingDisabledReasonCategory.OVERLAPPING_OUTPUTS;
                    case VALIDATION_FAILURE:
                        return org.gradle.operations.execution.CachingDisabledReasonCategory.VALIDATION_FAILURE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

    import static org.gradle.operations.execution.CachingDisabledReasonCategory.NO_OUTPUTS_DECLARED
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.OVERLAPPING_OUTPUTS
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.UNKNOWN
    import static org.gradle.operations.execution.CachingDisabledReasonCategory.VALIDATION_FAILURE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top