- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 197 for Punycode (0.13 sec)
-
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/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 (1) -
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/test/java/jcifs/util/StringsTest.java
@DisplayName("Round-trip encoding/decoding should preserve string content") void testRoundTripConversion() { // Given String[] testStrings = { "Simple ASCII", "Unicode: 世界 🌍", "Mixed: ASCII + Unicode ñöt", "Special chars: !@#$%^&*()", "" }; for (String original : testStrings) { // When - round trip through UNI encoding
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.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/pac/PacUnicodeString.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.pac; /** * Represents a Unicode string structure as used in PAC data. * This class encapsulates the metadata for a Unicode string including its length, * maximum length, and pointer to the actual string data. */ public class PacUnicodeString { private final short length;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K 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/main/java/jcifs/util/Strings.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.5K bytes - Viewed (0) -
api/go1.25.txt
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jun 02 16:09:57 UTC 2025 - 6.8K bytes - Viewed (0) -
src/bufio/scan_test.go
"io" "strings" "testing" "unicode" "unicode/utf8" ) const smallMaxTokenSize = 256 // Much smaller for more efficient testing. // Test white space table matches the Unicode definition. func TestSpace(t *testing.T) { for r := rune(0); r <= utf8.MaxRune; r++ { if IsSpace(r) != unicode.IsSpace(r) { t.Fatalf("white space property disagrees: %#U should be %t", r, unicode.IsSpace(r)) } } }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Sep 22 16:22:42 UTC 2023 - 14.3K bytes - Viewed (0)