Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for toolChain (0.13 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

    package org.apache.maven.api;
    
    import java.util.Map;
    
    import org.apache.maven.api.annotations.Experimental;
    
    /**
     * Toolchain interface.
     *
     * @since 4.0.0
     */
    @Experimental
    public interface Toolchain {
        /**
         * Gets the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. doc/next/5-toolchain.md

    Cherry Mui <******@****.***> 1718118158 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiAuthenticationIntegrationTest.groovy

                    .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                        "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:25 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    [!GOOS:plan9] env PATH=
    
    # check for invalid toolchain in go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.22
    ! go version
    stderr 'go: invalid toolchain: go1.22 is a language version but not a toolchain version \(go1.22.x\)'
    
    rm go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.21
    ! go version
    stderr 'go: invalid toolchain: go1.21 is a language version but not a toolchain version \(go1.21.x\)'
    
    rm go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AbstractJavaCompileSpecFactory.java

            this.compileOptions = compileOptions;
            this.toolchain = toolchain;
        }
    
        @Override
        public T create() {
            if (toolchain != null) {
                return chooseSpecForToolchain();
            }
    
            if (compileOptions.isFork()) {
                return chooseSpecFromCompileOptions(Jvm.current().getJavaHome());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. 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)
  7. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

    import static org.gradle.jvm.toolchain.JavaToolchainDownloadSoakTest.JAVA_VERSION
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadSoakTest.TOOLCHAIN_WITH_VERSION
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.applyToolchainResolverPlugin
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.multiUrlResolverCode
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.singleUrlResolverCode
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

            def root = rootCause(e)
            root.message.startsWith(targetVersion >= GradleVersion.version("8.8") ?
                'No matching toolchain could be found in the locally installed toolchains' :
                'No locally installed toolchains match')
        }
    
        def rootCause(Exception e) {
            def ex = e
            while (ex.cause != null) {
                ex = ex.cause
            }
            ex
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

    import org.gradle.jvm.toolchain.internal.IntellijInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.JabbaInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.JavaToolchainQueryService;
    import org.gradle.jvm.toolchain.internal.JdkCacheDirectory;
    import org.gradle.jvm.toolchain.internal.LinuxInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.MavenToolchainsInstallationSupplier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. maven-toolchain-builder/pom.xml

                <includes>
                  <include>org.apache.maven.toolchain.building</include>
                  <include>org.apache.maven.toolchain.io</include>
                  <include>org.apache.maven.toolchain.io.xpp3</include>
                  <include>org.apache.maven.toolchain.merge</include>
                </includes>
                <excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top