Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for synchronizedList (0.05 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

        }
    
        // Test concurrent crawling
        public void test_doCrawl_concurrentWebAndData() {
            final List<String> executionOrder = Collections.synchronizedList(new ArrayList<>());
    
            WebFsIndexHelper mockWebHelper = new WebFsIndexHelper() {
                @Override
                public void crawl(String sessionId, List<String> webConfigIdList, List<String> fileConfigIdList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

        /**
         * Thread-safe list of active data crawling threads.
         * Used to track and manage all currently running crawler threads.
         */
        protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Creates a new instance of DataIndexHelper.
         * This constructor initializes the helper for managing data crawling operations,
    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