Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for IDs (0.03 sec)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

     *   -n, --name name               : Name for the crawling session
     *   -w, --webConfigIds ids        : Comma-separated web config IDs
     *   -f, --fileConfigIds ids       : Comma-separated file config IDs
     *   -d, --dataConfigIds ids       : Comma-separated data config IDs
     *   -p, --properties path         : Properties file path
     *   -e, --expires days            : Expires for documents (in days)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        }
    
        /**
         * Retrieves a list of session IDs with their document counts from the search engine.
         * Uses aggregation to get session segments and their corresponding document counts.
         *
         * @param searchEngineClient the search engine client to perform the query
         * @return a list of maps containing session IDs and their document counts
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/score/ScoreBooster.java

         */
        protected Function<Map<String, Object>, Long> requestHandler = params -> {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String[] ids = idFinder.apply(params);
            if (ids.length == 0) {
                return 0L;
            }
            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
            if (bulkRequestBuilder == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                        return cookie.getValue();
                    }
                }
            }
            return null;
        }
    
        /**
         * Stores the document IDs associated with a search query for tracking purposes.
         * This method caches the document IDs returned for a specific query to enable click tracking and analytics.
         *
         * @param queryId the unique identifier for the search query
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            assertTrue(result.contains("File Config Id: ALL"));
            assertTrue(result.contains("Data Config Id: ALL"));
        }
    
        // Test execute method with specific config IDs
        public void test_execute_withConfigIds() {
            // Setup test
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
                    return 0;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        /**
         * Gets the list of crawler session IDs being processed.
         *
         * @return the list of session IDs
         */
        public List<String> getSessionIdList() {
            return sessionIdList;
        }
    
        /**
         * Sets the list of crawler session IDs to process.
         *
         * @param sessionIdList the list of session IDs to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        }
    
        /**
         * Deletes all documents that match the specified document IDs.
         *
         * @param searchEngineClient the search engine client to use for deletion
         * @param docIdList the list of document IDs to delete
         * @return the number of documents that were deleted
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                queryHelper.processSearchPreference(builder, userBean, docId);
                return true;
            });
    
        }
    
        /**
         * Retrieves multiple documents by their document IDs.
         *
         * @param docIds Array of document IDs to retrieve
         * @param fields Array of field names to include in the results
         * @param userBean Optional user information for permission checking
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            StopwordsItem item = stopwordsFile.get(1).get();
            stopwordsFile.delete(item);
    
            // Verify the item count decreased
            // Note: get(1) may still return an item if IDs are reassigned
            assertTrue(stopwordsFile.stopwordsItemList.size() < originalSize);
        }
    
        // Test reload with InputStream
        public void test_reload_withComments() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         * specified in the configIdList parameter.
         *
         * @param sessionId unique identifier for this crawling session
         * @param configIdList list of data configuration IDs to crawl
         */
        public void crawl(final String sessionId, final List<String> configIdList) {
            final List<DataConfig> configList = ComponentUtil.getCrawlingConfigHelper().getDataConfigListByIds(configIdList);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top