Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CrawlingInfoService (0.15 sec)

  1. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            final int[] jobLogDeletedDays = { 0 };
            final int[] userInfoDeletedDays = { 0 };
            final long[] expectedTime = { 0 };
    
            // Create mock services
            CrawlingInfoService crawlingInfoService = new CrawlingInfoService() {
                @Override
                public void deleteBefore(long time) {
                    deleteCrawlingInfoCalled[0] = true;
                    crawlingInfoDeletedBeforeTime[0] = time;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            crawler.pathMappingService = pathMappingService;
    
            crawlingInfoService = new CrawlingInfoService() {
                @Override
                public void deleteSessionIdsBefore(String sessionId, String name, long currentTime) {
                    // Mock implementation
                }
            };
            crawler.crawlingInfoService = crawlingInfoService;
    
            crawlingInfoHelper = new CrawlingInfoHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         */
        protected int maxSessionIdsInList;
    
        /**
         * Retrieves the CrawlingInfoService component instance.
         *
         * @return the CrawlingInfoService component for managing crawling information
         */
        protected CrawlingInfoService getCrawlingInfoService() {
            return ComponentUtil.getComponent(CrawlingInfoService.class);
        }
    
        /**
    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/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private CrawlingInfoService crawlingInfoService;
        @Resource
        private CrawlingInfoPager crawlingInfoPager;
        /** The process helper. */
        @Resource
        protected ProcessHelper processHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/crawlinginfo/ApiAdminCrawlinginfoAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        private CrawlingInfoService crawlingInfoService;
    
        /** Helper for managing crawling processes and session information */
        @Resource
        protected ProcessHelper processHelper;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/Crawler.java

        @Resource
        protected PathMappingService pathMappingService;
    
        /** Injected service for managing crawling session information. */
        @Resource
        protected CrawlingInfoService crawlingInfoService;
    
        /**
         * Adds an error message to the error queue for later processing.
         * This method is thread-safe and can be called from multiple crawler threads.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
Back to top