Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for getCRuntime (0.14 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/UcrtInstall.java

            super(baseDir, version, name);
        }
    
        /**
         * Returns the C runtime for the given platform.
         */
        public SystemLibraries getCRuntime(final NativePlatformInternal platform) {
            if (platform.getArchitecture().isAmd64()) {
                return new UcrtSystemLibraries("x64");
            }
            if (platform.getArchitecture().isArm64()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppToolChain.java

            }
            WindowsSdk platformSdk = windowsSdk.forPlatform(targetPlatform);
            SystemLibraries cRuntime = ucrt == null ? new EmptySystemLibraries() : ucrt.getCRuntime(targetPlatform);
    
            DefaultVisualCppPlatformToolChain configurableToolChain = instantiator.newInstance(DefaultVisualCppPlatformToolChain.class, targetPlatform, instantiator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInJavaIntegrationTest.groovy

            // Runtime.exec() overloads
            fromString()      | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
            fromStringArray() | "Runtime.getRuntime().exec(command)"                                                              | ""                | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command, new String[] {'FOOBAR=foobar'}, null)", "", "foobar"],
                [fromString(), "Runtime.getRuntime().exec(command, null, file('$pwd'))", pwd, ""],
                [fromString(), "Runtime.getRuntime().exec(command, null, null)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command, new String[] {'FOOBAR=foobar'}, file('$pwd')])", pwd, "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromGroovyString(), "Runtime.getRuntime().exec(command)", "", ""],
                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

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

            fromString()      | "Runtime.getRuntime().exec(command, arrayOf(\"FOOBAR=foobar\"), null)"              | ""                | "foobar"
            fromString()      | "Runtime.getRuntime().exec(command, null, file(\"$pwd\"))"                          | pwd               | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. 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>
     */
    class RuntimeExec2InstrumentationInDynamicGroovyWithoutIndyIntegrationTest extends RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

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

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    /**
     * Test cases for single-argument {@code Runtime.exec}:
     * <pre>
     *     Runtime.getRuntime().exec("echo 123")
     *     Runtime.getRuntime().exec(["echo", "123"])
     * </pre>
     */
    class RuntimeExec1InstrumentationInDynamicGroovyWithoutIndyIntegrationTest extends RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top