Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for DocList (0.1 sec)

  1. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                final List<Map<String, Object>> docList = searchHelper.getDocumentListByDocIds(docIds, new String[] {
                        fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldDocId(), fessConfig.getIndexFieldFavoriteCount() },
                        OptionalThing.empty(), SearchRequestType.JSON);
                List<String> urlList = new ArrayList<>(docList.size());
                for (final Map<String, Object> doc : docList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final List<Map<String, Object>> docList = results[i].getDocumentList();
                if (logger.isDebugEnabled()) {
                    logger.debug("[{}] {} docs / {} docs.", i, docList.size(), results[i].getAllRecordCount());
                }
                for (int j = 0; j < docList.size(); j++) {
                    final Map<String, Object> doc = docList.get(j);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
        }
    
        private static class TestIndexingHelper extends IndexingHelper {
            @Override
            public void sendDocuments(SearchEngineClient client, DocList docList) {
                docList.clear();
            }
    
            @Override
            public long calculateDocumentSize(Map<String, Object> map) {
                return 100L;
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

         *
         * @param index   the target index
         * @param docList list of documents to add
         * @param options callback for customizing index request options
         * @return the bulk response
         */
        public BulkResponse addAll(final String index, final List<Map<String, Object>> docList,
                final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top