Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for X86_64 (1.12 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/tls/testdata/Client-TLSv12-RenegotiateTwiceRejected

    00000040  c3 e1 8e 89 20 a5 2d 0b  31 b5 e0 16 54 ce 93 9b  |.... .-.1...T...|
    00000050  de cc b1 af 48 48 33 96  4d a6 00 78 7b 60 3f 7c  |....HH3.M..x{`?||
    00000060  cd 86 64 5e 38 e8 fd 60  d4 b1 89 cd e4 fb 42 b5  |..d^8..`......B.|
    00000070  82 8f e5 23 91 87 6d 54  9e 85 37 34 df ae 70 a5  |...#..mT..74..p.|
    00000080  cd 4c de 95 f7 9f a9 b4  87 0b 16 03 03 02 69 d1  |.L............i.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    // copies of these functions for use with other sizes.
    // Specifically:
    //
    // - A function with a name ending in _8_32 takes []byte and []int32 arguments
    //   and is duplicated into _32_32, _8_64, and _64_64 forms.
    //   The _32_32 and _64_64_ suffixes are shortened to plain _32 and _64.
    //   Any lines in the function body that contain the text "byte-only" or "256"
    //   are stripped when creating _32_32 and _64_64 forms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top