Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for ids (0.02 sec)

  1. src/main/java/org/codelibs/fess/job/CrawlJob.java

        /**
         * Array of web crawling configuration IDs to process.
         * If null, all available web configurations will be crawled (when no other config IDs are specified).
         */
        protected String[] webConfigIds;
    
        /**
         * Array of file system crawling configuration IDs to process.
         * If null, all available file configurations will be crawled (when no other config IDs are specified).
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

        }
    
        /**
         * Retrieves web crawling configurations filtered by a list of IDs.
         * If the ID list is null, returns all available configurations.
         *
         * @param idList the list of configuration IDs to retrieve, or null for all configurations
         * @return a list of WebConfig objects with the specified IDs
         */
        public List<WebConfig> getWebConfigListByIds(final List<String> idList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

                    final String[] ids = { "", "", "" };
                    if (Constants.WEB_CRAWLER_TYPE.equals(type)) {
                        ids[0] = "\"" + id + "\"";
                    } else if (Constants.FILE_CRAWLER_TYPE.equals(type)) {
                        ids[1] = "\"" + id + "\"";
                    } else if (Constants.DATA_CRAWLER_TYPE.equals(type)) {
                        ids[2] = "\"" + id + "\"";
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                    logger.error("Could not destroy a process correctly.", e);
                }
            }
            return -1;
        }
    
        /**
         * Gets the set of session IDs for all currently running processes.
         *
         * @return set of session IDs for running processes
         */
        public Set<String> getRunningSessionIdSet() {
            return runningProcessMap.keySet();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(0, ((List<String>) resultMap.get("ids")).size());
    
            docList.add("001");
            indexingHelper.deleteDocumentsByDocId(client, docList);
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(1, ((List<String>) resultMap.get("ids")).size());
            assertEquals("001", ((List<String>) resultMap.get("ids")).get(0));
        }
    
        public void test_deleteDocumentByQuery() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  10. 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)
Back to top