- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 640 for unicode (0.06 sec)
-
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/org/codelibs/fess/util/KuromojiCSVUtilTest.java
result = KuromojiCSVUtil.parse(value); assertEquals(2, result.length); assertEquals("with\rcarriage", result[0]); assertEquals("return", result[1]); // Unicode characters value = "\"日本語\",\"한국어\",\"中文\""; result = KuromojiCSVUtil.parse(value); assertEquals(3, result.length); assertEquals("日本語", result[0]); assertEquals("한국어", result[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
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/internal/smb2/info/Smb2QueryDirectoryRequestTest.java
assertEquals(0x04, Smb2QueryDirectoryRequest.SMB2_INDEX_SPECIFIED); assertEquals(0x10, Smb2QueryDirectoryRequest.SMB2_REOPEN); } @Test @DisplayName("Test with Unicode filename") void testUnicodeFileName() { request = new Smb2QueryDirectoryRequest(mockConfig); String unicodeFileName = "テスト文件.txt"; request.setFileName(unicodeFileName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K 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) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* example, the Unicode trademark sign (™) could be confused for the letters "TM" in * `http://ho™ail.com`. To mitigate this, the single character (™) maps to the string (tm). There * is similar policy for all of the 1.1 million Unicode code points. Note that some code points such * as "\ud83c\udf69" are not mapped and cannot be used in a hostname. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
CHANGELOG.md
we didn't call `Response.close()` if the coroutine was canceled before its response was returned. * Upgrade: [Okio 3.9.0][okio_3_9_0]. * Upgrade: [Kotlin 1.9.23][kotlin_1_9_23]. * Upgrade: [Unicode® IDNA 15.1.0][idna_15_1_0] ## Version 5.0.0-alpha.12 _2023-12-17_ We took too long to cut this release and there's a lot of changes in it. We've been busy.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 31.6K bytes - Viewed (1) -
README.md
## Technology Stack - **Java**: 21+ (configured via parent POM) - **OpenSearch**: Latest (provided scope) - **Apache Lucene**: Query parsing and text analysis - **ICU4J**: Unicode text processing and normalization - **JUnit 4**: Testing framework - **Maven**: Build and dependency management ## Quick Start ### Prerequisites - Java 21 or higher
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
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)