- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 27 for nofollow (0.07 sec)
-
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
*/ public void setNoFollow(final boolean value) { noFollow = value; } /** * 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. *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 11.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResponseDataTest.java
public void test_noFollowGetterSetter() { // Test noFollow getter/setter 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() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.3K bytes - Viewed (0) -
src/main/resources/fess_config.properties
crawler.document.html.canonical.xpath=//LINK[@rel='canonical'][1]/@href # HTML tags to prune (remove) during document processing. crawler.document.html.pruned.tags=noscript,script,style,header,footer,aside,nav,a[rel=nofollow] # Maximum length of digest extracted from HTML documents. crawler.document.html.max.digest.length=120 # Default language for HTML documents. crawler.document.html.default.lang=
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String CRAWLER_DOCUMENT_HTML_CANONICAL_XPATH = "crawler.document.html.canonical.xpath"; /** The key of the configuration. e.g. noscript,script,style,header,footer,aside,nav,a[rel=nofollow] */ String CRAWLER_DOCUMENT_HTML_PRUNED_TAGS = "crawler.document.html.pruned.tags"; /** The key of the configuration. e.g. 120 */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
if (field.getType() == int.class) { String name = field.getName(); // Check that constant names follow UPPER_SNAKE_CASE convention assertTrue(name.matches("[A-Z_]+"), "Constant " + name + " should follow UPPER_SNAKE_CASE convention"); // Check that all constants end with _SECURITY_INFO
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
/** * Path or URL to be crawled by this configuration. */ @Required @Size(max = 1000) public String crawlingConfigPath; /** * Maximum depth for crawling (how many levels deep to follow links). */ @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; /** * Maximum number of pages/documents to access during crawling. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcConstantsTest.java
@Test @DisplayName("All fragment flags should have unique values") void testFragmentFlagsUniqueness() { // Verify that fragment flags are unique and follow bit pattern assertEquals(1, Integer.bitCount(DcerpcConstants.DCERPC_FIRST_FRAG), "DCERPC_FIRST_FRAG should be a single bit");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
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) -
README.md
$ mvn dbflute:download # (one time command) $ mvn dbflute:freegen $ mvn license:format ### Integration Tests Integration tests require a running Fess server with OpenSearch. Follow these steps: #### 1. Build Fess $ mvn antrun:run # Download OpenSearch plugins (if not done) $ mvn package # Build the package #### 2. Start Fess ServerRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2)