- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 4,612 for storing (0.79 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManager.java
* @return List of matching toolchains, never null * @throws ToolchainManagerException if toolchain retrieval fails */ @Nonnull List<Toolchain> getToolchains(@Nonnull Session session, String type, Map<String, String> requirements); /** * Retrieves all toolchains of the specified type without additional requirements. * * @param session The Maven session context
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/AggregateLogJob.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.fess.helper.SearchLogHelper; import org.codelibs.fess.util.ComponentUtil; /** * Job for aggregating and storing search logs. * This job processes search logs and stores them in the search log repository. */ public class AggregateLogJob { private static final Logger logger = LogManager.getLogger(AggregateLogJob.class);
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/fess/app/web/admin/general/EditForm.java
* Used for storing files in cloud storage services like S3. */ @Size(max = 1000) public String storageEndpoint; /** * Access key for cloud storage authentication. * Used to authenticate with cloud storage services. */ @Size(max = 1000) public String storageAccessKey; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallback.java
import java.util.Map; import org.codelibs.fess.entity.DataStoreParams; /** * Callback interface for handling index update operations during data store processing. * This interface provides methods for storing documents, tracking processing metrics, * and committing changes to the search index. */ public interface IndexUpdateCallback { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataStoreException.java
*/ package org.apache.maven.artifact.repository.metadata; /** * Problem storing the repository metadata in the local repository. * */ public class RepositoryMetadataStoreException extends Exception { public RepositoryMetadataStoreException(String message) { super(message); } public RepositoryMetadataStoreException(String message, Exception e) { super(message, e); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataReadException.java
*/ package org.apache.maven.artifact.repository.metadata; /** * Problem storing the repository metadata in the local repository. * */ @Deprecated public class RepositoryMetadataReadException extends Exception { public RepositoryMetadataReadException(String message) { super(message); } public RepositoryMetadataReadException(String message, Exception e) { super(message, e); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
logger.info("Creating new suggest index."); suggestHelper.suggester().createNextIndex(); logger.info("Storing all bad words."); suggestHelper.storeAllBadWords(true); logger.info("Storing all elevate words."); suggestHelper.storeAllElevateWords(true); final AtomicInteger exitCode = new AtomicInteger(0);
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/app/web/base/FessSearchAction.java
* and form inputs for the given parameters. * * @param paramMap the parameter map to process * @param queryKey the key for storing query string parameters * @param formKey the key for storing form input parameters */ protected void buildInitParamMap(final Map<String, String> paramMap, final String queryKey, final String formKey) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocList.java
this.processingTime += processingTime; } /** * Returns a string representation of this DocList including metrics and content. * * @return a string representation including content size, processing time, and elements */ @Override public String toString() { return "DocList [contentSize=" + contentSize + ", processingTime=" + processingTime + ", elementData="
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
public UserAgentHelper() { // Default constructor } /** The HTTP header name for User-Agent */ protected static final String USER_AGENT = "user-agent"; /** The request attribute key for storing cached user agent type */ protected static final String USER_AGENT_TYPE = "ViewHelper.UserAgent"; /** * Determines the user agent type from the current HTTP request.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0)