Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for ARM64 (0.09 sec)

  1. hack/local-up-cluster.sh

            host_arch=amd64
            ;;
          i?86_64*)
            host_arch=amd64
            ;;
          amd64*)
            host_arch=amd64
            ;;
          aarch64*)
            host_arch=arm64
            ;;
          arm64*)
            host_arch=arm64
            ;;
          arm*)
            host_arch=arm
            ;;
          i?86*)
            host_arch=x86
            ;;
          s390x*)
            host_arch=s390x
            ;;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.3.md

    [kubernetes-client-linux-arm64.tar.gz](https://storage.googleapis.com/kubernetes-release/release/v1.3.10/kubernetes-client-linux-arm64.tar.gz) | `176b52d35150ca9f08a7e90e33e2839b7574afe350edf4fafa46745d77bb5aa4`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // for all the Istio control plane components.
    message ArchConfig {
      // Sets pod scheduling weight for amd64 arch
      uint32 amd64 = 1;
    
      // Sets pod scheduling weight for ppc64le arch.
      uint32 ppc64le = 2;
    
      // Sets pod scheduling weight for s390x arch.
      uint32 s390x = 3;
    
      // Sets pod scheduling weight for arm64 arch.
      uint32 arm64 = 4;
    }
    
    // Configuration for CNI.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/elf.go

    /*
    Initialize the global variable that describes the ELF header. It will be updated as
    we write section and prog headers.
    */
    func Elfinit(ctxt *Link) {
    	ctxt.IsELF = true
    
    	if ctxt.Arch.InFamily(sys.AMD64, sys.ARM64, sys.Loong64, sys.MIPS64, sys.PPC64, sys.RISCV64, sys.S390X) {
    		elfRelType = ".rela"
    	} else {
    		elfRelType = ".rel"
    	}
    
    	switch ctxt.Arch.Family {
    	// 64-bit architectures
    	case sys.PPC64, sys.S390X:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	// followed by semi-colon, followed by a comma-separated list of opcode checks.
    	// Extraneous spaces are ignored.
    	//
    	// An example: arm64/v8.1 : -`ADD` , `SUB`
    	//	"(\w+)" matches "arm64" (architecture name)
    	//	"(/[\w.]+)?" matches "v8.1" (architecture version)
    	//	"(/\w*)?" doesn't match anything here (it's an optional part of the triplet)
    	//	"\s*:\s*" matches " : " (semi-colon)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. src/syscall/zerrors_darwin_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && darwin
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    	AF_CNT                            = 0x15
    	AF_COIP                           = 0x14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 55.8K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_darwin_arm64.go

    // mksyscall.pl -darwin -tags darwin,arm64 syscall_bsd.go syscall_darwin.go syscall_darwin_arm64.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build darwin && arm64
    
    package syscall
    
    import "unsafe"
    import "internal/abi"
    import "runtime"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  8. src/syscall/zerrors_freebsd_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build freebsd && arm64
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x23
    	AF_ATM                            = 0x1e
    	AF_BLUETOOTH                      = 0x24
    	AF_CCITT                          = 0xa
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  9. src/syscall/zerrors_netbsd_arm64.go

    // mkerrors.sh -m64
    // Code generated by the command above; DO NOT EDIT.
    
    // Created by cgo -godefs - DO NOT EDIT
    // cgo -godefs -- -m64 _const.go
    
    //go:build arm64 && netbsd
    
    package syscall
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_ARP                            = 0x1c
    	AF_BLUETOOTH                      = 0x1f
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    // go run mksyscall.go -openbsd -libc -tags openbsd,arm64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_arm64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && arm64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top