Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,075 for toolChain (0.25 sec)

  1. 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)
  2. 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)
  3. maven-toolchain-model/src/site/apt/index.apt

     Hervé Boutemy
     -----
     2006-11-04
     -----
    
    Maven Toolchain Model
    
     This is the model for Maven toolchain in <<<org.apache.maven.toolchain>>> package,
     delegating content to {{{../api/maven-api-toolchain/index.html}Maven 4 API immutable toolchain}}. All the effective model
     building logic from multiple toolchains files is done in {{{../maven-toolchain-builder/}Maven Toolchain Builder}}.
    
     The following are generated from this model:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 03 21:08:35 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelector.java

    import org.gradle.nativeplatform.toolchain.internal.NativeLanguage;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal;
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainRegistryInternal;
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    import org.gradle.nativeplatform.toolchain.internal.ToolType;
    import org.gradle.util.internal.VersionNumber;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManager.java

                            ToolchainPrivate toolchain = fact.createToolchain(model);
                            if (requirements == null || toolchain.matchesRequirements(requirements)) {
                                toolchains.add(toolchain);
                            }
                        } catch (MisconfiguredToolchainException ex) {
                            logger.error("Misconfigured toolchain.", ex);
                        }
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java

        /**
         * Builds the toolchains model from the configured toolchain files.
         *
         * @param userToolchainsFile The path to the toolchains file, may be <code>null</code> to disable parsing.
         * @return The toolchains model or <code>null</code> if no toolchain file was configured or the configured file does
         *         not exist.
         * @throws MisconfiguredToolchainException If the toolchain file exists but cannot be parsed.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

        def helloWorldApp = new CHelloWorldApp()
    
        def setup() {
            buildFile << """
    apply plugin: 'c'
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello', linkage: 'static'
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/toolchains/DefaultToolChainSelectorTest.groovy

    import org.gradle.nativeplatform.platform.internal.OperatingSystemInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeLanguage
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal
    import org.gradle.nativeplatform.toolchain.internal.NativeToolChainRegistryInternal
    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider
    import org.gradle.util.UsesNativeServices
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top