Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,359 for Executable (0.16 sec)

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

            then:
            failureDescriptionStartsWith("Execution failed for task ':run'.")
            failureHasCause("Toolchain from `executable` property does not match toolchain from `javaLauncher` property")
        }
    
        def "fails on toolchain and executable mismatch (without application plugin)"() {
            def jdkCurrent = Jvm.current()
            def jdkOther = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/sanityCheck.sample.conf

    commands:[{
        executable: gradle
        args: "tasks -DtestToolchain=knownVendor"
    }, {
        executable: gradle
        args: "tasks -DtestToolchain=matchingVendor"
    }, {
        executable: gradle
        args: "tasks -DtestToolchain=matchingImplementation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 246 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CommandLineJavaCompiler.java

            }
    
            String executable = ((CommandLineJavaCompileSpec) spec).getExecutable().toString();
            LOGGER.info("Compiling with Java command line compiler '{}'.", executable);
    
            ExecHandle handle = createCompilerHandle(executable, spec);
            executeCompiler(handle);
    
            return WorkResults.didWork(true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: my-app
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: my-utils
        executable: gradle
        args: tasks -q
    },{
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 222 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/composite-builds/hierarchical-multirepo/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: modules/number-utils
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: modules/string-utils
        executable: gradle
        args: tasks -q
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/developingPlugins/testingPlugins/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: include-plugin-build
        executable: gradle
        args: tasks
    }, {
        execution-subdirectory: url-verifier-plugin
        executable: gradle
        args: tasks
    }, {
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 240 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/java-gradle-plugin-check.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/plugin-check.sample.conf

    commands: [{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/tests/dependencyReports.sample.conf

    commands: [{
        executable: gradle
        args: "-q :listResolvedArtifacts"
        expected-output-file: listResolvedArtifacts.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponents"
        expected-output-file: graphResolvedComponents.out
    },
    {
        executable: gradle
        args: "-q :graphResolvedComponentsAndFiles"
        expected-output-file: graphResolvedComponentsAndFiles.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 389 bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
    
            if (userSupplied) { //then we want to validate strictly
                throw new JavaHomeException(String.format("The supplied javaHome seems to be invalid."
                    + " I cannot find the %s executable. Tried location: %s", command, executable.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top