Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,320 for toolchain2 (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.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 ({languageVersion=11, vendor=any, implementation=vendor-specific}) " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/global.xml

    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>basic</type>
         <configuration>
           <global>true</global>
         </configuration>
      </toolchain>
      <toolchain>
         <type>rare</type>
         <configuration>
           <global>true</global>
         </configuration>
      </toolchain>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Oct 13 14:10:22 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. maven-toolchain-builder/src/test/resources/org/apache/maven/toolchain/user.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <toolchains>
      <toolchain>
         <type>basic</type>
         <configuration>
           <user>true</user>
         </configuration>
      </toolchain>
      <toolchain>
         <type>rare</type>
         <configuration>
           <user>true</user>
         </configuration>
      </toolchain>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Oct 13 14:10:22 UTC 2021
    - 1K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchainsBuilder.java

     * under the License.
     */
    package org.apache.maven.toolchain;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.io.InputStream;
    import java.nio.file.Files;
    
    import org.apache.maven.toolchain.model.PersistedToolchains;
    import org.apache.maven.toolchain.v4.MavenToolchainsStaxReader;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            then:
            failureDescriptionStartsWith("Execution failed for task ':javadoc'.")
            failureHasCause("Toolchain from `executable` property does not match toolchain from `javadocTool` property")
        }
    
        def "fails on toolchain and executable mismatch (without java-base plugin)"() {
            def jdkCurrent = Jvm.current()
            def jdkOther = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

        def "can discover tool chain in environment"() {
            given:
            toolChain.initialiseEnvironment()
    
            and:
            buildFile << """
    apply plugin: 'cpp'
    model {
        toolChains {
            tc(${toolChain.implementationClass}) {
                // For software model builds, windows defaults to 32-bit target, so if we discard the toolchain init script,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/dist/buildtool.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Build toolchain using Go bootstrap version.
    //
    // The general strategy is to copy the source files we need into
    // a new GOPATH workspace, adjust import paths appropriately,
    // invoke the Go bootstrap toolchains go command to build those sources,
    // and then copy the binaries back.
    
    package main
    
    import (
    	"fmt"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/settings.gradle

    plugins {
        id 'org.gradle.toolchains.foojay-resolver' version '0.8.0'
    }
    
    import java.util.Optional
    import javax.inject.Inject
    
    apply plugin: MadeUpPlugin
    
    // tag::toolchain-management[]
    toolchainManagement {
        jvm { // <1>
            javaRepositories {
                repository('foojay') { // <2>
                    resolverClass = org.gradle.toolchains.foojay.FoojayToolchainResolver
                }
                repository('made_up') { // <3>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-management/kotlin/settings.gradle.kts

    plugins {
        id("org.gradle.toolchains.foojay-resolver") version("0.8.0")
    }
    
    import org.gradle.api.Plugin
    import org.gradle.api.initialization.Settings
    import org.gradle.jvm.toolchain.JavaToolchainResolver
    import org.gradle.jvm.toolchain.JavaToolchainResolverRegistry
    import java.net.URI
    import java.util.Optional
    import javax.inject.Inject
    
    apply<MadeUpPlugin>()
    
    // tag::toolchain-management[]
    toolchainManagement {
        jvm { // <1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.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