Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 178 for Executable (0.21 sec)

  1. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

            JavaForkOptions forkOptions = forkOptionsFactory.newJavaForkOptions();
            task.copyTo(forkOptions);
            String executable = forkOptions.getExecutable();
            return new DefaultTestTaskForkOptions(
                forkOptions.getWorkingDir(),
                executable,
                detectJavaVersion(executable),
                javaModuleDetector.inferClasspath(testIsModule, task.getClasspath()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                }
            }
    
            then:
            NativeExecutableSpec executable = single(components.values()) as NativeExecutableSpec
            NativeExecutableBinarySpec executableBinary = single(binaries) as NativeExecutableBinarySpec
            with(executableBinary) {
                name == 'executable'
                component == executable
                toolChain.name == "tc"
                targetPlatform.name == "platform"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

         * Gets the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name
         * @return file representing the tool executable, or null if the tool cannot be found
         */
        String findTool(String toolName);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/tests/propertyConventionCallsites.sample.conf

    # tag::cli[]
    # gradle show
    # end::cli[]
    executable: gradle
    args: hello
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:09 UTC 2024
    - 125 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.sample.conf

    executable: gradle
    args: dependencies --configuration testRuntimeClasspath
    expected-output-file: checkTaskOutput.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 19:28:13 UTC 2024
    - 177 bytes
    - Viewed (0)
  6. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmVersionDetector.java

            return getVersionFromJavaHome(jvm.getJavaHome());
        }
    
        @Override
        public int getJavaVersionMajor(String javaCommand) {
            File executable = new File(javaCommand);
            File parentFolder = executable.getParentFile();
            if(parentFolder == null || !parentFolder.exists()) {
                Exception cause = new NoSuchFileException(javaCommand);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/dependenciesBlock/tests/dependenciesBlock.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:36:36 UTC 2024
    - 78 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/daemon-jvm/customized-task/tests/daemonJvmCustomized.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 17:16:48 UTC 2024
    - 41 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/providers/collections/tests/collections.conf

    # tag::cli[]
    # gradle build
    # end::cli[]
    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 72 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/configureObject/tests/configureObject.sample.conf

    executable: gradle
    args: greet
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 09:57:48 UTC 2024
    - 88 bytes
    - Viewed (0)
Back to top