- Sort Score
- Result 10 results
- Languages All
Results 41 - 48 of 48 for s390x (0.09 sec)
-
src/cmd/asm/internal/asm/endtoend_test.go
testEndToEnd(t, "riscv64", "riscv64") } func TestRISCVErrors(t *testing.T) { testErrors(t, "riscv64", "riscv64error") } func TestS390XEndToEnd(t *testing.T) { testEndToEnd(t, "s390x", "s390x")
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Dec 07 18:42:59 UTC 2023 - 11.6K bytes - Viewed (0) -
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: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 18:31:05 UTC 2023 - 23.9K bytes - Viewed (0) -
doc/asm.html
<p> This assembler is used by GOARCH values ppc64 and ppc64le. </p> <p> Reference: <a href="/pkg/cmd/internal/obj/ppc64">Go PPC64 Assembly Instructions Reference Manual</a> </p> <h3 id="s390x">IBM z/Architecture, a.k.a. s390x</h3> <p> The registers <code>R10</code> and <code>R11</code> are reserved. The assembler uses them to hold temporary values when assembling some instructions. </p> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
cmd/testdata/xl-meta-merge.zip
nio/release/linux-amd64/minio> | | 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> | The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 08 17:50:48 UTC 2024 - 30.2K bytes - Viewed (0) -
tensorflow/BUILD
) config_setting( name = "linux_s390x", constraint_values = if_google( ["//third_party/bazel_platforms/os:linux"], [], ), values = {"cpu": "s390x"}, visibility = ["//visibility:public"], ) config_setting( name = "linux_mips64", constraint_values = if_google( ["//third_party/bazel_platforms/os:linux"], [], ),
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 16 05:28:35 UTC 2024 - 53.5K bytes - Viewed (0) -
cmd/testdata/decryptObjectInfo.json.zst
ncryption-S3-Sealed-Key":"IAAfAOM/MAL8V00qquP4jyl5Tsno+er9YUIsRTAuA==","X-Minio-Internal-Server-Side-Encryption-Seal-Algorithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/internal/obj/s390x/vector.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"YrpZMseMHDgE6NFVKUoi=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfANLu7Rubj1UCqVGl/r3h...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 29 16:34:20 UTC 2020 - 164K bytes - Viewed (0) -
configure.py
def is_macos(): return platform.system() == 'Darwin' def is_ppc64le(): return platform.machine() == 'ppc64le' def is_s390x(): return platform.machine() == 's390x' def is_cygwin(): return platform.system().startswith('CYGWIN_NT') def get_input(question): try: try: answer = raw_input(question) except NameError:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 48.2K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
if goos == "darwin" { return []string{"-arch", "arm64"} } case "386": return []string{"-m32"} case "arm": return []string{"-marm"} // not thumb case "s390": return []string{"-m31"} case "s390x": return []string{"-m64"} case "mips64", "mips64le": if gomips64 == "hardfloat" { return []string{"-mabi=64", "-mhard-float"} } else if gomips64 == "softfloat" {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0)