Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Exec (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Runtime.exec() overloads
                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromGroovyString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
                [fromStringArray(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'})", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInKotlinIntegrationTest.groovy

            val e = RuntimeExec()
            e.exec("some string")
            e.exec("some string", arrayOf("string"))
            e.exec("some string", arrayOf("string"), file("test"))
            e.exec(arrayOf("some", "string"))
            e.exec(arrayOf("some", "string"), arrayOf("string"))
            e.exec(arrayOf("some", "string"), arrayOf("string"), file("test"))
    
            val s = ProcessBuilderStart()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

                def e = new RuntimeExec()
                e.exec("some string")
                e.exec("some string", ["array"] as String[])
                e.exec("some string", ["array"] as String[], file("test"))
                e.exec(["some", "string"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[])
                e.exec(["some", "string"] as String[], ["array"] as String[], file("test"))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

            }
    
            where:
            snippetsFactory                      | location
            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"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/UnrelatedMethodInstrumentationInDynamicGroovyIntegrationTest.groovy

                    def e = new RuntimeExec()
                    e.exec("some string")
                    e.exec("some string", ["array"] as String[])
                    e.exec("some string", ["array"] as String[], file("test"))
                    e.exec(["some", "string"] as String[])
                    e.exec(["some", "string"] as String[], ["array"] as String[])
                    e.exec(["some", "string"] as String[], ["array"] as String[], file("test"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

                    RuntimeExec e = new RuntimeExec();
                    e.exec("some string");
                    e.exec("some string", envpArray);
                    e.exec("some string", envpArray, project.file("test"));
                    e.exec(commandArray);
                    e.exec(commandArray, envpArray);
                    e.exec(commandArray, envpArray, project.file("test"));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithoutIndyIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    /**
     * Test cases for two-argument {@code Runtime.exec}:
     * <pre>
     *     Runtime.getRuntime().exec("echo 123", env)
     *     Runtime.getRuntime().exec(["echo", "123"], env)
     * </pre>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

                    public Process exec(String command) { return null; }
                    public Process exec(String command, String[] envp) { return null; }
                    public Process exec(String command, String[] envp, File file) { return null; }
                    public Process exec(String command, List<?> envp, File file) { return null; }
                    public Process exec(String[] command) { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheStandardStreamsIntegrationTest.groovy

            where:
            task       | taskProperty     | sourceStream | targetStream
            "exec"     | "standardOutput" | "System.out" | "System.out"
            "exec"     | "standardOutput" | "System.out" | "System.err"
            "exec"     | "errorOutput"    | "System.err" | "System.out"
            "exec"     | "errorOutput"    | "System.err" | "System.err"
            "javaExec" | "standardOutput" | "System.out" | "System.out"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

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