Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for s390 (0.09 sec)

  1. cluster/images/etcd/Makefile

    # The output type could either be docker (local), or registry.
    # If it is registry, it will also allow us to push the Windows images.
    OUTPUT_TYPE ?= docker
    
    ALL_OS = linux windows
    ALL_ARCH.linux = amd64 arm arm64 ppc64le s390x
    ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
    ALL_ARCH.windows = amd64
    ALL_OSVERSIONS.windows := 1809 ltsc2022
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/asm.go

    			// 3-operand jumps.
    			// First two must be registers
    			target = &a[2]
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			break
    		}
    		if p.arch.Family == sys.S390X {
    			// 3-operand jumps.
    			target = &a[2]
    			prog.From = a[0]
    			if a[1].Reg != 0 {
    				// Compare two registers and jump.
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. cluster/gce/upgrade.sh

            ;;
          arm*)
            host_arch=arm
            corefile_tool_SHA="721dbfcabda71a2648fd7d4d9241930313397a07d72828b2054315f85b177794"
            ;;
          s390x*)
            host_arch=s390x
            corefile_tool_SHA="56452a00a703afd4f816d558f78f279af5f29f1940a478baa694da20f4586698"
            ;;
          ppc64le*)
            host_arch=ppc64le
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_legacy.go

    // curve using the procedure given in FIPS 186-4, Appendix B.5.2.
    func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error) {
    	// See randomPoint for notes on the algorithm. This has to match, or s390x
    	// signatures will come out different from other architectures, which will
    	// break TLS recorded tests.
    	for {
    		N := c.Params().N
    		b := make([]byte, (N.BitLen()+7)/8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewrite.go

    }
    func auxToType(i Aux) *types.Type {
    	return i.(*types.Type)
    }
    func auxToCall(i Aux) *AuxCall {
    	return i.(*AuxCall)
    }
    func auxToS390xCCMask(i Aux) s390x.CCMask {
    	return i.(s390x.CCMask)
    }
    func auxToS390xRotateParams(i Aux) s390x.RotateParams {
    	return i.(s390x.RotateParams)
    }
    
    func StringToAux(s string) Aux {
    	return stringAux(s)
    }
    func symToAux(s Sym) Aux {
    	return s
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

         */
        private static final String FAMILY_ZOS = "z/os";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_OS390 = "os/390";
    
        /**
         * OS family that can be tested for. {@value}
         */
        private static final String FAMILY_OS400 = "os/400";
    
        /**
         * OpenJDK is reported to call MacOS X "Darwin"
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/cmd/dist/test.go

    	case "shared":
    		switch platform {
    		case "linux/386", "linux/amd64", "linux/arm", "linux/arm64", "linux/ppc64le", "linux/s390x":
    			return true
    		}
    		return false
    
    	case "plugin":
    		switch platform {
    		case "linux/amd64", "linux/arm", "linux/arm64", "linux/386", "linux/loong64", "linux/s390x", "linux/ppc64le",
    			"android/amd64", "android/386",
    			"darwin/amd64", "darwin/arm64",
    			"freebsd/amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ExportKeyingMaterial

    000002b0  bd 42 d4 db fe 3d 13 60  84 5c 21 d3 3b e9 fa e7  |.B...=.`.\!.;...|
    000002c0  16 03 03 00 ac 0c 00 00  a8 03 00 1d 20 c5 28 44  |............ .(D|
    000002d0  4a 31 d9 b6 53 90 8e 41  3c 67 2c 6f 9d b0 a6 d3  |J1..S..A<g,o....|
    000002e0  ed 70 64 94 ba 80 56 ca  f8 d7 10 28 49 08 04 00  |.pd...V....(I...|
    000002f0  80 81 28 f4 bc 99 0f 3f  c4 f6 4b 1a 08 c8 ed 3b  |..(....?..K....;|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. test/codegen/arithmetic.go

    	// 386:`SHLL\t[$]5`,`LEAL\t\(.*\)\(.*\*2\),`,-`IMULL`
    	// arm64:`LSL\t[$]5`,`ADD\sR[0-9]+<<1,\sR[0-9]+`,-`MUL`
    	// arm:`SLL\t[$]5`,`ADD\sR[0-9]+<<1,\sR[0-9]+`,-`MUL`
    	// s390x:`SLD\t[$]5`,`SLD\t[$]6`,-`MULLD`
    	return n * 96
    }
    
    func Mul_n120(n int) int {
    	// s390x:`SLD\t[$]3`,`SLD\t[$]7`,-`MULLD`
    	return n * -120
    }
    
    func MulMemSrc(a []uint32, b []float32) {
    	// 386:`IMULL\s4\([A-Z]+\),\s[A-Z]+`
    	a[0] *= a[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. README.md

    | 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)
Back to top