- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 165 for 128 (0.01 sec)
-
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
} @Test @DisplayName("Test readString with ASCII encoding") void testReadStringAscii() throws Exception { String testString = "TestString"; byte[] buffer = new byte[128]; byte[] stringBytes = testString.getBytes(StandardCharsets.US_ASCII); System.arraycopy(stringBytes, 0, buffer, 10, stringBytes.length); buffer[10 + stringBytes.length] = 0; // null terminator
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt
assertThat(formEncode(124)).isEqualTo("%7C") assertThat(formEncode(125)).isEqualTo("%7D") assertThat(formEncode(126)).isEqualTo("%7E") assertThat(formEncode(127)).isEqualTo("%7F") assertThat(formEncode(128)).isEqualTo("%C2%80") assertThat(formEncode(255)).isEqualTo("%C3%BF") } @Throws(IOException::class) private fun formEncode(codePoint: Int): String {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
// Multi-byte tag (e.g., 80) InputStream s = new ByteArrayInputStream(new byte[] { (byte) 0x81, 0x00 }); int tagNo = ASN1Util.readTagNumber(s, 0x1F); assertEquals(128, tagNo); } @Test void testReadTagNumber_CorruptedHighTag() { // High tag < 31 InputStream s = new ByteArrayInputStream(new byte[] { 0x1E });
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- [Client Binaries](#client-binaries-1) - [Server Binaries](#server-binaries-1) - [Node Binaries](#node-binaries-1) - [Changelog since v1.12.8](#changelog-since-v1128) - [Other notable changes](#other-notable-changes-1) - [v1.12.8](#v1128) - [Downloads for v1.12.8](#downloads-for-v1128) - [Client Binaries](#client-binaries-2) - [Server Binaries](#server-binaries-2) - [Node Binaries](#node-binaries-2)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
} @Test @DisplayName("Test getNextEntryOffset returns correct value") void testGetNextEntryOffset() throws SMBProtocolDecodingException { int expectedOffset = 128; byte[] buffer = createNotificationBufferWithNextOffset("file.txt", FileNotifyInformation.FILE_ACTION_ADDED, expectedOffset); notifyInfo.decode(buffer, 0, buffer.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
} if (!msg2.getFlag(NtlmFlags.NTLMSSP_NEGOTIATE_128)) { throw new SmbUnsupportedOperationException("Server does not support 128-bit keys"); } } this.ntlmsspFlags &= msg2.getFlags(); final Type3Message msg3 = createType3Message(msg2); msg3.setupMIC(this.type1Bytes, token);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/SetViewTest.java
assertMinSize(difference(setSize(2), setSize(3)), 0); assertMinSize(difference(setSize(3), setSize(2)), 1); assertMinSize(difference(setSizeRange(10, 20), setSizeRange(1, 2)), 8); assertMinSize(difference(setSizeRange(1, 2), setSizeRange(10, 20)), 0); assertMinSize(difference(setSizeRange(10, 20), setSizeRange(11, 12)), 0);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2LockTest.java
import jcifs.internal.util.SMBUtil; @DisplayName("Smb2Lock Test") class Smb2LockTest { private Smb2Lock lock; private byte[] buffer; @BeforeEach void setUp() { buffer = new byte[128]; } @Nested @DisplayName("Constructor Tests") class ConstructorTests { @Test @DisplayName("Should create lock with valid parameters")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0)