- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 165 for 128 (0.05 sec)
-
src/test/java/jcifs/internal/smb2/ServerMessageBlock2RequestTest.java
void testEncodeSizeMismatch() { byte[] buffer = new byte[1024]; testRequest.setTestSize(64); testRequest.setTestLength(128); IllegalStateException exception = assertThrows(IllegalStateException.class, () -> { testRequest.encode(buffer, 0); });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
void testCommonServerMessageBlockMethods() throws SMBProtocolDecodingException { // Test decode method byte[] buffer = new byte[512]; int bufferIndex = 0; int expectedDecodeLength = 128; when(response.decode(buffer, bufferIndex)).thenReturn(expectedDecodeLength); assertEquals(expectedDecodeLength, response.decode(buffer, bufferIndex)); // Test encode method
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
lib/fips140/v1.0.0.zip
96(DX) PSHUFB X15, X6 MOVOU X7, 112(DX) PSHUFB X15, X7 MOVOU X0, (SP) MOVOU X1, 16(SP) MOVOU X2, 32(SP) MOVOU X3, 48(SP) MOVOU X4, 64(SP) MOVOU X5, 80(SP) MOVOU X6, 96(SP) MOVOU X7, 112(SP) LEAQ 128(SI), SI LEAQ 128(DX), DX gcmAesEncOctetsLoop: CMPQ R9, $0x80 JB gcmAesEncOctetsEnd SUBQ $0x80, R9 MOVOU 128(SP), X0 MOVOU 144(SP), X1 MOVOU 160(SP), X2 MOVOU 176(SP), X3 MOVOU 192(SP), X4 MOVOU 208(SP), X5 MOVOU 224(SP), X6 MOVOU 240(SP), X7 MOVOU (SP), X11 PSHUFD $0x4e, X11, X12 PXOR X11, X12 MOVOU (DI),...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 635K bytes - Viewed (0) -
docs/bucket/versioning/README.md
buckets have versioning enabled automatically. Enabling and suspending versioning is done at the bucket level. Only MinIO generates version IDs, and they can't be edited. Version IDs are simply of `DCE 1.1 v4 UUID 4` (random data based), UUIDs are 128 bit numbers which are intended to have a high likelihood of uniqueness over space and time and are computationally difficult to guess. They are globally unique identifiers which can be locally generated without contacting a global registration authority....
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 12K bytes - Viewed (0) -
api/go1.3.txt
pkg syscall (netbsd-386), const MAP_FIXED ideal-int pkg syscall (netbsd-386), const MAP_HASSEMAPHORE = 512 pkg syscall (netbsd-386), const MAP_HASSEMAPHORE ideal-int pkg syscall (netbsd-386), const MAP_INHERIT = 128 pkg syscall (netbsd-386), const MAP_INHERIT ideal-int pkg syscall (netbsd-386), const MAP_INHERIT_COPY = 1 pkg syscall (netbsd-386), const MAP_INHERIT_COPY ideal-int pkg syscall (netbsd-386), const MAP_INHERIT_DEFAULT = 1
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableSetTest.java
public void testChooseTableSize() { assertEquals(8, ImmutableSet.chooseTableSize(3)); assertEquals(8, ImmutableSet.chooseTableSize(4)); assertEquals(1 << 29, ImmutableSet.chooseTableSize(1 << 28)); assertEquals(1 << 29, ImmutableSet.chooseTableSize((1 << 29) * 3 / 5)); // Now we hit the cap assertEquals(1 << 30, ImmutableSet.chooseTableSize(1 << 29));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.1K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java
} } private static long codePointToFourUtf8Bytes(int codePoint) { // codePoint has at most 21 bits return ((0xFL << 4) | (codePoint >>> 18)) | ((0x80L | (0x3F & (codePoint >>> 12))) << 8) | ((0x80L | (0x3F & (codePoint >>> 6))) << 16) | ((0x80L | (0x3F & codePoint)) << 24); } private static long charToThreeUtf8Bytes(char c) { return ((0x7L << 5) | (c >>> 12))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 11.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSetTest.java
public void testChooseTableSize() { assertEquals(8, ImmutableSet.chooseTableSize(3)); assertEquals(8, ImmutableSet.chooseTableSize(4)); assertEquals(1 << 29, ImmutableSet.chooseTableSize(1 << 28)); assertEquals(1 << 29, ImmutableSet.chooseTableSize((1 << 29) * 3 / 5)); // Now we hit the cap assertEquals(1 << 30, ImmutableSet.chooseTableSize(1 << 29));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
if (targetName.length != 0) { setTarget(new String(targetName, (flags & NTLMSSP_NEGOTIATE_UNICODE) != 0 ? UNI_ENCODING : getOEMEncoding())); } pos += 12; // 8 for target, 4 for flags if (!allZeros8(input, pos)) { final byte[] challengeBytes = new byte[8]; System.arraycopy(input, pos, challengeBytes, 0, challengeBytes.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
} catch (IllegalArgumentException expected) { assertThat(expected) .hasMessageThat() .isEqualTo("Unpaired surrogate at index " + invalidCodePointIndex); } } // 128 - [chars 0x0000 to 0x007f] private static final long ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x007f - 0x0000 + 1; // 128 private static final long EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)