- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 41 for Another (1.62 sec)
-
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) -
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) -
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) -
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/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) -
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) -
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) -
src/main/java/org/codelibs/core/lang/StringUtil.java
*/ public static final boolean isNotEmpty(final String text) { return !isEmpty(text); } /** * Replaces all occurrences of a substring within a string with another string. * * @param text * The original string. * @param fromText * The substring to be replaced. * @param toText * The replacement substring.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
logger.debug("Failed to check index status: indexName={}", indexName, e); } return exists; } /** * Copies documents from one index to another with optional transformation. * * @param fromIndex the source index name * @param toIndex the destination index name * @param waitForCompletion whether to wait for the operation to complete
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
} final PrunedTag other = (PrunedTag) obj; return StringUtils.compare(tag, other.tag) == 0 // && StringUtils.compare(css, other.css) == 0 // && StringUtils.compare(id, other.id) == 0 // && StringUtils.compare(attrName, other.attrName) == 0 // && StringUtils.compare(attrValue, other.attrValue) == 0; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 7.1K bytes - Viewed (0)