Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for s390 (0.04 sec)

  1. src/go/types/gccgosizes.go

    	"mips64p32":   {4, 8},
    	"mips64p32le": {4, 8},
    	"nios2":       {4, 8},
    	"ppc":         {4, 8},
    	"ppc64":       {8, 8},
    	"ppc64le":     {8, 8},
    	"riscv":       {4, 8},
    	"riscv64":     {8, 8},
    	"s390":        {4, 8},
    	"s390x":       {8, 8},
    	"sh":          {4, 8},
    	"shbe":        {4, 8},
    	"sparc":       {4, 8},
    	"sparc64":     {8, 8},
    	"wasm":        {8, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

            echo "OS: ${os} JDK: ${jdk} => Label: ${osLabel} JDK: ${jdkName} Arch: s390x"
    
            String stageId = "${os}-jdk${jdk}-s390x"
            String stageLabel = "Run ITs ${os.capitalize()} Java ${jdk} on s390x"
            runITsTasks[stageId] = {
                node('s390x') {
                    stage("${stageLabel}") {
                        echo "NODE_NAME = ${env.NODE_NAME}"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker_test.go

    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.4.30", Endpoint: "localhost:2390"}},
    					expectedResult: false}},
    		},
    		{
    			testName: "Disabled - supported versions bound, 3.5.0",
    			rounds: []testCase{
    				{endpointsVersion: []mockEndpointVersion{
    					{Version: "3.5.0", Endpoint: "localhost:2390"}},
    					expectedResult: false}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. test/codegen/math.go

    	// amd64:"ROUNDSD\t[$]2"
    	// s390x:"FIDBR\t[$]6"
    	// arm64:"FRINTPD"
    	// ppc64x:"FRIP"
    	// wasm:"F64Ceil"
    	sink64[0] = math.Ceil(x)
    
    	// amd64/v2:-".*x86HasSSE41" amd64/v3:-".*x86HasSSE41"
    	// amd64:"ROUNDSD\t[$]1"
    	// s390x:"FIDBR\t[$]7"
    	// arm64:"FRINTMD"
    	// ppc64x:"FRIM"
    	// wasm:"F64Floor"
    	sink64[1] = math.Floor(x)
    
    	// s390x:"FIDBR\t[$]1"
    	// arm64:"FRINTAD"
    	// ppc64x:"FRIN"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. test/codegen/floats.go

    }
    
    func CmpZero64(f float64) bool {
    	// s390x:"LTDBR",-"FCMPU"
    	return f <= 0
    }
    
    func CmpZero32(f float32) bool {
    	// s390x:"LTEBR",-"CEBR"
    	return f <= 0
    }
    
    func CmpWithSub(a float64, b float64) bool {
    	f := a - b
    	// s390x:-"LTDBR"
    	return f <= 0
    }
    
    func CmpWithAdd(a float64, b float64) bool {
    	f := a + b
    	// s390x:-"LTDBR"
    	return f <= 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 15:24:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. test/codegen/rotate.go

    	// riscv64: "RORI\t[$]57"
    	a += x<<7 | x>>57
    
    	// amd64:"ROLQ\t[$]8"
    	// arm64:"ROR\t[$]56"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]8, "
    	// ppc64x:"ROTL\t[$]8"
    	// loong64: "ROTRV\t[$]56"
    	// riscv64: "RORI\t[$]56"
    	a += x<<8 + x>>56
    
    	// amd64:"ROLQ\t[$]9"
    	// arm64:"ROR\t[$]55"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]9, "
    	// ppc64x:"ROTL\t[$]9"
    	// loong64: "ROTRV\t[$]55"
    	// riscv64: "RORI\t[$]55"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. test/codegen/stack.go

    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    func ZeroLargeStruct(x *T) {
    	t := T{}
    	*x = t
    }
    
    // Check that structs are partially initialised directly (issue #24386).
    
    // Notes:
    // - 386 fails due to spilling a register
    // amd64:"TEXT\t.*, [$]0-"
    // arm:"TEXT\t.*, [$]0-" (spills return address)
    // arm64:"TEXT\t.*, [$]0-"
    // ppc64x:"TEXT\t.*, [$]0-"
    // s390x:"TEXT\t.*, [$]0-"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/export_test.go

    	"cmd/internal/obj"
    	"cmd/internal/obj/arm64"
    	"cmd/internal/obj/s390x"
    	"cmd/internal/obj/x86"
    	"cmd/internal/src"
    	"cmd/internal/sys"
    )
    
    var CheckFunc = checkFunc
    var Opt = opt
    var Deadcode = deadcode
    var Copyelim = copyelim
    
    var testCtxts = map[string]*obj.Link{
    	"amd64": obj.Linknew(&x86.Linkamd64),
    	"s390x": obj.Linknew(&s390x.Links390x),
    	"arm64": obj.Linknew(&arm64.Linkarm64),
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. docker-buildx.sh

    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release .
    
    docker buildx prune -f
    
    docker buildx build --push --no-cache \
    	--build-arg RELEASE="${release}" \
    	-t "minio/minio:${release}-cpuv1" \
    	-t "quay.io/minio/minio:${release}-cpuv1" \
    	--platform=linux/arm64,linux/amd64,linux/ppc64le,linux/s390x \
    	-f Dockerfile.release.old_cpu .
    
    docker buildx prune -f
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/internal/platform/supported.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":
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top