- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 135 for SPECIAL (3.14 sec)
-
src/test/java/jcifs/internal/fscc/FileInformationTest.java
verify(spy).getFileInformationLevel(); verify(spy).size(); verify(spy).encode(buffer, 0); verify(spy).decode(buffer, 0, 8); // Note: Cannot verify toString() with Mockito - it's a special method // Verify return values assertEquals(FileInformation.FILE_ENDOFFILE_INFO, level); assertEquals(8, size); assertEquals(8, encoded); assertEquals(8, decoded);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
} } throw new ChildUrlsException(requestDataSet, this.getClass().getName() + "#getResponseData"); } else { logger.warn("File not found or is special file: path={}", file != null ? file.getAbsolutePath() : uri); responseData.setHttpStatusCode(Constants.NOT_FOUND_STATUS_CODE); responseData.setCharSet(charset);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java
largeContent[i] = (byte) (i % 256); } Files.write(largeDir.resolve("largefile.bin"), largeContent); // Special character files for test_specialCharactersInFileName Path specialDir = publicDir.resolve("special"); Files.createDirectory(specialDir); Files.writeString(specialDir.resolve("file with spaces.txt"), "spaces");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Tue Sep 23 06:42:59 UTC 2025 - 31.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* file operations. * </ul> * * <p>The jCIFS API maps all of these operations into the standard Java * <code>XxxputStream</code> interface. A special <code>PIPE_TYPE</code> * flags is necessary to distinguish which type of Named Pipe behavior * is desired. * * <table border="1"> * <caption>SmbNamedPipe Constructor Examples</caption> * <tr>
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
assertNotNull(tokens); assertTrue(tokens.isEmpty()); } @Test public void testAnalyzeWithSpecialCharacters() { // Test analyze with special characters String text = "******@****.*** #hashtag $100"; String field = "content"; String lang = "en"; List<AnalyzeToken> tokens = analyzer.analyze(text, field, lang);Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
import java.util.Collections; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; /** * A wrapper implementation of Map<String, Object> that provides special handling * for document data. This class wraps an existing map and provides custom behavior * for the entrySet method to ensure language fields appear first in iteration order.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
private final WitnessVersion version; private final long registrationTime; private final AtomicLong sequenceNumber; private byte[] contextHandle; // Registration flags /** No special registration flags */ public static final int WITNESS_REGISTER_NONE = 0x00000000; /** Register for IP address change notifications */ public static final int WITNESS_REGISTER_IP_NOTIFICATION = 0x00000001;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
} }); return sessionIdList; }); } /** * Generates a hashed ID from the provided URL ID string. * Encodes special characters using URL encoding or Base64 encoding as needed, * then applies a message digest algorithm to create a unique hash. * * @param urlId the URL ID string to generate a hash forRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
assertEquals("mybucket", getField(gcsConn, "bucketName")); assertEquals("dir1/dir2/file.pdf", getField(gcsConn, "objectName")); } /** * Test URL parsing with special characters in object name. */ public void test_urlParsing_specialCharacters() throws Exception { URL url = new URL("gcs://mybucket/path/file%20with%20spaces.txt"); Handler handler = new Handler();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
assertNotNull(optionsRequest); assertNotNull(connectRequest); } @Test public void test_FactoryMethodsWithSpecialCharactersInUrl() { // ## Test factory methods with special characters in URL ## // ## Act ## final String specialUrl = "http://example.com/path?query=value¶m=123#fragment"; final CurlRequest getRequest = Curl.get(specialUrl);
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 16.3K bytes - Viewed (0)