- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 243 for 64 (0.03 sec)
-
api/go1.10.txt
pkg debug/elf, const R_ARM_LDC_SB_G1 = 82 pkg debug/elf, const R_ARM_LDC_SB_G1 R_ARM pkg debug/elf, const R_ARM_LDC_SB_G2 = 83 pkg debug/elf, const R_ARM_LDC_SB_G2 R_ARM pkg debug/elf, const R_ARM_LDRS_PC_G0 = 64 pkg debug/elf, const R_ARM_LDRS_PC_G0 R_ARM pkg debug/elf, const R_ARM_LDRS_PC_G1 = 65 pkg debug/elf, const R_ARM_LDRS_PC_G1 R_ARM pkg debug/elf, const R_ARM_LDRS_PC_G2 = 66 pkg debug/elf, const R_ARM_LDRS_PC_G2 R_ARM
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/BloomFilterTest.java
public void testBitSize() { double fpp = 0.03; for (int i = 1; i < 10000; i++) { long numBits = BloomFilter.optimalNumOfBits(i, fpp); int arraySize = Ints.checkedCast(LongMath.divide(numBits, 64, RoundingMode.CEILING)); assertEquals( arraySize * Long.SIZE, BloomFilter.create(Funnels.unencodedCharsFunnel(), i, fpp).bitSize()); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 21.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
p.errorf("rhs of shift must be register or integer: %s", str) } count = (r2&15)<<8 | 1<<4 } case scanner.Int, '(': p.back() x := int64(p.expr()) if p.arch.Family == sys.ARM64 { if x >= 64 { p.errorf("register shift count too large: %s", str) } count = int16((x & 63) << 10) } else { if x >= 32 { p.errorf("register shift count too large: %s", str) }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 36.9K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s
VPEXTRD $64, X22, CX // 62e37d0816f140 VPEXTRD $64, X30, CX // 62637d0816f140 VPEXTRD $64, X22, SP // 62e37d0816f440 VPEXTRD $64, X30, SP // 62637d0816f440 VPEXTRD $64, X22, 99(R15)(R15*2) // 62837d0816b47f6300000040
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 22 14:57:15 UTC 2018 - 194.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
r.createNewFile(); } } // == 5*128 = 640 // . and .. entries = 200 byte (includes alignment) // + 64 byte header // + 8 byte query response overhead // + 110 bytes entry // -> 1022 predicted message size <= 1023 maximum buffer size // 112 bytes to alignment
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/archive/tar/reader_test.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 03 15:48:09 UTC 2024 - 46.9K bytes - Viewed (0) -
schema/relationship_test.go
} func TestParseConstraintNameWithSchemaQualifiedLongTableName(t *testing.T) { s, err := schema.Parse( &Book{}, &sync.Map{}, schema.NamingStrategy{IdentifierMaxLength: 64}, ) if err != nil { t.Fatalf("Failed to parse schema") } expectedConstraintName := "fk_my_schema_a_very_very_very_very_very_very_very_very_l4db13eec"
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 25.5K bytes - Viewed (0) -
cmd/generic-handlers.go
) const ( // Maximum allowed form data field values. 64MiB is a guessed practical value // which is more than enough to accommodate any form data fields and headers. requestFormDataSize = 64 * humanize.MiByte // For any HTTP request, request body should be not more than 16GiB + requestFormDataSize // where, 16GiB is the maximum allowed object size for object upload.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 20.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/InetAddressesTest.java
checkBigIntegerConversion("::7fff:ffff:ffff:ffff", BigInteger.valueOf(Long.MAX_VALUE)); checkBigIntegerConversion( "::ffff:ffff:ffff:ffff", BigInteger.ONE.shiftLeft(64).subtract(BigInteger.ONE)); checkBigIntegerConversion( "ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff", BigInteger.ONE.shiftLeft(128).subtract(BigInteger.ONE)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 24 16:44:05 UTC 2024 - 35.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
hashCode ^= (hashCode >>> 20) ^ (hashCode >>> 12); return hashCode ^ (hashCode >>> 7) ^ (hashCode >>> 4); } private static class PaddedLock extends ReentrantLock { /* * Padding from 40 into 64 bytes, same size as cache line. Might be beneficial to add a fourth * long here, to minimize chance of interference between consecutive locks, but I couldn't * observe any benefit from that. */ long unused1;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0)