Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for delayBeforeProcessing (0.12 seconds)

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

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalControllerTest.java

            int waitNewUrlCount = 0;
            boolean shouldThrowException = false;
    
            @Override
            protected void delayBeforeProcessing() {
                beforeProcessingCount++;
                if (shouldThrowException) {
                    throw new RuntimeException("Test exception in delayBeforeProcessing");
                }
            }
    
            @Override
            protected void delayAfterProcessing() {
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 20 08:58:39 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java

         */
        private static class TestIntervalController implements IntervalController {
            @Override
            public void delay(int type) {
            }
    
            public void delayBeforeProcessing() {
            }
    
            public void delayAfterProcessing() {
            }
    
            public void delayAtNoUrlInQueue() {
            }
    
            public void delayForWaitingNewUrl() {
            }
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Sep 06 04:15:37 GMT 2025
    - 25.6K bytes
    - Click Count (0)
Back to Top