- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 414 for 32 (0.31 sec)
-
src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java
// Verify machineId part (should be truncated) byte[] expectedMachineId = new byte[32]; for (int i = 0; i < 32; i++) { expectedMachineId[i] = (byte) i; } byte[] actualMachineId = new byte[32]; System.arraycopy(value, 16, actualMachineId, 0, 32); assertArrayEquals(expectedMachineId, actualMachineId); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm.s
MOVHU.W R3, 0x20(R4) // MOVHU.W R3, 32(R4) // b032e4e1 MOVHU.P R3, 0x20(R4) // MOVHU.P R3, 32(R4) // b032c4e0 MOVH R3, -0x20(R4) // MOVH R3, -32(R4) // b03244e1 MOVH.W R3, -0x20(R4) // MOVH.W R3, -32(R4) // b03264e1 MOVH.P R3, -0x20(R4) // MOVH.P R3, -32(R4) // b03244e0 MOVHS R3, -0x20(R4) // MOVHS R3, -32(R4) // b03244e1
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 15 20:51:01 UTC 2023 - 69K bytes - Viewed (0) -
cmd/encryption-v1_test.go
}, { ObjectKey: [32]byte{}, ObjectInfo: ObjectInfo{ETag: "916516b396f0f4d4f2a0e7177557bec4-738"}, ETag: "916516b396f0f4d4f2a0e7177557bec4-738", }, { ObjectKey: [32]byte{}, ObjectInfo: ObjectInfo{ETag: "916516b396f0f4d4f2a0e7177557bec4-Q"}, ETag: "", ShouldFail: true, // Q is not a number }, { ObjectKey: [32]byte{},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 19.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/Murmur3_32HashFunction.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java
// When int bytesWritten = request.writeBytesWireFormat(buffer, offset); // Then assertEquals(32, bytesWritten); // Verify structure size (32) assertEquals(32, SMBUtil.readInt2(buffer, offset)); // Verify notify flags assertEquals(Smb2ChangeNotifyRequest.SMB2_WATCH_TREE, SMBUtil.readInt2(buffer, offset + 2));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64validation.s
VSLLVI $32, V2, V3 // ERROR "unsigned immediate 32 must be in range [0, 31]" VSLLVI $-1, V2, V3 // ERROR "unsigned immediate -1 must be in range [0, 31]" VSRLVV X10, V2, V3 // ERROR "expected vector register in vs1 position" VSRLVX V1, V2, V3 // ERROR "expected integer register in rs1 position" VSRLVI $32, V2, V3 // ERROR "unsigned immediate 32 must be in range [0, 31]"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed May 21 14:19:19 UTC 2025 - 31.6K bytes - Viewed (0) -
api/go1.9.txt
pkg math/bits (freebsd-386), const UintSize = 32 pkg math/bits (freebsd-386-cgo), const UintSize = 32 pkg math/bits (freebsd-amd64), const UintSize = 64 pkg math/bits (freebsd-amd64-cgo), const UintSize = 64 pkg math/bits (freebsd-arm), const UintSize = 32 pkg math/bits (freebsd-arm-cgo), const UintSize = 32 pkg math/bits (linux-386), const UintSize = 32 pkg math/bits (linux-386-cgo), const UintSize = 32 pkg math/bits (linux-amd64), const UintSize = 64
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 04 20:20:20 UTC 2021 - 10.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java
} public void testAscending() { // Test 32 byte arrays of ascending. byte[] ascending = new byte[32]; for (int i = 0; i < 32; i++) { ascending[i] = (byte) i; } assertCrc(0x46dd794e, ascending); } public void testDescending() { // Test 32 byte arrays of descending. byte[] descending = new byte[32]; for (int i = 0; i < 32; i++) { descending[i] = (byte) (31 - i); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
} } // goodFastHash(32) uses Murmur3_32. Use the same epsilon bounds. public void testGoodFastHash32() { HashTestUtils.check2BitAvalanche(Hashing.goodFastHash(32), 250, 0.20); HashTestUtils.checkAvalanche(Hashing.goodFastHash(32), 250, 0.17); HashTestUtils.checkNo2BitCharacteristics(Hashing.goodFastHash(32)); HashTestUtils.checkNoFunnels(Hashing.goodFastHash(32));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (2) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
ChecksumHashFunction( ImmutableSupplier<? extends Checksum> checksumSupplier, int bits, String toString) { this.checksumSupplier = checkNotNull(checksumSupplier); checkArgument(bits == 32 || bits == 64, "bits (%s) must be either 32 or 64", bits); this.bits = bits; this.toString = checkNotNull(toString); } @Override public int bits() { return bits; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0)