Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for X86_64 (0.15 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def platform = Stub(NativePlatformInternal)
    
        def dummyOs = new DefaultOperatingSystem("currentOS", OperatingSystem.current())
        def dummyArch = Architectures.forInput("x86_64")
    
        def "is unavailable when platform is not known and is not the default platform"() {
            given:
            platform.displayName >> '<unknown>'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto.go

    	// 7f7d77b36000-7f7d77d36000 ---p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    	// 7f7d77d36000-7f7d77d3a000 r--p 001ba000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    	// 7f7d77d3a000-7f7d77d3c000 rw-p 001be000 fc:01 1180226                    /lib/x86_64-linux-gnu/libc-2.19.so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

            "//tensorflow:ios_x86_64": "x86_64-apple-ios",
            "//tensorflow:linux_ppc64le": "ppc64le-ibm-linux-gnu",
            "//tensorflow:linux_aarch64": "aarch64-none-linux-gnu",
            "//tensorflow:macos_x86_64": "x86_64-none-darwin",
            "//tensorflow:macos_arm64": "aarch64-none-darwin",
            "//tensorflow:windows": "x86_64-none-windows",
            "//tensorflow:linux_s390x": "systemz-none-linux-gnu",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

    RUN dotnet tool install --global wix
    
    # Install msys2, packages and add to path.
    RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
        Invoke-WebRequest "https://repo.msys2.org/distrib/x86_64/msys2-base-x86_64-20220319.sfx.exe" \
            -OutFile msys2_install.exe -UseBasicParsing; \
        .\msys2_install.exe -y -oC:\; \
        Remove-Item msys2_install.exe; \
        function msys() { C:\msys64\usr\bin\bash.exe @('-lc') + @Args; } \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

                rootProject.name = 'app'
            """
            buildFile << """
                apply plugin: 'cpp-application'
    
                application {
                    targetMachines = [machines.host().x86, machines.host().x86_64]
                }
            """
            def headerDir = file('src/main/headers')
            def src1 = file('src/main/cpp/app.cpp').createFile()
            def src2 = file('src/main/cpp/app-impl.cpp').createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            if (architectureName.equals(MachineArchitecture.X86)) {
                return "i386";
            } else if (architectureName.equals(MachineArchitecture.X86_64)) {
                return "x86_64";
            } else if (architectureName.equals(MachineArchitecture.ARM64)) {
                return "arm64e";
            }
    
            return architectureName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

    import org.hamcrest.CoreMatchers
    import spock.lang.Issue
    
    import static org.gradle.nativeplatform.MachineArchitecture.X86
    import static org.gradle.nativeplatform.MachineArchitecture.X86_64
    import static org.gradle.nativeplatform.OperatingSystemFamily.LINUX
    import static org.gradle.nativeplatform.OperatingSystemFamily.MACOS
    import static org.gradle.nativeplatform.OperatingSystemFamily.WINDOWS
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            def e = thrown(NoToolchainAvailableException)
            e.message == "Cannot find a Java installation on your machine matching this tasks requirements: {languageVersion=12, vendor=any, implementation=vendor-specific} for LINUX on x86_64."
            e.cause.message == "Configured toolchain download repositories can't match requested specification"
        }
    
        def "returns current JVM toolchain if requested"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

            }
    
            protected String getArch() {
                String arch = System.getProperty("os.arch");
                if ("x86".equals(arch)) {
                    arch = "i386";
                }
                if ("x86_64".equals(arch)) {
                    arch = "amd64";
                }
                if ("powerpc".equals(arch)) {
                    arch = "ppc";
                }
                return arch;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

                    .toString()
            }
    
            void assertSupportedArchitectures(String... architectures) {
                def toXcodeArchitecture = [x86: 'i386', 'x86-64': 'x86_64', aarch64: 'arm64e'].withDefault { it }
                String expectedValidArchitectures = architectures.collect { toXcodeArchitecture.get(it) }.join(" ")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top