Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for isNoFollow (0.03 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java

            ResponseData data = new ResponseData();
    
            // Default should be false
            assertFalse(data.isNoFollow());
    
            data.setNoFollow(true);
            assertTrue(data.isNoFollow());
    
            data.setNoFollow(false);
            assertFalse(data.isNoFollow());
        }
    
        public void test_responseBodyBytes() {
            // Test response body with byte array
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            assertEquals("text/html", responseData.getMimeType());
            assertEquals("UTF-8", responseData.getCharSet());
            assertEquals(1024L, responseData.getContentLength());
            assertFalse(responseData.isNoFollow());
        }
    
        public void test_processWithResponseDataContainingBody() {
            // Test process with ResponseData containing body
            NullResponseProcessor processor = new NullResponseProcessor();
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:29:22 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

        }
    
        /**
         * Checks if this response should not be followed for further crawling.
         *
         * @return true if this response should not be followed, false otherwise
         */
        public boolean isNoFollow() {
            return noFollow;
        }
    
        /**
         * Adds metadata to this response.
         *
         * @param name the name of the metadata
         * @param value the value of the metadata
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

            resultData.setTransformerName(getName());
    
            try {
                // data
                storeData(responseData, resultData);
    
                if (isHtml(responseData) && !responseData.isNoFollow()) {
                    // urls
                    storeChildUrls(responseData, resultData);
                }
            } finally {
                xpathAPI.remove();
            }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Nov 29 07:42:33 UTC 2025
    - 30.5K bytes
    - Viewed (0)
Back to top