- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 121 for toolchain (0.12 sec)
-
pom.xml
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:51:04 UTC 2024 - 20.6K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/commons/JavaPluginExtensions.kt
import org.gradle.api.plugins.JavaPluginExtension import org.gradle.jvm.toolchain.JavaLanguageVersion import org.gradle.jvm.toolchain.JvmVendorSpec // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390 import org.gradle.kotlin.dsl.* internal fun JavaPluginExtension.configureJavaToolChain() { toolchain { languageVersion = JavaLanguageVersion.of(17)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 1.1K bytes - Viewed (0) -
api/maven-api-toolchain/src/site/apt/index.apt
----- 2006-11-04 ----- Maven 4 API - Immutable Toolchains Model This is strictly the immutable model for Maven toolchains in <<<org.apache.maven.api.toolchain>>> package. The following are generated from this model: * {{{./apidocs/index.html}Java sources}} with <<<Builder>>> inner classes for immutable instances creation.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Dec 31 16:32:07 UTC 2022 - 1.3K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.toolchain.building; import java.util.List; import org.apache.maven.building.Problem; import org.apache.maven.toolchain.model.PersistedToolchains; /** * Collects the output of the toolchains builder. * * @since 3.3.0 * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.ToolchainsBuilder} instead
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/bootstrap.bash
# useful if you've bootstrapped yourself but want to # prepare a clean toolchain for others. true else rm -f bin/go_${goos}_${goarch}_exec mv bin/*_*/* bin rmdir bin/*_* rm -rf "pkg/${gohostos}_${gohostarch}" "pkg/tool/${gohostos}_${gohostarch}" fi rm -rf pkg/bootstrap pkg/obj .git echo ---- echo Bootstrap toolchain for "$GOOS/$GOARCH" installed in "$(pwd)". echo Building tbz. cd ..
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jan 20 17:52:26 UTC 2023 - 2.3K bytes - Viewed (0) -
go.env
# See https://proxy.golang.org for details. GOPROXY=https://proxy.golang.org,direct GOSUMDB=sum.golang.org # Automatically download newer toolchains as directed by go.mod files. # See https://go.dev/doc/toolchain for details.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Jun 06 19:18:46 UTC 2023 - 505 bytes - Viewed (0) -
ci/official/containers/ml_build/setup.sources.sh
deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu jammy main deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu jammy main # LLVM/Clang repository deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 03 21:13:05 UTC 2024 - 1.6K bytes - Viewed (0) -
ci/official/containers/linux_arm64/setup.sources.sh
deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main # LLVM/Clang 18 repository deb http://apt.llvm.org/focal/ llvm-toolchain-focal-18 main deb-src http://apt.llvm.org/focal/ llvm-toolchain-focal-18 main
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jul 10 18:56:24 UTC 2024 - 1.7K bytes - Viewed (0) -
compat/pom.xml
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java
public MavenExecutionRequest populateFromToolchains(MavenExecutionRequest request, PersistedToolchains toolchains) throws MavenExecutionRequestPopulationException { if (toolchains != null) { Map<String, List<ToolchainModel>> groupedToolchains = new HashMap<>(2); for (ToolchainModel model : toolchains.getToolchains()) { if (!groupedToolchains.containsKey(model.getType())) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0)