Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMaxSessionIdsInList (0.46 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

        }
    
        public void test_setMaxSessionIdsInList() {
            crawlingInfoHelper.setMaxSessionIdsInList(500);
            assertEquals(500, crawlingInfoHelper.maxSessionIdsInList);
    
            crawlingInfoHelper.setMaxSessionIdsInList(0);
            assertEquals(0, crawlingInfoHelper.maxSessionIdsInList);
    
            crawlingInfoHelper.setMaxSessionIdsInList(-1);
            assertEquals(-1, crawlingInfoHelper.maxSessionIdsInList);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         * This controls the size limit for aggregation results when retrieving session lists.
         *
         * @param maxSessionIdsInList the maximum number of session IDs to include in lists
         */
        public void setMaxSessionIdsInList(final int maxSessionIdsInList) {
            this.maxSessionIdsInList = maxSessionIdsInList;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
Back to top