Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 100 for s390 (0.04 sec)

  1. 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)
  2. src/cmd/compile/internal/test/testdata/fp_test.go

    	{
    		// Test that a multiply-accumulate operation with intermediate
    		// rounding forced by a float32() cast produces the expected
    		// result.
    		// Test cases generated experimentally on a system (s390x) that
    		// supports fused multiply-add instructions.
    		var tests = [...]struct{ x, y, z, res float32 }{
    			{0.6046603, 0.9405091, 0.6645601, 1.2332485},      // fused multiply-add result: 1.2332486
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 35K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/testdata/issue59563/repro.go

    	} else if x == 385 {
    		x += 385
    	} else if x == 386 {
    		x += 386
    	} else if x == 387 {
    		x += 387
    	} else if x == 388 {
    		x += 388
    	} else if x == 389 {
    		x += 389
    	} else if x == 390 {
    		x += 390
    	} else if x == 391 {
    		x += 391
    	} else if x == 392 {
    		x += 392
    	} else if x == 393 {
    		x += 393
    	} else if x == 394 {
    		x += 394
    	} else if x == 395 {
    		x += 395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal += ":" + tok[idx];
                }
            } else if (numTokens == 3) {
                // groupId:artifactId:goal or pluginPrefix:version:goal (since Maven 3.9.0)
    
                String firstToken = tok[0];
                // groupId or pluginPrefix? heuristics: groupId contains dot (.) but not pluginPrefix
                if (firstToken.contains(".")) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/operand_test.go

    }
    
    func TestLOONG64OperandParser(t *testing.T) {
    	parser := newParser("loong64")
    	testOperandParser(t, parser, loong64OperandTests)
    }
    
    func TestS390XOperandParser(t *testing.T) {
    	parser := newParser("s390x")
    	testOperandParser(t, parser, s390xOperandTests)
    }
    
    func TestFuncAddress(t *testing.T) {
    	type subtest struct {
    		arch  string
    		tests []operandTest
    	}
    	for _, sub := range []subtest{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmArchRISCV64  = asmArch{name: "riscv64", bigEndian: false, stack: "SP", lr: true, retRegs: []string{"X10", "F10"}}
    	asmArchS390X    = asmArch{name: "s390x", bigEndian: true, stack: "R15", lr: true}
    	asmArchWasm     = asmArch{name: "wasm", bigEndian: false, stack: "SP", lr: false}
    	asmArchLoong64  = asmArch{name: "loong64", bigEndian: false, stack: "R3", lr: true}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/crypto/aes/gcm_s390x.go

    	var hk gcmHashKey
    	c.Encrypt(hk[:], hk[:])
    	g := gcmAsm{
    		block:     c,
    		hashKey:   hk,
    		nonceSize: nonceSize,
    		tagSize:   tagSize,
    	}
    	if cpu.S390X.HasAESGCM {
    		g := gcmKMA{g}
    		return &g, nil
    	}
    	return &g, nil
    }
    
    func (g *gcmAsm) NonceSize() int {
    	return g.nonceSize
    }
    
    func (g *gcmAsm) Overhead() int {
    	return g.tagSize
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. build/dependencies.yaml

        - path: cluster/images/etcd/Makefile
          match: BASEIMAGE\?\=registry\.k8s\.io\/build-image\/debian-base-s390x:[a-zA-Z]+\-v((([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?)
        - path: test/conformance/image/Makefile
          match: BASE_IMAGE_VERSION\?=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/crypto/internal/nistec/p256_asm.go

    //                          256-bit primes"
    // https://link.springer.com/article/10.1007%2Fs13389-014-0090-x
    // https://eprint.iacr.org/2013/816.pdf
    
    //go:build (amd64 || arm64 || ppc64le || s390x) && !purego
    
    package nistec
    
    import (
    	_ "embed"
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    	"runtime"
    	"unsafe"
    )
    
    // p256Element is a P-256 base field element in [0, P-1] in the Montgomery
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  10. src/runtime/race_s390x.s

    // Second, it eliminates race-related special cases from cgocall and scheduler.
    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the s390x C calling convention.
    // Arguments are passed in R2...R6, the rest is on stack.
    // Callee-saved registers are: R6...R13, R15.
    // Temporary registers are: R0...R5, R14.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top