- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for processWord (0.06 sec)
-
src/main/java/org/codelibs/core/text/Tokenizer.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
callbacks.go
match func(*DB) bool handler func(*DB) processor *processor } func (cs *callbacks) Create() *processor { return cs.processors["create"] } func (cs *callbacks) Query() *processor { return cs.processors["query"] } func (cs *callbacks) Update() *processor { return cs.processors["update"] } func (cs *callbacks) Delete() *processor { return cs.processors["delete"] }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Aug 26 06:24:29 UTC 2025 - 8.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
/** * Artifact type name for a JAR file that can be placed either on the annotation processor class path * or module path. The path (classes or modules) is chosen by the plugin, possibly using heuristic rules. */ String PROCESSOR = "processor"; /** * Artifact type name for a JAR file to unconditionally place on the annotation processor class path. * If the JAR is modular, its module information are ignored. */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
api/maven-api-di/src/main/resources/META-INF/services/javax.annotation.processing.Processor
Guillaume Nodet <******@****.***> 1725988727 +0200
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Sep 10 17:18:47 UTC 2024 - 41 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
* @return The query class name. */ protected abstract String getQueryClassName(); /** * Registers this query command with the query processor. * Associates this command with its query class name in the processor. */ public void register() { ComponentUtil.getQueryProcessor().add(getQueryClassName(), this); } /** * Gets the query field configuration.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
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; import org.codelibs.fess.ingest.IngestFactory;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 04 08:42:49 UTC 2020 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
java.util.function.BiFunction<org.opensearch.action.update.UpdateRequestBuilder, org.opensearch.search.SearchHit, org.opensearch.action.update.UpdateRequestBuilder> processor) { // Return a fixed count for testing return 3L; } }; ComponentUtil.register(mockSearchEngineClient, "searchEngineClient"); // Mock FessConfig
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
import org.opensearch.index.query.QueryBuilder; import jakarta.annotation.PostConstruct; /** * Query processor component that handles query filters and commands. * This class provides a pipeline for processing Lucene queries by applying * a chain of filters and executing registered query commands. * * <p>The processor maintains a map of query commands indexed by query class names
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
import java.io.Writer; import java.util.HashSet; import java.util.Set; import java.util.TreeSet; import org.apache.maven.api.di.Named; /** * Annotation processor that generates an index file for classes annotated with {@link Named}. * This processor scans for classes with the {@code @Named} annotation and creates a file * at {@code META-INF/maven/org.apache.maven.api.di.Inject} containing the fully qualified * names of these classes.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0)