- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 85 for seorang (0.04 sec)
-
src/main/java/org/codelibs/fess/util/DocList.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; import java.util.ArrayList; import java.util.Arrays; import java.util.Map; /** * A specialized ArrayList for storing document data with additional metadata. * This class extends ArrayList to hold document maps while tracking content size * and processing time metrics. It's used throughout the Fess search system to
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/util/WebApiUtil.java
* Provides functionality for setting and retrieving objects from request attributes, * error handling, and validation in web API context. */ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */ private static final String WEB_API_EXCEPTION = "webApiException"; /** * Private constructor to prevent instantiation. */ private WebApiUtil() { }
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/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) -
android/guava/src/com/google/common/primitives/package-info.java
* the License. */ /** * Static utilities for the eight primitive types and {@code void}, and value types for treating * them as unsigned or storing them in immutable arrays. * * <p>This package is a part of the open-source <a href="https://github.com/google/guava">Guava</a> * library. * * <p>See the Guava User Guide article on <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jan 03 15:30:05 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
/** Default file type value returned when MIME type is not found in mappings */ protected String defaultValue = "others"; /** Map storing MIME type to file type mappings */ protected Map<String, String> mimetypeMap = new LinkedHashMap<>(); /** * Default constructor for file type helper. * Creates a new instance with default values.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
*/ public class RelatedQueryHelper extends AbstractConfigHelper { private static final Logger logger = LogManager.getLogger(RelatedQueryHelper.class); /** * Map storing related queries organized by virtual host key and search term. * The outer map key is the virtual host key, the inner map key is the search term * (in lowercase), and the value is an array of related query strings. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
public OptionalEntity<RelatedContent> getRelatedContent(final String id) { return relatedContentBhv.selectByPK(id); } /** * Stores (inserts or updates) a related content entity. * After storing, updates the related content helper to refresh the cache. * * @param relatedContent the RelatedContent entity to store */ public void store(final RelatedContent relatedContent) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
protected List<String> contentFieldList; /** The popular word helper for handling popular words. */ protected PopularWordHelper popularWordHelper = null; /** The interval for storing search logs. */ protected long searchStoreInterval = 1; // min /** * Initializes the SuggestHelper. * This method sets up the suggester, configures field names, and initializes
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K 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) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service for managing stopwords. * This class provides methods to interact with stopwords dictionaries, * including retrieving, storing, and deleting stopwords. */ public class StopwordsService { /** The dictionary manager for accessing dictionary files. */ @Resource protected DictionaryManager dictionaryManager;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0)