- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for Initializing (0.08 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
* Sets up the Fess configuration and data serializer components. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } fessConfig = ComponentUtil.getFessConfig(); dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
protected File osddFile; /** * Initializes the OSDD helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } osddFile = getOsddFile(); } /** * Gets the OSDD file. * * @return the OSDD file */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
* and loads the initial related query configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); } /** * Retrieves a list of all available related query entities from the data store.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
* Loads duplicate host configurations from the DuplicateHostService. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } if (duplicateHostList == null) { duplicateHostList = new ArrayList<>(); } try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
import org.opensearch.search.sort.SortBuilders; import jakarta.annotation.PostConstruct; /** * Helper class for managing the suggest feature. * This class provides methods for initializing the suggester, indexing data from * various sources, and managing elevate words and bad words. */ public class SuggestHelper { /** * Constructs a new suggest helper. */ public SuggestHelper() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PathMappingHelper.java
/** * Initializes the path mapping helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); } @Override public int load() { final List<String> ptList = getProcessTypeList(); try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java
* Sets up the Fess configuration and data serializer components. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } fessConfig = ComponentUtil.getFessConfig(); dataSerializer = ComponentUtil.getComponent("dataSerializer"); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LanguageHelper.java
// do nothing } /** * Initializes the helper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } final FessConfig fessConfig = ComponentUtil.getFessConfig(); langFields = fessConfig.getIndexerLanguageFieldsAsArray();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* Sets up the cache with configured size and expiration settings. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } fessConfig = ComponentUtil.getFessConfig(); cache = CacheBuilder.newBuilder()Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
super(); } /** * Initializes the SambaHelper. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } fessConfig = ComponentUtil.getFessConfig(); } /** * Gets the account ID from a SID. * @param sid The SID.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.3K bytes - Viewed (0)