Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for toolChain (0.34 sec)

  1. doc/next/5-toolchain.md

    Cherry Mui <******@****.***> 1718118158 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. testing/architecture-test/src/changes/archunit-store/configuration-factory-methods.txt

    org.gradle.api.file.FileCollection, org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal, org.gradle.api.artifacts.Configuration, org.gradle.language.cpp.CppPlatform, org.gradle.nativeplatform.toolchain.internal.NativeToolChainInternal, org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider, org.gradle.language.cpp.internal.NativeVariantIdentity)> calls method <org.gradle.api.internal.artifacts.configurations.RoleBasedConfigurationContainerInternal.resolvableDependenc...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. maven-core/pom.xml

                  <exclude>org.apache.maven.toolchain.DefaultToolchain#getLog():METHOD_RETURN_TYPE_CHANGED</exclude>
                  <exclude>org.apache.maven.toolchain.DefaultToolchain#DefaultToolchain(org.apache.maven.toolchain.model.ToolchainModel,org.codehaus.plexus.logging.Logger):CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. .bazelrc

    build:rbe_win_clang --crosstool_top="//tensorflow/tools/toolchains/win/20240424:toolchain"
    build:rbe_win_clang --extra_toolchains="//tensorflow/tools/toolchains/win/20240424:cc-toolchain-x64_windows-clang-cl"
    build:rbe_win_clang --extra_execution_platforms="//tensorflow/tools/toolchains/win:x64_windows-clang-cl"
    build:rbe_win_clang --host_platform="//tensorflow/tools/toolchains/win:x64_windows-clang-cl"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-configuration/build.gradle.kts

        testFixturesImplementation(project(":internal-integ-testing"))
    
        testRuntimeOnly(project(":distributions-jvm")) {
            because("ProjectBuilder tests load services from a Gradle distribution.  Toolchain usage requires JVM distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 888 bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    			changes[path] = change{path, old, new}
    		}
    	}
    
    	// Toolchain diffs are easier than requirements: diff old and new directly.
    	toolchainVersions := func(reqs []module.Version) (goV, toolchain string) {
    		for _, req := range reqs {
    			if req.Path == "go" {
    				goV = req.Version
    			}
    			if req.Path == "toolchain" {
    				toolchain = req.Version
    			}
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. doc/next/2-language.md

    For details see the [language spec](/ref/spec#For_statements).
    
    <!-- go.dev/issue/46477, CL 566856, CL 586955, CL 586956 -->
    Go 1.23 includes preview support for [generic type aliases](/issue/46477).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 19:56:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/build.gradle.kts

        crossVersionTestDistributionRuntimeOnly(project(":distributions-jvm"))
    }
    
    packageCycles {
        // Needed for the factory methods in the interface
        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
    - 2.6K bytes
    - Viewed (0)
Back to top