Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UP_TO_DATE (0.12 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

            ':cityquiz:mergeLibDexDebug': FROM_CACHE,
            ':cityquiz:mergeProjectDexDebug': FROM_CACHE,
            ':cityquiz:packageDebug': SUCCESS,
            ':cityquiz:preBuild': UP_TO_DATE,
            ':cityquiz:preDebugBuild': UP_TO_DATE,
            ':cityquiz:processApplicationManifestDebugForBundle': SUCCESS,
            ':cityquiz:processDebugJavaRes': SUCCESS,
            ':cityquiz:processDebugMainManifest': FROM_CACHE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/SkipUpToDateStepTest.groovy

    import java.time.Duration
    
    import static org.gradle.internal.execution.ExecutionEngine.Execution
    import static org.gradle.internal.execution.ExecutionEngine.ExecutionOutcome.UP_TO_DATE
    
    class SkipUpToDateStepTest extends StepSpec<IncrementalChangesContext> {
        def step = new SkipUpToDateStep<>(delegate)
        def changes = Mock(ExecutionStateChanges)
        def delegateResult = Stub(AfterExecutionResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.Formatter;
    import java.util.List;
    
    import static org.gradle.internal.execution.ExecutionEngine.ExecutionOutcome.UP_TO_DATE;
    
    public class SkipUpToDateStep<C extends IncrementalChangesContext> implements Step<C, UpToDateResult> {
        private static final Logger LOGGER = LoggerFactory.getLogger(SkipUpToDateStep.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * The outputs haven't been changed, because the work is already up-to-date
             * (i.e. its inputs and outputs match that of the previous execution in the
             * same workspace).
             */
            UP_TO_DATE,
    
            /**
             * The outputs of the work have been loaded from the build cache.
             */
            FROM_CACHE,
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top