- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,400 for creator (0.05 sec)
-
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
/** * A dictionary creator for stopwords files. * This class is responsible for creating {@link StopwordsFile} instances * from files that match the pattern "stopwords.*\\.txt". */ public class StopwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StopwordsCreator.class); /** * Constructs a new creator for stopwords dictionaries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
/** * Creates a new DictionaryCreator with the specified pattern. * * @param pattern the regular expression pattern to match file paths */ protected DictionaryCreator(final String pattern) { this.pattern = Pattern.compile(pattern); } /** * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfigWrapper.java
return crawlingConfig.getTimeToLive(); } @Override public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) { return crawlingConfig.initializeClientFactory(creator); } @Override public Map<String, String> getConfigParameterMap(final ConfigName name) { return crawlingConfig.getConfigParameterMap(name); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/resources/my_creator.xml
<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" "http://dbflute.org/meta/lastadi10.dtd"> <components> <include path="convention.xml"/> <component name="pagerCreator" class="org.codelibs.fess.mylasta.creator.PagerCreator"/>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 03 14:03:30 UTC 2015 - 296 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java
} @Override public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) { if (crawlerClientFactory != null) { return crawlerClientFactory; } final CrawlerClientFactory factory = creator.get(); final WebAuthenticationService webAuthenticationService = ComponentUtil.getComponent(WebAuthenticationService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/FileConfig.java
} @Override public CrawlerClientFactory initializeClientFactory(final Supplier<CrawlerClientFactory> creator) { if (crawlerClientFactory != null) { return crawlerClientFactory; } final CrawlerClientFactory factory = creator.get(); final FileAuthenticationService fileAuthenticationService = ComponentUtil.getComponent(FileAuthenticationService.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Apr 03 09:24:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/validation/FessActionValidator.java
/** * Constructs a new FessActionValidator with the specified components. * * @param requestManager the request manager for handling HTTP requests * @param messagesCreator the creator for user messages * @param runtimeGroups the runtime validation groups */ public FessActionValidator(final RequestManager requestManager, final UserMessagesCreator<MESSAGES> messagesCreator,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
assertEquals("test-name", options.name); } // Test create with search log enabled public void test_create_searchLogEnabled() { // Test configuration for search log creation SuggestCreator.Options options = new SuggestCreator.Options(); assertNotNull(options); } // Test create with documents enabled public void test_create_documentsEnabled() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
public String query; /** The max size of the key match. */ public String maxSize; /** The boost of the key match. */ public String boost; /** The creator of the key match. */ public String createdBy; /** The created time of the key match. */ public String createdTime; /** The version number of the key match. */ public String versionNo; /** * Clears the pager fields.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
logger.warn("Failed to create suggest data.", e); resultBuf.append(e.getMessage()).append("\n"); } finally { if (timeoutTask != null && !timeoutTask.isCanceled()) { timeoutTask.cancel(); } } return resultBuf.toString(); } /** * Executes the suggest creator process.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.5K bytes - Viewed (0)