- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 970 for creators (0.08 sec)
-
src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java
public String sortOrder; /** Search/filter parameter for duplicate host creator. */ public String createdBy; /** Search/filter parameter for duplicate host creation time. */ public String createdTime; /** Search/filter parameter for duplicate host version number. */ public String versionNo; /** * Creates a new DuplicateHostPager with default values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
/** * Creator for protected words dictionary files. * This class manages the creation and registration of protected words dictionary files. */ public class ProtwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class); /** * Constructor for ProtwordsCreator. * Initializes the creator with a pattern to match protwords files.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/creator/PagerCreator.java
*/ package org.codelibs.fess.mylasta.creator; import org.lastaflute.di.core.assembler.AutoBindingDefFactory; import org.lastaflute.di.core.creator.ComponentCreatorImpl; import org.lastaflute.di.core.customizer.ComponentCustomizer; import org.lastaflute.di.core.meta.impl.InstanceDefFactory; import org.lastaflute.di.naming.NamingConvention; /** * The creator of pager. * * @author shinsuke */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K 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/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
import org.codelibs.fess.dict.DictionaryCreator; import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; /** * Creator for character mapping dictionary files. * Handles the creation and management of character mapping dictionaries used for text normalization. */ public class CharMappingCreator extends DictionaryCreator {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
} /** * Creates and returns a new instance of {@link ArrayDeque}. * * @param <E> the element type of {@link ArrayDeque} * @return a new instance of {@link ArrayDeque} * @see ArrayDeque#ArrayDeque() */ public static <E> ArrayDeque<E> newArrayDeque() { return new ArrayDeque<>(); } /** * Creates and returns a new instance of {@link ArrayDeque}.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 49.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
} /** * Creates a GET request for the specified path. * @param path the request path * @return the configured CurlRequest */ public CurlRequest get(final String path) { return request(Method.GET, path).header("Content-Type", "application/json"); } /** * Creates a POST request for the specified path. * @param path the request path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClIllegalStateException.java
private static final long serialVersionUID = -2154525994315946504L; /** * Creates a {@link ClIllegalStateException}. */ public ClIllegalStateException() { super(); } /** * Creates a {@link ClIllegalStateException}. * * @param message * Message */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaFactoryUtil.java
*/ protected SchemaFactoryUtil() { } /** * Creates a {@link SchemaFactory} for W3C XML Schema. * * @return a {@link SchemaFactory} for W3C XML Schema */ public static SchemaFactory newW3cXmlSchemaFactory() { return newW3cXmlSchemaFactory(false); } /** * Creates a {@link SchemaFactory} for W3C XML Schema. * * @param external
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0)