- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 67 for reconstruction (0.07 sec)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
/** * Initializes the protocol helper by loading configured protocols from FessConfig * and scanning for available protocol handlers in the classpath. * This method is called automatically after bean construction. */ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); webProtocols = split(fessConfig.getCrawlerWebProtocols(), ",")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
protected Cache<String, CrawlingConfig> crawlingConfigCache; /** * Initializes the CrawlingConfigHelper by setting up the crawling configuration cache. * This method is called automatically after the bean construction is complete. * The cache is configured with a maximum size of 100 entries and expires after 10 minutes. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
public SearchEngineApiManager() { super(); setPathPrefix(ADMIN_SERVER); } /** * Registers this API manager with the web API manager factory. * Called automatically after construction via @PostConstruct. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
CharMappingItem item = new CharMappingItem(1L, inputs, null); assertNull(item.getOutput()); } public void test_constructor_withUnsortedInputs() { // Test that inputs are sorted during construction String[] inputs = { "z", "a", "m" }; CharMappingItem item = new CharMappingItem(1L, inputs, "output"); assertEquals("a", item.getInputs()[0]); assertEquals("m", item.getInputs()[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpSession; /** * QueryHelper is responsible for building and managing OpenSearch queries for Fess search functionality. * It handles query construction, role-based access control, boost functions, sorting, and search preferences. * This class serves as the central component for translating user search requests into properly formatted
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
/** * Default constructor for CommandGenerator. */ public CommandGenerator() { super(); } /** * Initializes the command generator after construction. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } if (baseDir == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* Creates a new document helper instance. */ public DocumentHelper() { // Default constructor } /** * Initializes the document helper after construction. * Sets up the TikaExtractor with configuration parameters for text processing. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- Fix endpoint reconciler not being able to delete the apiserver lease on shutdown ([#114138](https://github.com/kubernetes/kubernetes/pull/114138), [@aojea](https://github.com/aojea)) [SIG API Machinery] - Fix for volume reconstruction of CSI ephemeral volumes ([#113346](https://github.com/kubernetes/kubernetes/pull/113346), [@dobsonj](https://github.com/dobsonj)) [SIG Node, Storage and Testing]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Default constructor for ThumbnailManager. */ public ThumbnailManager() { // Default constructor } /** * Initializes the thumbnail manager after construction. * Sets up base directory and starts background processing. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
* Why? We want for queries like containsKey(null) to return false, but the * GWT SortedMap implementation that we delegate to throws * NullPointerException if the comparator does. Since our construction * methods ensure that null is never present in the map, it's OK for the * comparator to look for it wherever it wants. * * Note that we do NOT touch the comparator returned by comparator(), which
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0)