Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for javaexec (0.24 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            where:
            method                    | taskName
            'JavaExec task'           | 'run'
            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
        }
    
        @UnsupportedWithConfigurationCache(iterationMatchers = ".* project.javaexec")
        def "does not suggest long command line failures when execution fails with #method"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithExecutableJarIntegrationTest.groovy

            where:
            method                    | taskName
            'JavaExec task'           | 'runWithTask'
            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1346")
        @UnsupportedWithConfigurationCache(iterationMatchers = ".* project\\.javaexec")
        def "helpful message when jar is not executable with #method"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            "exec"     | "errorOutput"    | "System.err" | "System.err"
            "javaExec" | "standardOutput" | "System.out" | "System.out"
            "javaExec" | "standardOutput" | "System.out" | "System.err"
            "javaExec" | "errorOutput"    | "System.err" | "System.out"
            "javaExec" | "errorOutput"    | "System.err" | "System.err"
        }
    
        def "#task task can redirect System_in into standardInput"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

                apply plugin: 'java'
    
                @CacheableTask
                class MyJavaExec extends JavaExec {
                    @Input
                    String getInput() { "input" }
    
                    @OutputFile
                    File getOutputFile() { new java.io.File('${fileToPath(file('outputFile'))}') }
                }
    
                task exec(type: MyJavaExec) {
                    classpath = sourceSets.main.output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInBuildScriptIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.javaexec
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.processBuilder
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.runtimeExec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                    }
                }
            """
            file("plugin/src/main/groovy/CustomJavaExec.groovy") << """
                import org.gradle.api.tasks.JavaExec
    
                class CustomJavaExec extends CustomBaseJavaExec {
    
                    @Override
                    JavaExec setArgs(List<String> args) {
                        println "args set: \$args"
                        super.setArgs(args)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

            exec("getProject()").java            | "Unknown location" // TODO(mlopatkin): Fix location there
            javaexec("getProject()").java        | "Unknown location"
            exec("getExecOperations()").java     | "Unknown location"
            javaexec("getExecOperations()").java | "Unknown location"
            processBuilder().java                | "Class `SneakyTask`"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginIntegrationTest.groovy

            }
    
            where:
            snippetsFactory                      | _
            exec("project").java                 | _
            javaexec("project").java             | _
            exec("getExecOperations()").java     | _
            javaexec("getExecOperations()").java | _
            processBuilder().java                | _
            stringArrayExecute().java            | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.JavaExec.getCommandLine()> does not have raw return type assignable to org.gradle.api.provider.Provider in (JavaExec.java:0)
    Method <org.gradle.api.tasks.JavaExec.getDebug()> does not have raw return type assignable to org.gradle.api.provider.Property in (JavaExec.java:0)
    Method <org.gradle.api.tasks.JavaExec.getDebugOptions()> does not have raw return type assignable to org.gradle.api.provider.Provider in (JavaExec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInInitScriptIntegrationTest.groovy

            exec().groovy               | "exec.init.gradle"
            javaexec().groovy           | "exec.init.gradle"
            processBuilder().groovy     | "exec.init.gradle"
            stringArrayExecute().groovy | "exec.init.gradle"
            runtimeExec().groovy        | "exec.init.gradle"
            exec().kotlin               | "exec.init.gradle.kts"
            javaexec().kotlin           | "exec.init.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top