Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for notmodified (0.05 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessorTest.java

            assertTrue(processor.isNotModified(responseData));
    
            responseData.setHttpStatusCode(100);
            assertFalse(processor.isNotModified(responseData));
            responseData.setHttpStatusCode(200);
            assertFalse(processor.isNotModified(responseData));
            responseData.setHttpStatusCode(404);
            assertFalse(processor.isNotModified(responseData));
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java

        UNSUPPORTED_URL_AT_CRAWLING_STARTED,
        /** Indicates checking the last modified date of a resource. */
        CHECK_LAST_MODIFIED,
        /** Indicates the resource has not been modified. */
        NOT_MODIFIED,
        /** Indicates getting content from a resource. */
        GET_CONTENT,
        /** Indicates a redirect location was found. */
        REDIRECT_LOCATION,
        /** Indicates processing a response. */
        PROCESS_RESPONSE,
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.4K bytes
    - Viewed (0)
Back to top