Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,171 for toolChain (0.17 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.plugins.GppCompilerPlugin.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.nativeplatform.toolchain.plugins.MicrosoftVisualCppPlugin.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/script/gotoolchain_local.txt

    # GOTOOLCHAIN=auto uses go line if newer than local toolchain.
    env GOTOOLCHAIN=auto
    go mod init m
    go mod edit -go=1.700 -toolchain=none
    go version
    stdout 1.700
    
    go mod edit -go=1.300 -toolchain=none
    go version
    stdout 1.500 # local toolchain is newer
    
    go mod edit -go=1.700 -toolchain=go1.300
    go version
    stdout go1.700 # toolchain too old, ignored
    
    go mod edit -go=1.300 -toolchain=default
    go version
    stdout go1.500
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

            private final AvailableToolChains.ToolChainCandidate toolChain;
    
            public ToolChainExecution(AvailableToolChains.ToolChainCandidate toolChain) {
                this.toolChain = toolChain;
            }
    
            @Override
            protected String getDisplayName() {
                return toolChain.getDisplayName();
            }
    
            @Override
            public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_toolchain.txt

    # go get toolchain@patch should use the latest patch release
    go get toolchain@go1.22.1
    go get toolchain@patch
    stderr '^go: added toolchain go1.22.9$'
    grep 'go 1.22.1' go.mod
    grep 'toolchain go1.22.9' go.mod
    go get go@1.22.9 toolchain@none
    grep 'go 1.22.9' go.mod
    ! grep 'toolchain go1.22.9' go.mod
    
    # go get toolchain@go1.24 does NOT find the release candidate
    ! go get toolchain@go1.24
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    // limitations under the License.
    
    [[toolchain_plugins]]
    = Toolchain Resolver Plugins
    
    In Gradle version 7.6 and above, Gradle provides a way to define Java toolchain auto-provisioning logic in plugins.
    This page explains how to author a toolchain resolver plugin.
    For details on how toolchain auto-provisioning interacts with these plugins, see <<toolchains.adoc#sub:download_repositories,Toolchains>>.
    
    == Provide a download URI
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top