- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 135 for SPECIAL (0.98 sec)
-
src/test/java/jcifs/ntlmssp/av/AvTargetNameTest.java
} /** * Test with special characters in the target name. */ @Test void testSpecialCharacters() { String specialChars = "サーバー名/ドメイン.com-123!@#$"; // Japanese characters and symbols AvTargetName avTargetName = new AvTargetName(specialChars); assertEquals(specialChars, avTargetName.getTargetName(), "Special characters should be handled correctly"); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 30K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md
**Key Test Areas**: - Parameter handling (null, empty, missing) - Special character handling - Input stream validation (not consumption) - Edge cases (long filenames, paths, whitespace) **Test Count**: 10 tests **Key Scenarios**: - ✅ Valid filename extraction - ✅ Null parameters handling - ✅ Empty/missing resource name - ✅ Special characters in filename (Japanese, paths) - ✅ Input stream not consumed (only validated)
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:55:01 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
assertNotNull(enumInstance.info); } } @Test @DisplayName("getEntries should properly convert DFS roots with special characters") void testGetEntries_specialCharacters() throws Exception { // Create array with special character names netdfs.DfsEnumArray200 specialArray = new netdfs.DfsEnumArray200(); specialArray.count = 3;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
/** * A utility class for building query strings with proper escaping and parameters. * This class provides methods to construct search queries from various parameters, * handle special characters, and format the final query string for search operations. */ public class QueryStringBuilder { private static final String OR_ALT = " || "; private static final String OR = " OR ";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/resources/fess_env_crawler.properties
# Does it enable the Framework internal debug? (true only when emergency) framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4) # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development time.adjust.time.millis = 0
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Jan 29 07:34:32 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/resources/fess_env_thumbnail.properties
# Does it enable the Framework internal debug? (true only when emergency) framework.debug = false # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4) # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development time.adjust.time.millis = 0
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Feb 12 13:38:57 UTC 2018 - 2.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java
public void test_isUrlChar_commonSpecialChars() { // Test common special characters assertTrue(CharUtil.isUrlChar('.')); assertTrue(CharUtil.isUrlChar('-')); assertTrue(CharUtil.isUrlChar('*')); assertTrue(CharUtil.isUrlChar('_')); } public void test_isUrlChar_urlSpecialChars() { // Test URL-specific special characters assertTrue(CharUtil.isUrlChar(':'));Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
public void test_escapeXml_allSpecialChars() { // Test all special characters String input = "Test & < > \"quote\" 'apos'"; String expected = "Test & < > "quote" 'apos'"; assertEquals(expected, XmlUtil.escapeXml(input)); } public void test_escapeXml_noSpecialChars() { // Test string without special characters String input = "Simple text without special characters";Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
/** * This is a special name that means all hosts. If you wish to find all hosts * on a network querying a workgroup group name is the preferred method. */ public static final String ANY_HOSTS_NAME = "*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"; /** * This is a special name for querying the master browser that serves theRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0)