Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for aach64 (0.26 sec)

  1. 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)
  2. .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)
  3. 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")));
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 07:09:12 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  4. .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)
  5. .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)
  6. 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}" in
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Jun 08 16:12:05 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. .teamcity/src/main/kotlin/util/UtilProject.kt

        id("Util")
        name = "Util"
    
        buildType(RerunFlakyTest(Os.LINUX))
        buildType(RerunFlakyTest(Os.WINDOWS))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AMD64))
        buildType(RerunFlakyTest(Os.MACOS, Arch.AARCH64))
        buildType(WarmupEc2Agent)
        buildType(DownloadGitRepoToEc2Agent)
        buildType(UpdateWrapper)
    
        buildType(PublishKotlinDslPlugin)
    
        params {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Nov 12 06:13:12 UTC 2025
    - 639 bytes
    - Viewed (0)
  9. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt

            }
        }
    
        @JvmName("associateGroovy")
        fun Project.associate(groovyCompile: TaskProvider<GroovyCompile>) {
            if(!(OperatingSystem.current().isWindows && System.getProperty("os.arch") == "aarch64")) {
                groovyCompile.configure {
                    val javaToolchains = project.the<JavaToolchainService>()
                    // Groovy does not support the release flag. We must compile with the same
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Sep 19 05:45:14 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  10. .bazelrc

    # force all tests to run locally on the Aarch64 host.
    test:rbe_cross_compile_base --strategy=TestRunner=local --build_tests_only
    test:rbe_cross_compile_base --verbose_failures=true --local_test_jobs=HOST_CPUS --test_output=errors
    
    # START LINUX AARCH64 CROSS-COMPILE CONFIGS
    common:cross_compile_linux_arm64 --config=cross_compile_base
    
    # Set the target CPU to Aarch64
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Fri Dec 26 23:20:26 UTC 2025
    - 56.8K bytes
    - Viewed (0)
Back to top