- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 535 for Unicode (0.57 sec)
-
src/test/java/jcifs/smb/FileEntryTest.java
static Stream<Arguments> nameProvider() { return Stream.of(Arguments.of("", "empty string is allowed"), Arguments.of(" ", "single space is preserved"), Arguments.of("复杂名.txt", "unicode name is preserved"), Arguments.of(null, "null name is passed through")); } @ParameterizedTest(name = "getName returns as-set: [{0}] - {1}") @MethodSource("nameProvider")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertEquals(messageWithSpecialChars, exception.getMessage()); } public void test_unicodeInMessage() { // Test with Unicode characters in message String unicodeMessage = "オフセットが制限を超えました: 結果 範囲外 😱 ⚠️"; ResultOffsetExceededException exception = new ResultOffsetExceededException(unicodeMessage);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java
// Behavior is determined by static initialization, not runtime config byte[] unicodeHash = auth.getUnicodeHash(challenge); byte[] ansiHash = auth.getAnsiHash(challenge); // Unicode hash returns empty array due to static LM_COMPATIBILITY=3 assertEquals(0, unicodeHash.length); // ANSI hash always returns 24 bytes assertEquals(24, ansiHash.length); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
int notifyOffset = 80; SMBUtil.writeInt4(0, buffer, notifyOffset); // NextEntryOffset (0 = last entry) SMBUtil.writeInt4(1, buffer, notifyOffset + 4); // Action (FILE_ACTION_ADDED) // Write filename in Unicode String fileName = "test.txt"; byte[] fileNameBytes = fileName.getBytes("UnicodeLittleUnmarked"); SMBUtil.writeInt4(fileNameBytes.length, buffer, notifyOffset + 8); // FileNameLength
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* lookups. * * <p>During construction, names are normalized in two ways: * * <ol> * <li>ASCII uppercase characters are converted to lowercase. * <li>Unicode dot separators other than the ASCII period ({@code '.'}) are converted to the ASCII * period. * </ol> * * <p>The normalized values will be returned from {@link #toString()} and {@link #parts()}, and will
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt
* encoded. */ fun getEffectiveTldPlusOne(domain: String): String? { // We use UTF-8 in the list so we need to convert to Unicode. val unicodeDomain = IDN.toUnicode(domain) val domainLabels = splitDomain(unicodeDomain) val rule = findMatchingRule(domainLabels) if (domainLabels.size == rule.size && rule[0][0] != EXCEPTION_MARKER) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
assertTrue(exception.getMessage().contains("Parent: http://example.com/")); assertNull(exception.getCause()); } public void test_constructor_withUnicodeCharacters() { // Test with Unicode characters in URLs String parentUrl = "http://example.com/親/ディレクトリ"; String url = "http://example.com/子/ファイル.html"; ContentNotFoundException exception = new ContentNotFoundException(parentUrl, url);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.putShort((short) 1); // serverType bb.putShort((short) 0); // rflags bb.putShort((short) 5); // proximity bb.putShort((short) 300); // ttl bb.putShort((short) 22); // pathOffset bb.putShort((short) 0); // altPathOffset bb.putShort((short) 0); // nodeOffset // Unicode string with special characters
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
assertEquals(message, exception.getMessage()); assertFalse(exception.aborted()); } public void test_constructor_withUnicodeInMessage() { // Test with Unicode characters in message String url = "http://example.com/test"; String message = "エラーメッセージ 错误信息 🚨"; Exception cause = new RuntimeException("Error cause");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt
# Ideographic full stop (full-width period for Chinese, etc.) should be # treated as a dot. # U+3002 is mapped to U+002E (dot) http://www.foo\u3002bar.com s:http p:/ h:www.foo.bar.com # Invalid unicode characters should fail... # U+FDD0 is disallowed; %ef%b7%90 is U+FDD0 http://\ufdd0zyx.com # ...This is the same as previous but escaped. http://%ef%b7%90zyx.com
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.3K bytes - Viewed (0)