- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 121 for SPECIAL (2.41 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) -
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) -
fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt
Allow: /public/ # Case 8: Very long user-agent User-agent: VeryLongBotNameThatExceedsNormalLengthAndShouldStillBeProcessedCorrectlyWithoutAnyIssuesEvenThoughItIsExtremelyLongAndUnusual Disallow: /test/ # Case 9: Special characters in paths User-agent: SpecialCharBot Disallow: /path with spaces/ Disallow: /path%20encoded/ Disallow: /path?query=value Disallow: /path#fragment Allow: /unicode/日本語/
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 14 12:52:01 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestWithPathTest.java
@Test @DisplayName("Test with special characters in paths") void testWithSpecialCharacters() { // Test path with spaces and special characters String specialPath = "/share/folder name/file with spaces & special!@#$%.txt"; testImplementation.setPath(specialPath); assertEquals(specialPath, testImplementation.getPath()); // Test UNC path with special charactersRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0)