Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for delayForWaitingNewUrl (0.33 seconds)

  1. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

                // The improved error handling should catch and log any exceptions
                // without propagating them
                controller.delayForWaitingNewUrl();
            } catch (Exception e) {
                fail("delayForWaitingNewUrl should not throw exceptions: " + e.getMessage());
            }
        }
    
        /**
         * Test boundary values for delay settings
         */
        @Test
    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)
  2. src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java

         * All operations are wrapped in exception handling to ensure robustness
         * in test and production environments.
         */
        @Override
        protected void delayForWaitingNewUrl() {
            try {
                ComponentUtil.getSystemHelper().calibrateCpuLoad();
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
    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)
Back to Top