- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 248 for DOCUMENT (0.06 sec)
-
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
} /** * Gets a boost document rule by its ID. * @param id The boost document rule ID. * @return Optional entity containing the boost document rule if found. */ public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } /** * Stores (inserts or updates) a boost document rule.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
final Map<String, Object> document = new HashMap<>(); document.put("title", ""); assertEquals("", viewHelper.getContentTitle(document)); document.put("title", "111"); assertEquals("111", viewHelper.getContentTitle(document)); document.put("title", "aaa"); assertEquals("<strong>aaa</strong>", viewHelper.getContentTitle(document)); document.put("title", "AAA");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
logger.debug("The number of an added document is {}.", documentSize.get()); } } /** * Processes a document through the ingest pipeline. * Applies all available ingesters to transform the document data. * * @param paramMap the data store parameters * @param dataMap the document data to process * @return the processed document data */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} } /** * Extracts anchor URLs from the HTML document. * * @param document the parsed HTML document * @param responseData the response data from crawling * @return list of anchor URLs found in the document */ protected List<String> getAnchorList(final Document document, final ResponseData responseData) { List<RequestData> anchorList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
}); return asEditHtml(); } /** * Displays the form for editing an existing document. * * @param form the edit form containing document ID * @return HTML response for the document edit form */ @Execute @Secured({ ROLE }) public HtmlResponse edit(final EditForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
} /** * Extracts metadata from the PDF document and adds it to the extraction result. * @param document the PDF document * @param extractData the extraction data to add metadata to */ protected void extractMetadata(final PDDocument document, final ExtractData extractData) { final PDDocumentInformation info = document.getDocumentInformation(); if (info == null) { return;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
return null; } /** * Processes a document through the ingest pipeline if an ingest factory is available. * Applies all configured ingesters to transform and enrich the document data. * * @param accessResult the access result containing document metadata * @param map the document data map to process * @return the processed document map after applying all ingesters */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
// Test task creation with null document map String path = "/path/to/document.pdf"; Tuple3<String, String, String> task = thumbnailGenerator.createTask(path, null); assertNull(task); } public void test_createTask_withEmptyDocMap() { // Test task creation with empty document map String path = "/path/to/document.pdf";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
* reader.setScrollSize(1000); // Set the scroll size * reader.setLimitOfDocumentSize(1024 * 1024); // Limit document size to 1MB * reader.setQuery(QueryBuilders.termQuery("field", "value")); // Set a query * * Map<String, Object> document; * while ((document = reader.read()) != null) { * // Process the document * System.out.println(document); * } * * reader.close(); // Close the reader to release resources * } * </pre> */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0)