Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 548 for ARM64 (0.09 sec)

  1. pkg/test/fakes/imageregistry/Makefile

    $(MD_PATH)/$(BIN_NAME)-arm64: $(MD_PATH)/main.go
    	cd $(MD_PATH) && CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o $(BIN_NAME)-arm64 -a -tags netgo -ldflags '-w -extldflags "-static"' main.go
    
    build: $(MD_PATH)/$(BIN_NAME)-amd64  $(MD_PATH)/$(BIN_NAME)-arm64
    
    build_and_push: build
    	docker buildx build --platform=linux/amd64,linux/arm64 $(MD_PATH) -t $(IMG):$(TAG) -t $(IMG):latest --push
    
    clean:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 17 16:29:18 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    [kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.30.2/kubernetes-client-darwin-arm64.tar.gz) | 7a322c0a68da795f3691ea58ffafd3f7e4694f8f74291733290a61354435966e44ea32172a68f614b45c5eb9932e943c4ff8b98f5fc74c68d62ea4048c37e5a4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. tools/docker-copy.sh

    INPUTS=("${@}")
    TARGET_ARCH=${TARGET_ARCH:-amd64}
    DOCKER_WORKING_DIR=${INPUTS[${#INPUTS[@]}-1]}
    FILES=("${INPUTS[@]:0:${#INPUTS[@]}-1}")
    
    set -eu;
    
    # detect_arch returns "amd64", "arm64", or "" depending on if the file is arch specific
    function detect_arch() {
      FILE=${1}
      extension="${FILE##*.}"
      if [[ "${extension}" == "deb" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 03:06:26 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    [kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.27.15/kubernetes-client-darwin-arm64.tar.gz) | f64343b1ba63a44c3f8e5f9b1b18e818340fe9d34e14bbecabcb5a1d68df231ec457039edc3d58ce57eb571f33d146fbf06c215a24d963221ea2a21b8b4898d0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. test/codegen/copy.go

    	_ = b[1]
    	// amd64:-".*memmove"
    	// arm64:-".*memmove"
    	// ppc64x:-".*memmove"
    	copy(b, x[:])
    }
    
    func moveArchLowering2(b []byte, x *[2]byte) {
    	_ = b[2]
    	// amd64:-".*memmove"
    	// arm64:-".*memmove"
    	// ppc64x:-".*memmove"
    	copy(b, x[:])
    }
    
    func moveArchLowering4(b []byte, x *[4]byte) {
    	_ = b[4]
    	// amd64:-".*memmove"
    	// arm64:-".*memmove"
    	// ppc64x:-".*memmove"
    	copy(b, x[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 14:09:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go

    // Code generated by linux/mkall.go generatePtraceRegSet("arm64"). DO NOT EDIT.
    
    package unix
    
    import "unsafe"
    
    // PtraceGetRegSetArm64 fetches the registers used by arm64 binaries.
    func PtraceGetRegSetArm64(pid, addr int, regsout *PtraceRegsArm64) error {
    	iovec := Iovec{(*byte)(unsafe.Pointer(regsout)), uint64(unsafe.Sizeof(*regsout))}
    	return ptracePtr(PTRACE_GETREGSET, pid, uintptr(addr), unsafe.Pointer(&iovec))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 721 bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

    [kubernetes-client-darwin-arm64.tar.gz](https://dl.k8s.io/v1.25.16/kubernetes-client-darwin-arm64.tar.gz) | 92023e473bd756b5a42e8fcab5609ea81d05c3e0111b70824e1be24cc6f1d712a41dd0ec760afed961c7d2cda41bed1c9cff1c8a30bb5a9b838cd8c01dcf7253
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. test/codegen/stack.go

    func spillSlotReuse() {
    	// The return values of getp1 and getp2 need to be
    	// spilled around the calls to nopInt. Make sure that
    	// spill slot gets reused.
    
    	//arm64:`.*autotmp_2-8\(SP\)`
    	getp1()[nopInt()] = 0
    	//arm64:`.*autotmp_2-8\(SP\)`
    	getp2()[nopInt()] = 0
    }
    
    //go:noinline
    func nopInt() int {
    	return 0
    }
    
    //go:noinline
    func getp1() *[4]int {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/dist/main.go

    				gohostarch = "amd64"
    			}
    		case strings.Contains(out, "aarch64"), strings.Contains(out, "arm64"):
    			gohostarch = "arm64"
    		case strings.Contains(out, "arm"):
    			gohostarch = "arm"
    			if gohostos == "netbsd" && strings.Contains(run("", CheckExit, "uname", "-p"), "aarch64") {
    				gohostarch = "arm64"
    			}
    		case strings.Contains(out, "ppc64le"):
    			gohostarch = "ppc64le"
    		case strings.Contains(out, "ppc64"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/platform/internal/DefaultArchitectureTest.groovy

            expect:
            arch.name == name
            arch.i386 == i386
            arch.amd64 == amd64
            arch.ia64 == ia64
            arch.arm == arm || arm64
            arch.arm32 == arm
            arch.arm64 == arm64
    
            where:
            name        | i386  | amd64 | ia64  | arm   | arm64
            "x86"       | true  | false | false | false | false
            "x86-64"    | false | true  | false | false | false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top