- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 168 for crawled (0.15 seconds)
-
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
*/ package org.codelibs.fess.crawler.processor; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.crawler.entity.AccessResult; import org.codelibs.fess.crawler.entity.ResponseData; import org.codelibs.fess.crawler.entity.ResultData; import org.codelibs.fess.crawler.processor.impl.DefaultResponseProcessor;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
} /** * Name of the crawling configuration. */ @Required @Size(max = 200) public String crawlingConfigName; /** * 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). */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
import org.lastaflute.web.response.StreamResponse; /** * Action class for handling cached document content requests. * Provides functionality to retrieve and display cached versions of crawled documents. */ public class CacheAction extends FessSearchAction { /** * Creates a new instance of CacheAction. */ public CacheAction() { super(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/DocList.java
* This class extends ArrayList to hold document maps while tracking content size * and processing time metrics. It's used throughout the Fess search system to * manage collections of search results and crawled documents. * */ public class DocList extends ArrayList<Map<String, Object>> { /** Serial version UID for serialization */ private static final long serialVersionUID = 1L;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/ScrollSearchApiTests.java
import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; import io.restassured.response.Response; /** * Integration tests for the Scroll Search API (/api/v1/documents/all) * This test requires crawled documents and api.search.scroll to be enabled */ @Tag("it") @Disabled("Requires api.search.scroll to be enabled in fess_config.properties") public class ScrollSearchApiTests extends CrawlTestBase {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
@Size(max = 200) public String name; /** * The description of the web configuration. */ @Size(max = 1000) public String description; /** * The URLs to be crawled by this web configuration. */ @Required @UriType(protocolType = ProtocolType.WEB) @CustomSize(maxKey = "form.admin.max.input.size") public String urls; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
* This class defines tag patterns that match HTML elements based on tag name, CSS class, ID, or custom attributes. * It is used to identify and remove unwanted HTML elements from crawled documents. */ public class PrunedTag { /** The HTML tag name to match (e.g., "div", "span", "p") */ private final String tag; /** The ID attribute value to match */ private String id;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Nov 24 04:23:08 GMT 2025 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
* * @param crawlingConfig the crawling configuration associated with the failure * @param errorName the name/type of the error that occurred * @param url the URL that failed to be crawled * @param e the exception that caused the failure * @return the stored or updated FailureUrl entity, or null if the exception should be ignored */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.2K bytes - Click Count (0) -
src/main/resources/mail/crawler.dfmail
/* [Crawler Notification] Crawler notification mail. */ subject: [FESS] Crawler completed: /*pmb.hostname*/ >>> --- Server Info --- Host Name: /*pmb.hostname:orElse('Unknown')*/ Job Name: /*pmb.jobname:orElse('Unknown')*/ --- Web/FileSystem Crawler --- Start Time: /*pmb.webFsCrawlStartTime:orElse('-')*/ End Time: /*pmb.webFsCrawlEndTime:orElse('-')*/ Exec Time: /*pmb.webFsCrawlExecTime:orElse('-')*/ ms --- Web/FileSystem Indexer ---Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 15 22:05:20 GMT 2020 - 1K bytes - Click Count (0) -
CLAUDE.md
|-----------|------------| | Web Framework | LastaFlute (MVC framework) | | DI Container | Lasta Di | | Data Access | DBFlute (type-safe ORM for OpenSearch) | | Search Engine | OpenSearch | | App Server | Embedded Tomcat | | Crawler | fess-crawler library | | Scheduler | Lasta Job | | Logging | Log4j2 | | Testing | JUnit 4/5, UTFlute, REST Assured | ## Development Commands ### Setup ```bash
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 09:48:10 GMT 2026 - 7.8K bytes - Click Count (0)