Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 12 of 12 for getDocumentSize (0.07 seconds)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            // Test executeTime
            assertEquals(0L, indexUpdater.getExecuteTime());
    
            // Test documentSize
            assertEquals(0L, indexUpdater.getDocumentSize());
        }
    
        // Test setUncaughtExceptionHandler
        @Test
        public void test_setUncaughtExceptionHandler() {
            final AtomicBoolean handlerCalled = new AtomicBoolean(false);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 33.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_EXEC_TIME, Long.toString(indexUpdater.getExecuteTime()));
            crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_INDEX_SIZE, Long.toString(indexUpdater.getDocumentSize()));
    
            if (systemHelper.isForceStop()) {
                return;
            }
    
            for (final String sid : sessionIdList) {
                // remove config
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
Back to Top