Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,075 for toolChain (0.19 sec)

  1. src/cmd/go/testdata/script/gotoolchain_issue66175.txt

    [!GOOS:plan9] env PATH=
    
    # check for invalid toolchain in go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.22
    ! go version
    stderr 'go: invalid toolchain: go1.22 is a language version but not a toolchain version \(go1.22.x\)'
    
    rm go.mod
    go mod init m
    go mod edit -go=1.14 -toolchain=go1.21
    ! go version
    stderr 'go: invalid toolchain: go1.21 is a language version but not a toolchain version \(go1.21.x\)'
    
    rm go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 21:32:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainManager.java

         * @return the toolchain selected by <code>maven-toolchains-plugin</code>
         */
        Toolchain getToolchainFromBuildContext(String type, MavenSession context);
    
        /**
         * Select all toolchains available in user settings matching the type and requirements,
         * independently from <code>maven-toolchains-plugin</code>.
         *
         * @param session the Maven session, must not be {@code null}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain;
    
    import com.google.common.base.MoreObjects;
    import org.gradle.api.Describable;
    import org.gradle.api.provider.Property;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Requirements for selecting a Java toolchain.
     * <p>
     * A toolchain is a JRE/JDK used by the tasks of a build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

            assertFalse(toolchain.matchesRequirements(Collections.singletonMap("name", "John Doe")));
            verify(logger).debug("Toolchain {} is missing required property: {}", toolchain, "name");
        }
    
        @Test
        void testNonMatchingRequirementProperty() {
            ToolchainModel model = new ToolchainModel();
            model.setType("TYPE");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.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: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/clang/ClangToolChain.java

        protected void configureDefaultTools(DefaultGccPlatformToolChain toolChain) {
            toolChain.getLinker().setExecutable("clang++");
            toolChain.getcCompiler().setExecutable("clang");
            toolChain.getCppCompiler().setExecutable("clang++");
            toolChain.getObjcCompiler().setExecutable("clang");
            toolChain.getObjcppCompiler().setExecutable("clang++");
            toolChain.getAssembler().setExecutable("clang");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AbstractJavaCompileSpecFactory.java

            this.compileOptions = compileOptions;
            this.toolchain = toolchain;
        }
    
        @Override
        public T create() {
            if (toolchain != null) {
                return chooseSpecForToolchain();
            }
    
            if (compileOptions.isFork()) {
                return chooseSpecFromCompileOptions(Jvm.current().getJavaHome());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_toolchain.txt

    env TESTGO_VERSION_SWITCH=switch
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    grep 'toolchain go1.22.1' go.mod
    
    go get toolchain@none
    stderr '^go: removed toolchain go1.22.1$'
    ! stderr '(added|removed|upgraded|downgraded) go'
    ! grep toolchain go.mod
    
    go get toolchain@go1.22.1
    stderr '^go: added toolchain go1.22.1$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 22:42:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            then:
            failureDescriptionStartsWith("Execution failed for task ':run'.")
            failureHasCause("Toolchain from `executable` property does not match toolchain from `javaLauncher` property")
        }
    
        def "fails on toolchain and executable mismatch (without application plugin)"() {
            def jdkCurrent = Jvm.current()
            def jdkOther = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top