Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,320 for toolChain (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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