Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for ARM64 (0.13 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            "32-bit" | SystemInfo.Architecture.i386  | "arm64"        | false          | ARM64_ON_X86
            "64-bit" | SystemInfo.Architecture.amd64 | "arm64"        | true           | ARM64_ON_AMD64
            "64-bit" | SystemInfo.Architecture.amd64 | "arm64"        | false          | ARM64_ON_X86
        }
    
        def vs2017Dir(String name) {
            def dir = tmpDir.createDir(name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  2. api/go1.9.txt

    pkg math/bits (netbsd-amd64-cgo), const UintSize = 64
    pkg math/bits (netbsd-arm), const UintSize = 32
    pkg math/bits (netbsd-arm-cgo), const UintSize = 32
    pkg math/bits (netbsd-arm64), const UintSize = 64
    pkg math/bits (netbsd-arm64-cgo), const UintSize = 64
    pkg math/bits (openbsd-386), const UintSize = 32
    pkg math/bits (openbsd-386-cgo), const UintSize = 32
    pkg math/bits (openbsd-amd64), const UintSize = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    // mkerrors.sh -Wall -Werror -static -I/tmp/arm64/include -fsigned-char
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && linux
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -Wall -Werror -static -I/tmp/arm64/include -fsigned-char _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/runtime/syscall_windows.go

    // hence 8 bytes.
    func callbackasmAddr(i int) uintptr {
    	var entrySize int
    	switch GOARCH {
    	default:
    		panic("unsupported architecture")
    	case "386", "amd64":
    		entrySize = 5
    	case "arm", "arm64":
    		// On ARM and ARM64, each entry is a MOV instruction
    		// followed by a branch instruction
    		entrySize = 8
    	}
    	return abi.FuncPCABI0(callbackasm) + uintptr(i*entrySize)
    }
    
    const callbackMaxFrame = 64 * goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_darwin_arm64.go

    // mksysnum_darwin.pl /usr/include/sys/syscall.h
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build arm64 && darwin
    
    package syscall
    
    const (
    	SYS_SYSCALL                        = 0
    	SYS_EXIT                           = 1
    	SYS_FORK                           = 2
    	SYS_READ                           = 3
    	SYS_WRITE                          = 4
    	SYS_OPEN                           = 5
    	SYS_CLOSE                          = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.4K bytes
    - Viewed (0)
  6. src/runtime/crash_cgo_test.go

    	}
    }
    
    func TestCgoCrashTraceback(t *testing.T) {
    	t.Parallel()
    	switch platform := runtime.GOOS + "/" + runtime.GOARCH; platform {
    	case "darwin/amd64":
    	case "linux/amd64":
    	case "linux/arm64":
    	case "linux/ppc64le":
    	default:
    		t.Skipf("not yet supported on %s", platform)
    	}
    	got := runTestProg(t, "testprogcgo", "CrashTraceback")
    	for i := 1; i <= 3; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  7. src/net/net_test.go

    				// Workaround for https://go.dev/issue/49352.
    				// On arm64 macOS (current as of macOS 12.4),
    				// reading from a socket at the same time as the client
    				// is closing it occasionally hangs for 60 seconds before
    				// returning ECONNRESET. Sleep for a bit to give the
    				// socket time to close before trying to read from it.
    				if runtime.GOOS == "darwin" && runtime.GOARCH == "arm64" {
    					time.Sleep(10 * time.Millisecond)
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/conntest.go

    	t.Helper()
    	if nerr, ok := err.(net.Error); ok {
    		if !nerr.Timeout() {
    			if runtime.GOOS == "windows" && runtime.GOARCH == "arm64" && t.Name() == "TestTestConn/TCP/RacyRead" {
    				t.Logf("ignoring known failure mode on windows/arm64; see https://go.dev/issue/52893")
    			} else {
    				t.Errorf("got error: %v, want err.Timeout() = true", nerr)
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    	hasGCMAsmARM64 = cpu.ARM64.HasAES && cpu.ARM64.HasPMULL
    	// Keep in sync with crypto/aes/cipher_s390x.go.
    	hasGCMAsmS390X = cpu.S390X.HasAES && cpu.S390X.HasAESCBC && cpu.S390X.HasAESCTR &&
    		(cpu.S390X.HasGHASH || cpu.S390X.HasAESGCM)
    
    	hasAESGCMHardwareSupport = runtime.GOARCH == "amd64" && hasGCMAsmAMD64 ||
    		runtime.GOARCH == "arm64" && hasGCMAsmARM64 ||
    		runtime.GOARCH == "s390x" && hasGCMAsmS390X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteCond_test.go

    // the order of arguments to comparisons", which helps with CSE, are covered.
    // The tedious if-else structures are necessary to ensure all concerned rules
    // and machine code sequences are covered.
    // It's for arm64 initially, please see https://github.com/golang/go/issues/38740
    func TestCondRewrite(t *testing.T) {
    	for _, test := range crTests {
    		t.Run(test.name, test.tf)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top