Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 439 for toolChain (0.18 sec)

  1. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

    import org.gradle.jvm.toolchain.internal.AutoInstalledInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.CurrentInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.EnvironmentVariableListInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    import org.gradle.jvm.toolchain.internal.InstallationSupplier;
    import org.gradle.jvm.toolchain.internal.JdkCacheDirectory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-configuration/src/integTest/groovy/org/gradle/interal/buildconfiguration/tasks/UpdateDaemonJvmIntegrationTest.groovy

            then:
            assertJvmCriteria(JavaVersion.VERSION_17, "IBM", "J9")
        }
    
        @NotYetImplemented
        def "When execute updateDaemonJvm with unexpected --toolchain-vendor option Then fails with expected exception message"() {
            when:
            fails "updateDaemonJvm", "--toolchain-vendor=unknown-vendor"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            then:
            failureDescriptionStartsWith("Execution failed for task ':test'.")
            failureHasCause("Toolchain from `executable` property does not match toolchain from `javaLauncher` 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: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	// toolchain you can download and run. In that case fall back to at least
    	// checking that the toolchain is new enough for the Go version.
    	toolchain := "go" + old
    	if wf.Toolchain != nil {
    		toolchain = wf.Toolchain.Name
    	}
    	if gover.IsLang(gover.Local()) {
    		toolchain = gover.ToolchainMax(toolchain, "go"+goVers)
    	} else {
    		toolchain = gover.ToolchainMax(toolchain, "go"+gover.Local())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

    import org.gradle.jvm.toolchain.internal.AsdfInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.CurrentInstallationSupplier;
    import org.gradle.jvm.toolchain.internal.DefaultOsXJavaHomeCommand;
    import org.gradle.jvm.toolchain.internal.DefaultToolchainConfiguration;
    import org.gradle.jvm.toolchain.internal.InstallationLocation;
    import org.gradle.jvm.toolchain.internal.InstallationSupplier;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
    }
    
    packageCycles {
        // Needed for the factory methods in the interface
        excludePatterns.add("org/gradle/jvm/toolchain/JavaLanguageVersion**")
        excludePatterns.add("org/gradle/jvm/toolchain/**")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/DefaultToolchainSpecTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.jvm.toolchain.internal
    
    import org.gradle.jvm.toolchain.JavaLanguageVersion
    import org.gradle.jvm.toolchain.JavaToolchainSpec
    import org.gradle.jvm.toolchain.JvmImplementation
    import org.gradle.jvm.toolchain.JvmVendorSpec
    import org.gradle.util.Matchers
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    	if !ToolchainRE.MatchString(name) {
    		return fmt.Errorf("invalid toolchain name %q", name)
    	}
    	if f.Toolchain == nil {
    		stmt := &Line{Token: []string{"toolchain", name}}
    		f.Toolchain = &Toolchain{
    			Name:   name,
    			Syntax: stmt,
    		}
    		// Find the go line and add the toolchain line after it.
    		// Or else find the first non-comment-only block and add
    		// the toolchain line before it. That will keep file comments at the top.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/env_gomod_issue61455.txt

    env TESTGO_VERSION_SWITCH=mismatch
    
    # go env GOMOD should not trigger a toolchain download
    cd $GOPATH/mod
    go env GOMOD
    stdout mod[/\\]go.mod
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    # go env GOWORK should not trigger a toolchain download
    cd $GOPATH/work
    go env GOWORK
    stdout work[/\\]go.work
    ! stderr 'go: toolchain go1.500 invoked to provide go1.700'
    
    -- $GOPATH/mod/go.mod --
    module example.com
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 16:05:39 UTC 2024
    - 510 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonJvmCriteria.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.toolchain;
    
    import org.gradle.internal.jvm.Jvm;
    import org.gradle.jvm.toolchain.JavaLanguageVersion;
    import org.gradle.jvm.toolchain.JvmImplementation;
    import org.gradle.jvm.toolchain.JvmVendorSpec;
    
    public class DaemonJvmCriteria {
        private final JavaLanguageVersion javaVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top