- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 535 for Unicode (0.15 sec)
-
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
* @param dstIndex the starting offset in the buffer * @param unicode true to use Unicode encoding, false for OEM encoding * @return the number of bytes written */ protected int writeString(final String str, final byte[] dst, int dstIndex, final boolean unicode) { final int start = dstIndex; if (unicode) { // Unicode requires word alignment
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmSspTest.java
// Domain (12 bytes "DOMAIN" in Unicode at offset 112) message[28] = 12; // Length message[29] = 0; message[30] = 12; // Max Length message[31] = 0; message[32] = 112; // Offset message[33] = 0; message[34] = 0; message[35] = 0; // User (8 bytes "user" in Unicode at offset 124) message[36] = 8; // Length
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComOpenAndXTest.java
assertEquals(26, result); } /** * Test writeBytesWireFormat method with Unicode. */ @Test void testWriteBytesWireFormat_Unicode() { smbComOpenAndX = new SmbComOpenAndX(fileName, access, 0, andx); smbComOpenAndX.useUnicode = true; // For Unicode: 1 byte (initial null in writeBytesWireFormat)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/rpc.java
for (int _i = 0; _i < _uuid_nodes; _i++) { this.uuid.node[_i] = (byte) _src.dec_ndr_small(); } } } /** * Unicode string structure for DCE/RPC operations. * Represents a Unicode string with length information. */ public static class unicode_string extends NdrObject { /** * Default constructor for unicode_string. */
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/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
assertNotNull(exception); assertEquals(message, exception.getMessage()); } public void test_constructorWithString_unicodeCharacters() { // Test with message containing unicode characters String message = "ジョブが見つかりません: 日本語のテスト"; JobNotFoundException exception = new JobNotFoundException(message); assertNotNull(exception);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
response.getServerData().scapabilities = SmbConstants.CAP_UNICODE; response.getServerData().encryptionKeyLength = 8; // Set Unicode flag to use Unicode encoding setNegotiatedFlags2(response, SmbConstants.FLAGS2_UNICODE); // Domain name in Unicode (UTF-16LE) with null terminator byte[] domainBytes = "DOMAIN\0".getBytes("UTF-16LE"); // Use reflection to set protected byteCount field
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/rpc.java
for (int _i = 0; _i < _uuid_nodes; _i++) { uuid.node[_i] = (byte) _src.dec_ndr_small(); } } } /** * Unicode string structure for DCE/RPC. * Represents a counted Unicode string as used in RPC protocols. */ public static class unicode_string extends NdrObject { /** * Default constructor for unicode_string. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java
} } @Nested @DisplayName("Unicode Support Tests") class UnicodeSupportTests { @Test @DisplayName("Should always force unicode") void testIsForceUnicode() { assertTrue(response.isForceUnicode()); } @Test @DisplayName("Should consistently return true for unicode") void testIsForceUnicodeMultipleCalls() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/AsciiTest.java
import org.jspecify.annotations.NullUnmarked; /** * Unit test for {@link Ascii}. * * @author Craig Berry */ @GwtCompatible @NullUnmarked public class AsciiTest extends TestCase { /** * The Unicode points {@code 00c1} and {@code 00e1} are the upper- and lowercase forms of * A-with-acute-accent, {@code Á} and {@code á}. */ private static final String IGNORED = "`10-=~!@#$%^&*()_+[]\\{}|;':\",./<>?'\u00c1\u00e1\n";
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 5.5K bytes - Viewed (0)