Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 150 for X86_64 (0.51 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

        val isWindows = OperatingSystem.current().isWindows
        val isLinux = OperatingSystem.current().isLinux
        val isMacOsX = OperatingSystem.current().isMacOsX
        val isIntel: Boolean = architecture == "x86_64" || architecture == "x86"
        val isSlowInternetConnection
            get() = System.getProperty("slow.internet.connection", "false")!!.toBoolean()
        val agentNum: Int
            get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

            }
    
            definition += ".";
    
            if (host.getArchitecture().isI386()) {
                definition += "x86";
            } else if (host.getArchitecture().isAmd64()) {
                definition += "x86_64";
            } else {
                definition += "architecture(\"" + host.getArchitecture().getName() + "\")";
            }
    
            return definition;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

            switch (archString) {
                case "x86":
                    return Architectures.forInput("x86")
                case "x64":
                    return Architectures.forInput("x86_64")
                case "IA64":
                    return Architectures.forInput("ia-64")
                case "ARM":
                    return Architectures.forInput("arm")
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/ReadelfBinaryInfo.groovy

            switch (archString) {
                case "Intel 80386":
                    return Architectures.forInput("x86")
                case "Advanced Micro Devices X86-64":
                    return Architectures.forInput("x86_64")
                default:
                    throw new RuntimeException("Cannot determine architecture for ${archString}\nreadelf output:\n${lines}")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
        name = "macos_x86_64_default",
        constraint_values = if_google(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/obj.go

    		MachorelocSize:   8,
    		PEreloc1:         pereloc1,
    		TLSIEtoLE:        tlsIEtoLE,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib64/ld-linux-x86-64.so.2",
    			LinuxdynldMusl: "/lib/ld-musl-x86_64.so.1",
    			Freebsddynld:   "/libexec/ld-elf.so.1",
    			Openbsddynld:   "/usr/libexec/ld.so",
    			Netbsddynld:    "/libexec/ld.elf_so",
    			Dragonflydynld: "/usr/libexec/ld-elf.so.2",
    			Solarisdynld:   "/lib/amd64/ld.so.1",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/runtime/libfuzzer_arm64.s

    	JMP	(R9)
    
    // The ret sled for ARM64 consists of 128 br instructions jumping to the
    // end of the function. Each instruction is 4 bytes long. The sled thus
    // has the same byte length of 4 * 128 = 512 as the x86_64 sled, but
    // coarser granularity.
    #define RET_SLED \
    	JMP	end_of_function;
    
    ret_sled:
    	REPEAT_128(RET_SLED);
    
    end_of_function:
    	MOVD	R19, RSP
    	MOVD	savedRetAddr-8(SP), R30
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 07 14:47:46 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. release/downloadIstioCtl.sh

      exit 1;
    fi
    
    LOCAL_ARCH=$(uname -m)
    if [ "${TARGET_ARCH}" ]; then
        LOCAL_ARCH=${TARGET_ARCH}
    fi
    
    case "${LOCAL_ARCH}" in
      x86_64|amd64)
        ISTIO_ARCH=amd64
        ;;
      armv8*|aarch64*|arm64)
        ISTIO_ARCH=arm64
        ;;
      armv*)
        ISTIO_ARCH=armv7
        ;;
      *)
        echo "This system's architecture, ${LOCAL_ARCH}, isn't supported"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 14:11:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top