Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for OVERLAPPING_OUTPUTS (0.38 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. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/CachingDisabledReasonCategory.java

        /**
         * Work's outputs overlap with other work's.
         * <p>
         * As Gradle cannot safely determine which work each output file belongs to it disables caching.
         */
        OVERLAPPING_OUTPUTS,
    
        /**
         * The work has failed validation.
         */
        VALIDATION_FAILURE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolver.java

                String relativePath = relativeFilePathResolver.resolveForDisplay(overlappingOutputs.getOverlappedFilePath());
                return Optional.of(new CachingDisabledReason(CachingDisabledReasonCategory.OVERLAPPING_OUTPUTS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 15 07:20:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

                [cacheableOutputProperty],
                [spec({ true })],
                [],
                overlappingOutputs
            )
    
            then:
            reason.category == CachingDisabledReasonCategory.OVERLAPPING_OUTPUTS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
Back to top