- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 49 for Another (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ArchiveExtractorErrorHandlingTest.java
zos.write("Valid content ใในใ".getBytes("UTF-8")); zos.closeEntry(); // Add another valid entry final ZipEntry entry2 = new ZipEntry("another.txt"); zos.putNextEntry(entry2); zos.write("Another valid content".getBytes("UTF-8")); zos.closeEntry(); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 12.6K bytes - Viewed (0) -
README.md
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
listWithNulls.add(null); listWithNulls.add("another"); List<String> result = SuggestUtil.getAsList(listWithNulls); assertNotNull(result); assertEquals(3, result.size()); assertEquals("valid", result.get(0)); assertEquals(null, result.get(1)); assertEquals("another", result.get(2)); } @Test(expected = IllegalArgumentException.class)
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 26.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
} if (obj == null || getClass() != obj.getClass()) { return false; } final CharMappingItem other = (CharMappingItem) obj; if (!Arrays.equals(inputs, other.inputs)) { return false; } return Objects.equals(output, other.output); } /** * Returns a string representation of this CharMappingItem including all fields. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
fail("Expected CurlException"); } catch (CurlException e) { assertTrue(e.getMessage().contains("Failed to access the content")); // The cause should be another CurlException from getContentAsStream() assertTrue(e.getCause() instanceof CurlException); CurlException innerException = (CurlException) e.getCause();
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
* * @param dictFile the dictionary file metadata to store * @param file the actual file containing the dictionary content * @throws DictionaryException if the file was updated by another process, * if the file doesn't exist, or if there's an error during storage */ public void store(final DictionaryFile<? extends DictionaryItem> dictFile, final File file) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
/** * Deletes a dictionary item. * * @param item the item to delete */ public abstract void delete(T item); /** * A paginated list implementation that wraps another list and provides * pagination metadata and functionality. * * @param <E> the type of elements in this list */ public static class PagingList<E> implements List<E> {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
/** * Compares this pattern with another for priority ordering. * Longer patterns (higher priority length) come first. * @param other the other pattern to compare with * @return negative if this has higher priority, positive if other has higher priority */ @Override public int compareTo(final PathPattern other) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* @return a map containing the processed document data * @throws CrawlingAccessException if crawling fails or configuration is invalid * @throws ChildUrlsException if the URL redirects to another location * @throws CrawlerSystemException if data deserialization fails */ public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java
} public void testParse_mixedValidAndInvalidDirectives() { String robotsTxtContent = "User-agent: TestBot\n" + "Disallow: /valid1/\n" + "InvalidDirective: value\n" + "Disallow: /valid2/\n" + "Another-Invalid: test\n" + "Allow: /valid3/\n" + "NoColon\n" + "Disallow: /valid4/\n"; RobotsTxt robotsTxt; final InputStream in = new java.io.ByteArrayInputStream(robotsTxtContent.getBytes()); try {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20.6K bytes - Viewed (0)