Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for ExecResult (0.12 sec)

  1. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

    import org.gradle.api.JavaVersion
    import org.gradle.api.internal.file.TestFiles
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.jvm.toolchain.internal.InstallationLocation
    import org.gradle.process.ExecResult
    import org.gradle.process.internal.ExecHandle
    import org.gradle.process.internal.ExecHandleBuilder
    import org.gradle.process.internal.ExecHandleFactory
    import org.gradle.test.fixtures.file.TestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

            settingsFile.createFile()
        }
    
        def cleanup() {
            if (requireIsolatedTestKitDir) {
                testKitDaemons().killAll()
            }
        }
    
        ExecutionResult execResult(BuildResult buildResult) {
            OutputScrapingExecutionResult.from(buildResult.output, buildResult.output)
        }
    
        ExecutionFailure execFailure(BuildResult buildResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return the result of the execution
         */
        ExecResult javaexec(Action<? super JavaExecSpec> action);
    
        /**
         * Executes an external command. The closure configures a {@link org.gradle.process.ExecSpec}.
         *
         * @param closure The closure for configuring the execution.
         * @return the result of the execution
         */
        ExecResult exec(@DelegatesTo(ExecSpec.class) Closure closure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ==== JavaExec API Cleanup
    
    The deprecated `main` property of the `JavaExec` task type has been removed.
    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
    
    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