- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 230 for Stores (0.04 seconds)
-
src/main/java/org/codelibs/fess/exec/Crawler.java
logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e); } try { return crawler.doCrawl(options); } finally { try { crawlingInfoHelper.store(options.sessionId, false); } catch (final Exception e) { logger.warn("Failed to store crawling information: sessionId={}", options.sessionId, e);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
import com.google.common.cache.LoadingCache; /** * Helper class for managing Fess plugins and artifacts. * This class provides functionality to discover, install, and manage various types of plugins * including data stores, themes, ingest processors, scripts, web applications, thumbnails, and crawlers. */ public class PluginHelper { /** Logger instance for this class */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
public String getThumbnailPathOption() { return "-D" + Constants.FESS_THUMBNAIL_PATH + "=" + baseDir.getAbsolutePath(); } /** * Stores thumbnail generation tasks to the queue for processing. * * @param taskList list of thumbnail tasks to store */ protected void storeQueue(final List<Tuple3<String, String, String>> taskList) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 01 12:47:47 GMT 2026 - 27.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
public Logger getLogger() { return logger; } /** * Stores parsed data from response into result data. * Processes HTML content using XPath expressions and handles robots tags. * * @param responseData the response data from crawling * @param resultData the result data to store processed information */ @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("redirect to: {} (using {} endpoint)", authUrl, useV2Endpoint ? "v2.0" : "v1.0"); } return authUrl; } /** * Stores state and nonce information in the HTTP session. * @param session The HTTP session. * @param state The OAuth2 state parameter. * @param nonce The OpenID Connect nonce parameter. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:03:27 GMT 2026 - 56.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} } /** * Stores a document in the specified index. * * @param index the index name * @param obj the document object to store * @return true if the document was stored successfully, false otherwise * @throws SearchEngineClientException if the store operation fails */ public boolean store(final String index, final Object obj) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java
params.put(Constants.JOB_LOG_ID, "should-not-be-stored"); final MockJobRuntime runtime = MockJobRuntime.of(ScriptExecutorJob.class, op -> op.params(() -> params)); final TestableScriptExecutorJob job = new TestableScriptExecutorJob(); job.process(runtime); // When logging is disabled, store() is never called assertNull(storedJobLog.get()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
return this; } /** * Gets the name of the feature store. * * @return The store name. */ public String storeName() { return storeName; } /** * Sets the name of the feature store. * * @param storeName The store name. * @return This query builder. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java
String sessionCountId1 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W1")); assertEquals("testSession-1", sessionCountId1); String sessionCountId2 = crawlingConfigHelper.store(sessionId, crawlingConfigHelper.getCrawlingConfig("W2")); assertEquals("testSession-2", sessionCountId2);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 35.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatSessionManager.java
/** * Manager class for chat sessions. * Sessions are stored in memory with automatic expiration. * * <p><b>Note:</b> Sessions are stored in a local in-memory ConcurrentHashMap. * In multi-instance deployments (e.g., behind a load balancer), sessions are * not shared between instances. Use sticky sessions or an external session * store if session affinity across instances is required.</p> * * @author FessProject
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 13.7K bytes - Click Count (0)