Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 440 for toolChain (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain.go

    // license that can be found in the LICENSE file.
    
    package versions
    
    // toolchain is maximum version (<1.22) that the go toolchain used
    // to build the current tool is known to support.
    //
    // When a tool is built with >=1.22, the value of toolchain is unused.
    //
    // x/tools does not support building with go <1.18. So we take this
    // as the minimum possible maximum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  2. 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)
  3. doc/initial/5-toolchain.md

    Jonathan Amsterdam <******@****.***> 1705624488 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 18:07:49 UTC 2024
    - 74 bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    This example only includes toolchains whose `java.vendor` property contains the given match string.
    The matching is done in a case-insensitive manner.
    
    ====
    include::sample[dir="snippets/java/toolchain-filters/kotlin/",files="build.gradle.kts[tags=toolchain-matching-vendor]"]
    include::sample[dir="snippets/java/toolchain-filters/groovy/",files="build.gradle[tags=toolchain-matching-vendor]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

      xml.namespace="http://maven.apache.org/TOOLCHAINS/${version}"
      xml.schemaLocation="http://maven.apache.org/xsd/toolchains-${version}.xsd">
      <id>toolchains</id>
      <name>MavenToolchains</name>
      <description><![CDATA[
        This is a reference for the Maven Toolchains descriptor.
        <p>The default location for the toolchains file is {@code ~/.m2/toolchains.xml}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

                .runWithFailure()
    
            then:
            failure.assertHasCause("No locally installed toolchains match and toolchain auto-provisioning is not enabled.")
                .assertHasResolutions(
                    DocumentationUtils.normalizeDocumentationLink("Learn more about toolchain auto-detection at https://docs.gradle.org/current/userguide/toolchains.html#sec:auto_detection."),
                    STACKTRACE_MESSAGE,
                    INFO_DEBUG,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

    import org.gradle.jvm.toolchain.JavaToolchainDownload;
    import org.gradle.jvm.toolchain.JavaToolchainResolver;
    import org.gradle.jvm.toolchain.JavaToolchainResolverRegistry;
    import org.gradle.jvm.toolchain.JavaToolchainSpec;
    import org.gradle.jvm.toolchain.internal.DefaultJavaToolchainRequest;
    import org.gradle.jvm.toolchain.internal.JavaToolchainResolverRegistryInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultToolchainManager.java

            return new ToolchainWrapper(toolchain);
        }
    
        private static class ToolchainWrapper implements Toolchain {
            private final org.apache.maven.toolchain.Toolchain toolchain;
    
            ToolchainWrapper(org.apache.maven.toolchain.Toolchain toolchain) {
                this.toolchain = toolchain;
            }
    
            @Override
            public String getType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top