- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 136 for processors (0.05 sec)
-
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static QueryFieldConfig getQueryFieldConfig() { return getComponent(QUERY_FIELD_CONFIG); } /** * Gets the query processor component. * @return The query processor. */ public static QueryProcessor getQueryProcessor() { return getComponent(QUERY_PROCESSOR); } /** * Gets the label type helper component.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
} @Override public ResponseProcessor getResponseProcessor() { return responseProcessor; } /** * Sets the response processor for this rule. * * @param responseProcessor the response processor to set */ public void setResponseProcessor(final ResponseProcessor responseProcessor) { this.responseProcessor = responseProcessor; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/Rule.java
import org.codelibs.fess.crawler.processor.ResponseProcessor; /** * The Rule interface defines the contract for implementing rules that can be applied to * response data in a web crawler. Implementations of this interface should provide logic * to determine if a given response data matches the rule, retrieve the rule's identifier, * and obtain the associated response processor. */ public interface Rule extends Serializable {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/resources/crawler/rule.xml
<component name="sitemapsRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" > <property name="ruleId">"sitemapsRule"</property> <property name="responseProcessor"> <component class="org.codelibs.fess.crawler.processor.impl.SitemapsResponseProcessor"> </component> </property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>"http[s]?:.*sitemap[^/]*\.xml.*|http[s]?:.*sitemap[^/]*\.gz.*|http[s]?:.*sitemap[^/]*\.txt.*"</arg>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jun 04 08:42:49 UTC 2020 - 4.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessorTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.processor.impl; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.when; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
import org.codelibs.fess.crawler.exception.ChildUrlsException; import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.crawler.processor.ResponseProcessor; import org.codelibs.fess.crawler.processor.impl.DefaultResponseProcessor; import org.codelibs.fess.crawler.rule.Rule; import org.codelibs.fess.crawler.rule.RuleManager; import org.codelibs.fess.crawler.serializer.DataSerializer;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
CloseableUtil.closeQuietly(responseData); } } } return true; } /** * Processes the response data using the appropriate rule processor. * @param urlQueue The URL queue entry. * @param responseData The response data to process. */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/CustomUrlFilterImplTest.java
includeFilter.processUrl("http://example.com/"); assertEquals(1, includeFilter.cachedIncludeSet.size()); assertEquals(0, includeFilter.cachedExcludeSet.size()); assertEquals("http://example.com/.*", includeFilter.cachedIncludeSet.toArray()[0]); includeFilter.processUrl("https://test.com");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 4.3K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/rule.xml
<property name="ruleId">"sitemapsRule"</property> <property name="responseProcessor"> <component class="org.codelibs.fess.crawler.processor.impl.SitemapsResponseProcessor"> </component> </property> <postConstruct name="addRule"> <arg>"url"</arg> <arg>".*sitemap.*"</arg> </postConstruct> </component>
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Oct 11 02:16:55 UTC 2015 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
import org.codelibs.fess.util.JobProcess; import jakarta.annotation.PreDestroy; /** * Helper class for managing system processes in Fess. * This class provides functionality to start, stop, and manage external processes * such as crawler processes, with proper resource cleanup and lifecycle management. */ public class ProcessHelper { /** Logger instance for this class */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0)