Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for AArch64 (0.18 sec)

  1. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    Blake Hechtman <******@****.***> 1700569103 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/debug/elf/testdata/go-relocation-test-gcc482-aarch64.obj

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 3.3K bytes
    - Viewed (0)
  3. .teamcity/jdks.yaml

        sha256: 9445952d4487451af024a9a3f56373df76fbd928d9ff9186988aa27be2e4f10c
      - param: "macos.java8.zulu.aarch64"
        os: macos
        arch: aarch64
        vendor: "zulu"
        version: "zulu8.78.0.19-ca-jdk8.0.412"
      - params: [ "env.JAVA_HOME", "macos.java11.openjdk.aarch64" ]
        os: macos
        arch: aarch64
        vendor: "temurin"
        version: "jdk-11.0.23+9"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/setup.python.sh

    $VERSION-distutils
    EOF
    /setup.packages.sh pythons.txt
    
    # Re-link pyconfig.h from aarch64-linux-gnu into the devtoolset directory
    # for any Python version present
    pushd /usr/include/aarch64-linux-gnu
    for f in $(ls | grep python); do
      # set up symlink for devtoolset-10
      rm -f /dt10/usr/include/aarch64-linux-gnu/$f
      ln -s /usr/include/aarch64-linux-gnu/$f /dt10/usr/include/aarch64-linux-gnu/$f
    done
    popd
    
    # Python 3.10 include headers fix:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 29 00:26:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 05 14:16:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/Os.kt

     * limitations under the License.
     */
    
    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 Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/Architectures.java

        public static final KnownArchitecture AARCH64 = new KnownArchitecture("aarch64", "arm-v8", "arm64");
    
        private static final List<KnownArchitecture> KNOWN_ARCHITECTURES = asList(
                X86,
                X86_64,
                IA_64,
                ARM_V7,
                AARCH64,
                new KnownArchitecture("ppc"),
                new KnownArchitecture("ppc64"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/platform/internal/NativePlatforms.java

            ArchitectureInternal ia64 = Architectures.forInput("ia64");
            ArchitectureInternal armv7 = Architectures.forInput("armv7");
            ArchitectureInternal aarch64 = Architectures.forInput("aarch64");
            ArchitectureInternal sparc = Architectures.forInput("sparc");
            ArchitectureInternal ultrasparc = Architectures.forInput("ultrasparc");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/Architecture.java

         * 64-bit variant of the X86 instruction set, including "x64", "x86_64", "amd64", "ia64".
         */
        X86_64,
    
        /**
         * 64-bit reduced instruction set computer (RISC) architectures, including "aarch64", "arm64".
         */
        AARCH64
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

    import static org.junit.Assume.assumeTrue
    
    @Requires(value = [
        UnitTestPreconditions.HasXCode,
        UnitTestPreconditions.NotMacOsM1
    ], reason = "M1 Macs need modern Xcode to compile aarch64 binaries")
    class AbstractXcodeIntegrationSpec extends AbstractIntegrationSpec implements HostPlatform {
        AvailableToolChains.InstalledToolChain toolChain = null
    
        def setup() {
            buildFile << """
    allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top