Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExecutionReasons (0.34 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

            and:
            taskSuccessResult(':tasks').executionReasons
    
            then:
            def e = thrown(UnsupportedMethodException)
            e.message.startsWith("Unsupported method: TaskExecutionResult.getExecutionReasons().")
        }
    
        @TargetGradleVersion('>=3.0 <5.1')
        def "throws UnsupportedMethodException for incremental property when target version does not support it"() {
            when:
            runBuild('tasks')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * An empty list means the work was up-to-date and hasn't been executed.
             */
            ImmutableList<String> getExecutionReasons();
    
            /**
             * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
             */
            Optional<OriginMetadata> getReusedOutputOriginMetadata();
    
    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