Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getUpToDateMessages (0.17 sec)

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

                    return CachingDisabledReasonCategory.VALIDATION_FAILURE;
                default:
                    throw new AssertionError();
            }
        }
    
        @Override
        public List<String> getUpToDateMessages() {
            return executionReasons;
        }
    
        @Override
        public boolean isIncremental() {
            return incremental;
        }
    
    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/enterprise/enterprise-operations/src/main/java/org/gradle/api/internal/tasks/execution/ExecuteTaskBuildOperationType.java

             * Null if execution did not get so far as to test “up-to-date-ness”.
             * Empty if tested, but task was considered up to date.
             */
            @Nullable
            List<String> getUpToDateMessages();
    
            /**
             * Returns if this task was executed incrementally.
             *
             * See {@code org.gradle.work.InputChanges#isIncremental()}.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TaskOperationMapper.java

                return new DefaultTaskSkippedResult(startTime, endTime, state.getSkipMessage(), incremental);
            } else {
                List<String> executionReasons = result != null ? result.getUpToDateMessages() : null;
                Throwable failure = finishEvent.getFailure();
                if (failure == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top