Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 548 for ARM64 (0.09 sec)

  1. test/codegen/issue48054.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package codegen
    
    func a(n string) bool {
    	// arm64:"CBZ"
    	if len(n) > 0 {
    		return true
    	}
    	return false
    }
    
    func a2(n []int) bool {
    	// arm64:"CBZ"
    	if len(n) > 0 {
    		return true
    	}
    	return false
    }
    
    func a3(n []int) bool {
    	// amd64:"TESTQ"
    	if len(n) < 1 {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 08 14:51:40 UTC 2021
    - 464 bytes
    - Viewed (0)
  2. src/race.bash

    set -e
    
    function usage {
    	echo 'race detector is only supported on linux/amd64, linux/ppc64le, linux/arm64, linux/s390x, freebsd/amd64, netbsd/amd64, openbsd/amd64, darwin/amd64, and darwin/arm64' 1>&2
    	exit 1
    }
    
    case $(uname -s -m) in
      "Darwin x86_64") ;;
      "Darwin arm64")  ;;
      "Linux x86_64")  ;;
      "Linux ppc64le") ;;
      "Linux aarch64") ;;
      "Linux s390x")   ;;
      "FreeBSD amd64") ;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 14:17:20 UTC 2022
    - 919 bytes
    - Viewed (0)
  3. src/cmd/link/main.go

    		os.Exit(2)
    	case "386":
    		arch, theArch = x86.Init()
    	case "amd64":
    		arch, theArch = amd64.Init()
    	case "arm":
    		arch, theArch = arm.Init()
    	case "arm64":
    		arch, theArch = arm64.Init()
    	case "loong64":
    		arch, theArch = loong64.Init()
    	case "mips", "mipsle":
    		arch, theArch = mips.Init()
    	case "mips64", "mips64le":
    		arch, theArch = mips64.Init()
    	case "ppc64", "ppc64le":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/fmahash_test.go

    	case "linux", "darwin":
    	default:
    		t.Skipf("Slow test, usually avoid it, os=%s not linux or darwin", runtime.GOOS)
    	}
    	switch runtime.GOARCH {
    	case "amd64", "arm64":
    	default:
    		t.Skipf("Slow test, usually avoid it, arch=%s not amd64 or arm64", runtime.GOARCH)
    	}
    
    	testenv.MustHaveGoBuild(t)
    	gocmd := testenv.GoToolPath(t)
    	tmpdir := t.TempDir()
    	source := filepath.Join("testdata", "fma.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/crypto/internal/boring/README.md

    	GOARCH=amd64 ./build.sh
    
    syso/goboringcrypto_linux_arm64.syso is built with:
    
    	GOARCH=arm64 ./build.sh
    
    Both run on an x86 Debian Linux system using Docker.
    For the arm64 build to run on an x86 system, you need
    
    	apt-get install qemu-user-static qemu-binfmt-support
    
    to allow the x86 kernel to run arm64 binaries via QEMU.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.22.md

    ---- | -------------
    k8s.gcr.io/kube-controller-manager:v1.22.7 | amd64, arm, arm64, ppc64le, s390x
    k8s.gcr.io/kube-proxy:v1.22.7 | amd64, arm, arm64, ppc64le, s390x
    k8s.gcr.io/kube-scheduler:v1.22.7 | amd64, arm, arm64, ppc64le, s390x
    k8s.gcr.io/conformance:v1.22.7 | amd64, arm, arm64, ppc64le, s390x
    k8s.gcr.io/kube-apiserver:v1.22.7 | amd64, arm, arm64, ppc64le, s390x
    
    ## Changelog since v1.22.6
    
    ## Changes by Kind
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  7. test/fixedbugs/issue58826.go

    // compile -dynlink
    
    //go:build 386 || amd64 || arm || arm64 || ppc64le || s390x
    // (platforms that support -dynlink flag)
    
    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 58826: assembler cannot handle global access with large
    // offset in -dynlink mode on ARM64.
    
    package p
    
    var x [2197]uint8
    
    func F() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 07 21:29:30 UTC 2023
    - 478 bytes
    - Viewed (0)
  8. test/nilptr.go

    // Test that the implementation catches nil ptr indirection
    // in a large address space.
    
    // Address space starts at 1<<32 on AIX and on darwin/arm64 and on windows/arm64, so dummy is too far.
    //go:build !aix && (!darwin || !arm64) && (!windows || !arm64)
    
    package main
    
    import "unsafe"
    
    // Having a big address space means that indexing
    // at a 256 MB offset from a nil pointer might not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/parse.go

    	// Symbol: sym±offset(SB)
    	tok := p.next()
    	name := tok.String()
    	if tok.ScanToken == scanner.Ident && !p.atStartOfRegister(name) {
    		switch p.arch.Family {
    		case sys.ARM64:
    			// arm64 special operands.
    			if opd := arch.GetARM64SpecialOperand(name); opd != arm64.SPOP_END {
    				a.Type = obj.TYPE_SPECIAL
    				a.Offset = int64(opd)
    				break
    			}
    			fallthrough
    		default:
    			// We have a symbol. Parse $sym±offset(symkind)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. misc/go_android_exec/README

    mobile subrepository:
    
    	https://github.com/golang/mobile
    
    To run the standard library tests, enable Cgo and use an appropriate
    C compiler from the Android NDK. For example,
    
    	CGO_ENABLED=1 \
    	GOOS=android \
    	GOARCH=arm64 \
    	CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \
    	./all.bash
    
    To run tests on the Android device, add the bin directory to PATH so the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 01 14:45:55 UTC 2023
    - 732 bytes
    - Viewed (0)
Back to top