- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for aach64 (0.31 sec)
-
okhttp-testing-support/build.gradle.kts
api(libs.openjsse) api(rootProject.libs.junit.jupiter.engine) // This runs Corretto on macOS (aarch64) and Linux (x86_64). We don't test Corretto on other // operating systems or architectures. api(variantOf(libs.amazonCorretto) { classifier( when { OperatingSystem.current().isMacOsX -> "osx-aarch_64" OperatingSystem.current().isLinux -> "linux-x86_64"
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 18:33:48 UTC 2025 - 1.2K bytes - Viewed (1) -
.teamcity/jdks.yaml
- params: - "linux.java8.openjdk.aarch64" - "linux.java8.oracle.aarch64" os: "linux" arch: "aarch64" vendor: "temurin" version: "jdk8u472-b08" sha256: "e2aff19d85d2441e409d6cbdf12ef7c2acabb0de73bca4207947135dcaa935a2" - params: - "linux.java11.openjdk.aarch64" os: "linux" arch: "aarch64" vendor: "temurin" version: "jdk-11.0.29+7"Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Nov 10 14:02:00 UTC 2025 - 5.5K bytes - Viewed (1) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivatorTest.java
} @Test void testNegatedName() { Profile profile = newProfile(ActivationOS.newBuilder().name("!windows")); assertActivation(true, profile, newContext(null, newProperties("linux", "6.5.0-1014-aws", "amd64"))); assertActivation(false, profile, newContext(null, newProperties("windows", "6.5.0-1014-aws", "aarch64"))); } @TestRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 10 07:09:12 UTC 2025 - 6.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/Os.kt
*/ package common enum class Arch( val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String, ) { AMD64("64bit", "amd64", "x86_64"), AARCH64("aarch64", "aarch64", "aarch64"), ; fun asName() = name.lowercase().toCapitalized() } enum class Os( val agentRequirement: String, val androidHome: String, val jprofilerHome: String,
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Sep 18 12:22:32 UTC 2025 - 3.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
numberOfBuckets = 10, failsStage = true, ), PerformanceTestCoverage( 7, PerformanceTestType.PER_COMMIT, Os.MACOS, Arch.AARCH64, numberOfBuckets = 5, failsStage = true, ), ) private val slowPerformanceTestCoverages = listOf( PerformanceTestCoverage( 2,Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 05 13:00:26 UTC 2025 - 27.5K bytes - Viewed (0) -
arm_compiler.BUILD
"lib/gcc/arm-rpi-linux-gnueabihf/**", "include/**", ]), ) filegroup( name = "aarch64_compiler_pieces", srcs = glob([ "aarch64-none-linux-gnu/**", "libexec/**", "lib/gcc/aarch64-none-linux-gnu/**", "include/**", ]), ) filegroup( name = "compiler_components", srcs = [ ":ar", ":as", ":gcc",Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Mon Apr 12 11:17:46 UTC 2021 - 1.2K bytes - Viewed (0) -
.ci/java-versions-aarch64.properties
Mark Vieira <******@****.***> 1623177317 -0700
Registered: Sun Dec 21 06:47:06 UTC 2025 - Last Modified: Tue Jun 08 18:35:17 UTC 2021 - 308 bytes - Viewed (0) -
buildscripts/checkdeps.sh
return 1 fi done return 0 } assert_is_supported_arch() { case "${ARCH}" in x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64 | riscv64) return ;; *) echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64, riscv64]" exit 1 ;; esac } assert_is_supported_os() { case "${KNAME}" inRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Jun 08 16:12:05 UTC 2025 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/hash/BloomFilterStrategies.java
Funnel<? super T> funnel, int numHashFunctions, LockFreeBitArray bits) { long bitSize = bits.bitSize(); long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong(); int hash1 = (int) hash64; int hash2 = (int) (hash64 >>> 32); boolean bitsChanged = false; for (int i = 1; i <= numHashFunctions; i++) { int combinedHash = hash1 + (i * hash2);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Jan 08 14:27:16 UTC 2025 - 10.7K bytes - Viewed (0) -
dockerscripts/download-static-curl.sh
https://github.com/moparisthebest/static-curl/releases/latest/download/curl-$1 \ -o /go/bin/curl || exit 1 chmod +x /go/bin/curl } case $TARGETARCH in "arm64") download_arch_specific_executable aarch64 ;; "s390x") echo "Not downloading static cURL because it does not exist for the $TARGETARCH architecture." ;; *) download_arch_specific_executable "$TARGETARCH" ;;
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Sep 12 15:45:19 UTC 2024 - 461 bytes - Viewed (0)