- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for setNoFollow (0.09 sec)
-
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java
responseData.setMethod("GET"); responseData.setMimeType("text/html"); responseData.setCharSet("UTF-8"); responseData.setContentLength(1024L); responseData.setNoFollow(false); // Execute processor.process(responseData); // Verify nothing changed assertEquals("https://example.com/test", responseData.getUrl());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 8.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
} /** * Sets whether this response should not be followed for further crawling. * * @param value true if this response should not be followed, false otherwise */ public void setNoFollow(final boolean value) { noFollow = value; } /** * Checks if this response should not be followed for further crawling. *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0)