Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getDelayMillisAtNoUrlInQueue (0.94 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java

        }
    
        /**
         * Gets the delay time in milliseconds when there are no URLs in the queue.
         *
         * @return the delay time in milliseconds when no URLs are available
         */
        public long getDelayMillisAtNoUrlInQueue() {
            return delayMillisAtNoUrlInQueue;
        }
    
        /**
         * Sets the delay time in milliseconds when there are no URLs in the queue.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Nov 19 07:09:17 GMT 2025
    - 5.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

            assertEquals(2000L, controller.getDelayMillisAtNoUrlInQueue());
    
            controller.setDelayMillisAtNoUrlInQueue(10000L);
            assertEquals(10000L, controller.getDelayMillisAtNoUrlInQueue());
    
            controller.setDelayMillisAtNoUrlInQueue(0L);
            assertEquals(0L, controller.getDelayMillisAtNoUrlInQueue());
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
Back to Top