Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PreviousSuccessChanges (0.16 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PreviousSuccessChanges.java

     */
    
    package org.gradle.internal.execution.history.changes;
    
    public class PreviousSuccessChanges implements ChangeContainer {
        private static final Change PREVIOUS_FAILURE = new DescriptiveChange("Task has failed previously.");
    
        private final boolean successful;
    
        public PreviousSuccessChanges(boolean successful) {
            this.successful = successful;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

            BeforeExecutionState thisExecution,
            IncrementalInputProperties incrementalInputProperties
        ) {
            // Capture changes in execution outcome
            ChangeContainer previousSuccessState = new PreviousSuccessChanges(
                lastExecution.isSuccessful());
    
            // Capture changes to implementation
    
            // After validation, the current implementations and previous implementations can't be unknown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top