- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 21 for 84 (0.07 seconds)
-
api/go1.1.txt
pkg debug/dwarf, const AttrDiscrList = 61 pkg debug/dwarf, const AttrDiscrValue = 22 pkg debug/dwarf, const AttrEncoding = 62 pkg debug/dwarf, const AttrEntrypc = 82 pkg debug/dwarf, const AttrExtension = 84 pkg debug/dwarf, const AttrExternal = 63 pkg debug/dwarf, const AttrFrameBase = 64 pkg debug/dwarf, const AttrFriend = 65 pkg debug/dwarf, const AttrHighpc = 18 pkg debug/dwarf, const AttrIdentifierCase = 66
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Mar 31 20:37:15 GMT 2022 - 2.6M bytes - Click Count (0) -
docs/metrics/prometheus/grafana/bucket/minio-bucket.json
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Aug 04 01:46:49 GMT 2025 - 101.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
VEXTRINSH $0x27, V1, V2 // VEXTRINSH $39, V1, V2 // 229c8873 VEXTRINSW $0x36, V1, V2 // VEXTRINSW $54, V1, V2 // 22d88473 VEXTRINSV $0x45, V1, V2 // VEXTRINSV $69, V1, V2 // 22148173 XVEXTRINSB $0x54, X1, X2 // XVEXTRINSB $84, X1, X2 // 22508d77 XVEXTRINSH $0x63, X1, X2 // XVEXTRINSH $99, X1, X2 // 228c8977 XVEXTRINSW $0x72, X1, X2 // XVEXTRINSW $114, X1, X2 // 22c88577 XVEXTRINSV $0x81, X1, X2 // XVEXTRINSV $129, X1, X2 // 22048277
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Nov 27 00:46:52 GMT 2025 - 44.5K bytes - Click Count (0) -
api/go1.5.txt
pkg debug/elf, const R_PPC64_GOT_TLSLD16_HA R_PPC64 pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI = 85 pkg debug/elf, const R_PPC64_GOT_TLSLD16_HI R_PPC64 pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO = 84 pkg debug/elf, const R_PPC64_GOT_TLSLD16_LO R_PPC64 pkg debug/elf, const R_PPC64_GOT_TPREL16_DS = 87 pkg debug/elf, const R_PPC64_GOT_TPREL16_DS R_PPC64 pkg debug/elf, const R_PPC64_GOT_TPREL16_HA = 90
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), const ENOTTY = 25 pkg syscall (freebsd-arm64), const ENXIO = 6 pkg syscall (freebsd-arm64), const EOPNOTSUPP = 45 pkg syscall (freebsd-arm64), const EOVERFLOW = 84 pkg syscall (freebsd-arm64), const EOWNERDEAD = 96 pkg syscall (freebsd-arm64), const EOWNERDEAD Errno pkg syscall (freebsd-arm64), const EPERM = 1 pkg syscall (freebsd-arm64), const EPFNOSUPPORT = 46
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Feb 17 20:31:46 GMT 2023 - 508.9K bytes - Click Count (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), const ENOTTY = 25 pkg syscall (netbsd-arm64-cgo), const ENXIO = 6 pkg syscall (netbsd-arm64-cgo), const EOPNOTSUPP = 45 pkg syscall (netbsd-arm64-cgo), const EOVERFLOW = 84 pkg syscall (netbsd-arm64-cgo), const EPERM = 1 pkg syscall (netbsd-arm64-cgo), const EPFNOSUPPORT = 46 pkg syscall (netbsd-arm64-cgo), const EPIPE = 32 pkg syscall (netbsd-arm64-cgo), const EPROCLIM = 67
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Aug 08 18:44:16 GMT 2019 - 452.6K bytes - Click Count (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), const ENOTTY = 25 pkg syscall (darwin-arm64), const ENXIO = 6 pkg syscall (darwin-arm64), const EOPNOTSUPP = 102 pkg syscall (darwin-arm64), const EOVERFLOW = 84 pkg syscall (darwin-arm64), const EOWNERDEAD = 105 pkg syscall (darwin-arm64), const EOWNERDEAD Errno pkg syscall (darwin-arm64), const EPERM = 1 pkg syscall (darwin-arm64), const EPFNOSUPPORT = 46
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Fri Dec 02 16:30:41 GMT 2022 - 479.2K bytes - Click Count (0) -
lib/fips140/v1.0.0-c2097c7c.zip
set illegally") } var digits [64]int8 // Compute unsigned radix-16 digits: for i := 0; i < 32; i++ { digits[2*i] = int8(b[i] & 15) digits[2*i+1] = int8((b[i] >> 4) & 15) } // Recenter coefficients: for i := 0; i < 63; i++ { carry := (digits[i] + 8) >> 4 digits[i] -= carry << 4 digits[i+1] += carry } return digits } golang.org/fips140@v1.0.0-c2097c7c/fips140/v1.0.0-c2097c7c/edwards25519/scalar_alias_test.go // Copyright (c) 2019 The Go Authors. All rights reserved. // Use of this source code is governed...
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Sep 25 19:53:19 GMT 2025 - 642.7K bytes - Click Count (0) -
doc/go_spec.html
d = 1 << iota // d == 8 (iota == 3) ) const ( u = iota * 42 // u == 0 (untyped integer constant) v float64 = iota * 42 // v == 42.0 (float64 constant) w = iota * 42 // w == 84 (untyped integer constant) ) const x = iota // x == 0 const y = iota // y == 0 </pre> <p> By definition, multiple uses of <code>iota</code> in the same ConstSpec all have the same value:
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Dec 02 23:07:19 GMT 2025 - 286.5K bytes - Click Count (1) -
cmd/testdata/decryptObjectInfo.json.zst
rithm":"DAREv2-HMAC-SHA256","content-type":"application/octet-stream"}},{"Bucket":"buck1","Name":"go_113/src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go","UserDef":{"X-Minio-Internal-Server-Side-Encryption-Iv":"5ELsexXMq6BRXMMM7n0E+cU+84+VPIEg/FbhSH0=","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Key-Id":"my-minio-key","X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key":"IAAfAOUev2b+Fxixy0CU1l6ZOIh7Lha1/63vkzwRClYsjA==","X-Minio-Internal-Server-Side-Encryption-S3-Sealed-...Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Oct 29 16:34:20 GMT 2020 - 164K bytes - Click Count (0)