Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for ppc64x (0.11 sec)

  1. src/cmd/internal/obj/s390x/a.out.go

    // Based on cmd/internal/obj/ppc64/a.out.go.
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2008 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    //	Portions Copyright © 2005-2007 C H Forsyth (******@****.***)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. hack/lib/util.sh

          host_arch=arm
          ;;
        i?86*)
          host_arch=x86
          ;;
        s390x*)
          host_arch=s390x
          ;;
        ppc64le*)
          host_arch=ppc64le
          ;;
        *)
          kube::log::error "Unsupported host arch. Must be x86_64, 386, arm, arm64, s390x or ppc64le."
          exit 1
          ;;
      esac
      echo "${host_arch}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go

    // go run mksysctl_openbsd.go
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build ppc64 && openbsd
    
    package unix
    
    type mibentry struct {
    	ctlname string
    	ctloid  []_C_int
    }
    
    var sysctlMib = []mibentry{
    	{"ddb.console", []_C_int{9, 6}},
    	{"ddb.log", []_C_int{9, 7}},
    	{"ddb.max_line", []_C_int{9, 3}},
    	{"ddb.max_width", []_C_int{9, 2}},
    	{"ddb.panic", []_C_int{9, 5}},
    	{"ddb.profile", []_C_int{9, 9}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testshared/shared_test.go

    }
    
    // If gccgo is not available or not new enough, call t.Skip.
    func requireGccgo(t *testing.T) {
    	t.Helper()
    
    	if runtime.GOARCH == "ppc64" || runtime.GOARCH == "ppc64le" {
    		t.Skip("gccgo test skipped on PPC64 until issue #60798 is resolved")
    	}
    
    	gccgoName := os.Getenv("GCCGO")
    	if gccgoName == "" {
    		gccgoName = "gccgo"
    	}
    	gccgoPath, err := exec.LookPath(gccgoName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  5. README.md

    | 64-bit ARM                     | <https://dl.min.io/server/minio/release/linux-arm64/minio>   |
    | 64-bit PowerPC LE (ppc64le)    | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> |
    | IBM Z-Series (S390X)           | <https://dl.min.io/server/minio/release/linux-s390x/minio>   |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/mips64.s

    // Copyright 2015 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.
    
    // This input was created by taking the ppc64 testcase and modified
    // by hand.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT foo(SB),DUPOK|NOSPLIT,$0
    //
    // branch
    //
    //	LBRA rel
    //	{
    //		outcode(int($1), &nullgen, 0, &$2);
    //	}
    	BEQ	R1, 2(PC)
    label0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_ppc64x.s

    // Copyright 2019 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.
    
    //go:build (ppc64 || ppc64le) && !purego
    
    // Portions based on CRYPTOGAMS code with the following comment:
    // # ====================================================================
    // # Written by Andy Polyakov <******@****.***> for the OpenSSL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/symtab.go

    		// On ppc64 the top three bits of the st_other field indicate how many
    		// bytes separate the global and local entry points. For non-PCrel shared
    		// symbols this is always 8 bytes except for some special functions.
    		hasPCrel := buildcfg.GOPPC64 >= 10 && buildcfg.GOOS == "linux"
    
    		// This should match the preprocessing behavior in cmd/internal/obj/ppc64/obj9.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  9. src/debug/buildinfo/buildinfo_test.go

    	if testing.Short() {
    		t.Skip("test requires compiling and linking, which may be slow")
    	}
    	testenv.MustHaveGoBuild(t)
    
    	type platform struct{ goos, goarch string }
    	platforms := []platform{
    		{"aix", "ppc64"},
    		{"darwin", "amd64"},
    		{"darwin", "arm64"},
    		{"linux", "386"},
    		{"linux", "amd64"},
    		{"windows", "386"},
    		{"windows", "amd64"},
    	}
    	runtimePlatform := platform{runtime.GOOS, runtime.GOARCH}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go

    // go run mksyscall.go -tags linux,ppc64le syscall_linux.go syscall_linux_ppc64x.go syscall_linux_alarm.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build linux && ppc64le
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top