Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 144 for X86_64 (1.6 sec)

  1. cluster/get-kube-binaries.sh

      else
        # TODO: migrate the kube::util::host_platform function out of hack/lib and
        # use it here.
        local machine
        machine="$(uname -m)"
        case "${machine}" in
          x86_64*|i?86_64*|amd64*)
            CLIENT_ARCH="amd64"
            ;;
          aarch64*|arm64*)
            CLIENT_ARCH="arm64"
            ;;
          arm*)
            CLIENT_ARCH="arm"
            ;;
          i?86*)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/DefaultSwiftXCTestSuiteTest.groovy

        }
    
        private NativeVariantIdentity getIdentity() {
            return Stub(NativeVariantIdentity) {
                getTargetMachine() >> targetMachine(OperatingSystemFamily.WINDOWS, MachineArchitecture.X86_64)
            }
        }
    
        private TargetMachine targetMachine(String os, String arch) {
            def objectFactory = TestUtil.objectFactory()
            return Stub(TargetMachine) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTargetMachineFactory.java

            }
    
            @Override
            public TargetMachine getX86_64() {
                return new TargetMachineImpl(getOperatingSystemFamily(), objectFactory.named(MachineArchitecture.class, MachineArchitecture.X86_64));
            }
    
            @Override
            public TargetMachine architecture(String architecture) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. cluster/get-kube.sh

        exit 2
    esac
    
    machine=$(uname -m)
    case "${machine}" in
      x86_64*|i?86_64*|amd64*)
        ;;
      aarch64*|arm64*)
        ;;
      ppc64le*)
        ;;
      arm*)
        ;;
      i?86*)
        ;;
      *)
        echo "Unknown, unsupported architecture (${machine})." >&2
        echo "Supported architectures x86_64, i686, arm, arm64, ppc64le." >&2
        echo "Bailing out." >&2
        exit 3
        ;;
    esac
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/gccgoinstallation.go

    	"os/exec"
    	"path/filepath"
    	"strings"
    )
    
    // Information about a specific installation of gccgo.
    type GccgoInstallation struct {
    	// Version of gcc (e.g. 4.8.0).
    	GccVersion string
    
    	// Target triple (e.g. x86_64-unknown-linux-gnu).
    	TargetTriple string
    
    	// Built-in library paths used by this installation.
    	LibPaths []string
    }
    
    // Ask the driver at the given path for information for this GccgoInstallation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. .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,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/platform/internal/DefaultBuildPlatform.java

            switch (architecture) {
                case i386:
                    return Architecture.X86;
                case amd64:
                    return Architecture.X86_64;
                case aarch64:
                    return Architecture.AARCH64;
            }
            throw new GradleException("Unhandled system architecture: " + architecture);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 08:12:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftApplicationTest.groovy

            return Stub(NativeVariantIdentity) {
                getName() >> "debug"
                isDebuggable() >> true
                getTargetMachine() >> targetMachine(OperatingSystemFamily.MACOS, MachineArchitecture.X86_64)
            }
        }
    
        private TargetMachine targetMachine(String os, String arch) {
            def objectFactory = TestUtil.objectFactory()
            return Stub(TargetMachine) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top