Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AARCH64 (0.08 sec)

  1. .teamcity/jdks.yaml

      - params:
          - "linux.java8.openjdk.aarch64"
          - "linux.java8.oracle.aarch64"
        os: "linux"
        arch: "aarch64"
        vendor: "temurin"
        version: "jdk8u432-b06"
        sha256: "383caabc20428e9500f2e07965317ed4387a0e336104483e29a9e06eeffbf26b"
      - params:
          - "linux.java11.openjdk.aarch64"
        os: "linux"
        arch: "aarch64"
        vendor: "temurin"
        version: "jdk-11.0.25+9"
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 29 15:51:20 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. .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
    
    test:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    
    # START LINUX AARCH64 CROSS-COMPILE CONFIGS
    build:cross_compile_linux_arm64 --config=cross_compile_base
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 28 22:02:31 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. common/scripts/setup_env.sh

    elif [[ ${LOCAL_ARCH} == x86_64 ]]; then
        TARGET_ARCH=amd64
    elif [[ ${LOCAL_ARCH} == armv8* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == arm64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == aarch64* ]]; then
        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == armv* ]]; then
        TARGET_ARCH=arm
    elif [[ ${LOCAL_ARCH} == s390x ]]; then
        TARGET_ARCH=s390x
    elif [[ ${LOCAL_ARCH} == ppc64le ]]; then
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 04:52:54 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top