Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCrawlingInfoId (0.71 sec)

  1. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java

        //                                       ---------------
        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCrawlingInfoId(),
                    (et, vl) -> ((CrawlingInfoParam) et).setCrawlingInfoId(DfTypeUtil.toString(vl)), "crawlingInfoId");
            setupEpg(_epgMap, et -> ((CrawlingInfoParam) et).getCreatedTime(),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

                public void storeInfo(List<CrawlingInfoParam> crawlingInfoParamList) {
                    assertEquals(2, crawlingInfoParamList.size());
                    assertEquals("info-123", crawlingInfoParamList.get(0).getCrawlingInfoId());
                }
            }, CrawlingInfoService.class.getCanonicalName());
    
            // Add info to map
            crawlingInfoHelper.putToInfoMap("status", "completed");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            }
    
            /**
             * Gets the crawling information ID for this thread.
             *
             * @return the crawling info ID from the initialization parameters
             */
            public String getCrawlingInfoId() {
                return initParamMap.getAsString(Constants.CRAWLING_INFO_ID);
            }
    
            /**
             * Checks if the crawling thread is currently running.
             *
    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