Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for X86_64 (1.8 sec)

  1. hack/lib/util.sh

          exit 1
          ;;
      esac
      echo "${host_os}"
    }
    
    kube::util::host_arch() {
      local host_arch
      case "$(uname -m)" in
        x86_64*)
          host_arch=amd64
          ;;
        i?86_64*)
          host_arch=amd64
          ;;
        amd64*)
          host_arch=amd64
          ;;
        aarch64*)
          host_arch=arm64
          ;;
        arm64*)
          host_arch=arm64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	}{
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "pfx/a/", "2", "", "", "/"),
    			[]string{
    				"<Contents><Key>pfx/a/1.txt</Key>",
    			},
    			"Hadoop 3.3.2, aws-sdk-java/1.12.262 Linux/5.14.0-362.24.1.el9_3.x86_64 OpenJDK_64-Bit_Server_VM/11.0.22+7 java/11.0.22 scala/2.12.15 vendor/Eclipse_Adoptium cfg/retry-mode/legacy",
    		},
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "pfx/a/", "2", "", "", "/"),
    			[]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

            exit 1
        fi
    }
    
    function detect_arch {
        local host_arch
    
        case "$(uname -m)" in
          x86_64*)
            host_arch=amd64
            ;;
          i?86_64*)
            host_arch=amd64
            ;;
          amd64*)
            host_arch=amd64
            ;;
          aarch64*)
            host_arch=arm64
            ;;
          arm64*)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/net/textproto/reader_test.go

    Connection: keep-alive
    Cache-Control: max-age=0
    Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/534.3 (KHTML, like Gecko) Chrome/6.0.472.63 Safari/534.3
    Accept-Encoding: gzip,deflate,sdch
    Accept-Language: en-US,en;q=0.8,fr-CH;q=0.6
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    	var sa sigactiont
    	sa.sa_flags = _SA_SIGINFO | _SA_ONSTACK | _SA_RESTORER | _SA_RESTART
    	sigfillset(&sa.sa_mask)
    	// Although Linux manpage says "sa_restorer element is obsolete and
    	// should not be used". x86_64 kernel requires it. Only use it on
    	// x86.
    	if GOARCH == "386" || GOARCH == "amd64" {
    		sa.sa_restorer = abi.FuncPCABI0(sigreturn__sigaction)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

          echo "Supported platform(s): linux." >&2
          echo "Bailing out." >&2
          exit 2
      esac
    
      HOST_ARCH=${HOST_ARCH_OVERRIDE:-"$(uname -m)"}
      case "${HOST_ARCH}" in
        x86_64*|i?86_64*|amd64*)
          HOST_ARCH="amd64"
          ;;
        aHOST_arch64*|aarch64*|arm64*)
          HOST_ARCH="arm64"
          ;;
        *)
          echo "Unknown, unsupported architecture (${HOST_ARCH})." >&2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    			}
    			if *flagLibGCC != "none" {
    				hostArchive(ctxt, *flagLibGCC)
    			}
    			// For glibc systems, the linker setup used by GCC
    			// looks like
    			//
    			//  GROUP ( /lib/x86_64-linux-gnu/libc.so.6
    			//      /usr/lib/x86_64-linux-gnu/libc_nonshared.a
    			//      AS_NEEDED ( /lib64/ld-linux-x86-64.so.2 ) )
    			//
    			// where libc_nonshared.a contains a small set of
    			// symbols including "__stack_chk_fail_local" and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/cpumanager/policy_static_test.go

    			expCPUAlloc:     false,
    			expCSet:         cpuset.New(), // reject allocation of sibling of partial core
    		},
    		{
    			// test SMT-level != 2 - which is the default on x86_64
    			description: "GuPodMultipleCores, topoQuadSocketFourWayHT, ExpectAllocOneCPUs",
    			topo:        topoQuadSocketFourWayHT,
    			options: map[string]string{
    				FullPCPUsOnlyOption: "true",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. hack/lib/golang.sh

        # If you want to include support for more server platforms than these, add arch-specific gcc names here
        case "${platform}" in
          "linux/amd64")
            export CGO_ENABLED=1
            export CC=${KUBE_LINUX_AMD64_CC:-x86_64-linux-gnu-gcc}
            ;;
          "linux/arm")
            export CGO_ENABLED=1
            export CC=${KUBE_LINUX_ARM_CC:-arm-linux-gnueabihf-gcc}
            ;;
          "linux/arm64")
            export CGO_ENABLED=1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. configure.py

    _DEFAULT_PROMPT_ASK_ATTEMPTS = 10
    
    _TF_BAZELRC_FILENAME = '.tf_configure.bazelrc'
    _TF_WORKSPACE_ROOT = ''
    _TF_BAZELRC = ''
    _TF_CURRENT_BAZEL_VERSION = None
    
    NCCL_LIB_PATHS = [
        'lib64/', 'lib/powerpc64le-linux-gnu/', 'lib/x86_64-linux-gnu/', ''
    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
Back to top