Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ExecutionResult (0.3 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            });
        }
    
        /**
         * Allows a subclass to expose additional APIs for running builds.
         */
        protected ExecutionResult run(Supplier<ExecutionResult> action) {
            beforeBuildSetup();
            try {
                ExecutionResult result = action.get();
                afterBuildCleanup(result);
                return result;
            } finally {
                finished();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `mainClass` property instead.
    
    ==== AbstractExecTask API Cleanup
    
    The deprecated `execResult` getter property of the `AbstractExecTask` task type has been removed.
    Use the `executionResult` getter property instead.
    
    ==== AbstractTestTask API Cleanup
    
    The deprecated `binResultsDir` property of the `AbstractTestTask` task type has been removed.
    Use the `binaryResultsDirectory` property instead.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top