Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 297 for toolChain (0.17 sec)

  1. 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)
  2. 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)
  3. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadComplexProjectSoakTest.groovy

    import static org.gradle.jvm.toolchain.JavaToolchainDownloadSoakTest.JAVA_VERSION
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadSoakTest.TOOLCHAIN_WITH_VERSION
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.applyToolchainResolverPlugin
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.multiUrlResolverCode
    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.singleUrlResolverCode
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/ToolchainsParallelActionExecutionCrossVersionSpec.groovy

            def root = rootCause(e)
            root.message.startsWith(targetVersion >= GradleVersion.version("8.8") ?
                'No matching toolchain could be found in the locally installed toolchains' :
                'No locally installed toolchains match')
        }
    
        def rootCause(Exception e) {
            def ex = e
            while (ex.cause != null) {
                ex = ex.cause
            }
            ex
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 05:31:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/internal/services/ToolchainsJvmServices.java

    import org.gradle.jvm.toolchain.internal.IntellijInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.JabbaInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.JavaToolchainQueryService;
    import org.gradle.jvm.toolchain.internal.JdkCacheDirectory;
    import org.gradle.jvm.toolchain.internal.LinuxInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.MavenToolchainsInstallationSupplier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. maven-toolchain-builder/pom.xml

                <includes>
                  <include>org.apache.maven.toolchain.building</include>
                  <include>org.apache.maven.toolchain.io</include>
                  <include>org.apache.maven.toolchain.io.xpp3</include>
                  <include>org.apache.maven.toolchain.merge</include>
                </includes>
                <excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/toolchain/select.go

    			gover.Startup.AutoToolchain = toolchain
    		} else {
    			if toolchain != "" {
    				// Accept toolchain only if it is > our min.
    				// (If it is equal, then min satisfies it anyway: that can matter if min
    				// has a suffix like "go1.21.1-foo" and toolchain is "go1.21.1".)
    				toolVers := gover.FromToolchain(toolchain)
    				if toolVers == "" || (!strings.HasPrefix(toolchain, "go") && !strings.Contains(toolchain, "-go")) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

                    if (LOGGER.isDebugEnabled()) {
                        LOGGER.debug("Java Toolchain auto-detection failed to parse Maven Toolchains located at {}", toolchainFile, e);
                    } else {
                        LOGGER.info("Java Toolchain auto-detection failed to parse Maven Toolchains located at {}. {}", toolchainFile, e.getMessage());
                    }
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/toolchain/switch.go

    // If Switch decides to switch toolchains but cannot identify a toolchain to use.
    // it prints the errors along with one more about not being able to find the toolchain
    // and returns.
    //
    // Otherwise, Switch prints an informational message giving a reason for the
    // switch and the toolchain being invoked and then switches toolchains.
    // This operation never returns.
    func (s *Switcher) Switch(ctx context.Context) {
    	if !s.NeedSwitch() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. testing/soak/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSoakTest.groovy

            when: "build has no toolchain repositories configured"
            settingsFile.text = ''
    
            then: "build runs again, uses previously auto-provisioned toolchain and warns about toolchain repositories not being configured"
            executer
                    .expectDocumentedDeprecationWarning("Using a toolchain installed via auto-provisioning, but having no toolchain repositories configured. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 16:13:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top