Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getAfterExecutionOutputState (0.2 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             */
            Optional<OriginMetadata> getReusedOutputOriginMetadata();
    
            /**
             * State after execution.
             */
            @VisibleForTesting
            Optional<ExecutionOutputState> getAfterExecutionOutputState();
        }
    
        interface IdentityCacheResult<T> {
    
            Try<T> getResult();
    
            /**
             * The origin metadata of the result.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BuildCacheStepTest.groovy

            then:
            interaction { outputStored { throw failure } }
    
    
            then:
            1 * delegateResult.getDuration() >> duration
            1 * delegateResult.getAfterExecutionOutputState() >> Optional.of(afterExecutionOutputState)
    
            then:
            0 * _
        }
    
        def "executes and doesn't store when caching is disabled"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                    @SuppressWarnings("OptionalGetWithoutIsPresent")
                    ExecutionOutputState executionOutputState = delegateResult.getAfterExecutionOutputState().get();
                    ImmutableListMultimap<String, HashCode> outputHashes = calculateOutputHashes(executionOutputState.getOutputFilesProducedByWork());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
Back to top