- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for seorang (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Controls the level of detail in system log messages. */ @Size(max = 10) public String logLevel; /** * Storage service endpoint URL for cloud storage integration. * Used for storing files in cloud storage services like S3. */ @Size(max = 1000) public String storageEndpoint; /** * Access key for cloud storage authentication.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.1K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
*/ public class HostIntervalController extends DefaultIntervalController { /** Default cache expire duration in hours */ private static final long DEFAULT_CACHE_EXPIRE_HOURS = 1L; /** Cache storing the last access time for each host. */ private final Cache<String, AtomicLong> lastTimes; /** * Constructs a new HostIntervalController with default parameters. */ public HostIntervalController() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K 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: 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/SearchLogHelper.java
protected int userInfoCacheSize = 10000; /** Queue for storing search logs. */ protected Queue<SearchLog> searchLogQueue = new ConcurrentLinkedQueue<>(); /** Queue for storing click logs. */ protected Queue<ClickLog> clickLogQueue = new ConcurrentLinkedQueue<>(); /** Cache for storing user information. */ protected LoadingCache<String, UserInfo> userInfoCache;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 26.4K bytes - Viewed (0) -
CLAUDE.md
### Essential Files | File | Purpose | |------|---------| | `Suggester.java` | Main entry point, index management | | `SuggestIndexer.java` | Indexing operations | | `SuggestRequest.java` | Query building, scoring | | `SuggestSettings.java` | Configuration | | `SuggestItem.java` | Domain model | | `DefaultContentsParser.java` | Text processing pipeline | ### Key Constants ```java // Field names (FieldNames.java)
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/resources/fess_message_id.properties
errors.invalid_str_is_included = {1} tidak valid untuk {0}. errors.blank_password = Kata sandi wajib diisi. errors.invalid_confirm_password = Tidak cocok dengan konfirmasi kata sandi. errors.cannot_delete_doc_because_of_running = Crawler sedang berjalan. Anda tidak dapat menghapus dokumen. errors.failed_to_delete_doc_in_admin = Gagal menghapus dokumen. errors.failed_to_send_testmail=Gagal mengirim email uji.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 07 14:12:58 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
private static final Logger logger = LogManager.getLogger(PopularWordHelper.class); /** Character used to separate cache key components */ protected static final char CACHE_KEY_SPLITTER = '\n'; /** Cache for storing popular word lists */ protected Cache<String, List<String>> cache; /** Fess configuration instance */ protected FessConfig fessConfig; /** * Default constructor. */
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/indexer/IndexUpdater.java
protected int maxErrorCount = 2; /** List of finished crawler session IDs for cleanup */ protected List<String> finishedSessionIdList = new ArrayList<>(); /** List of document boost matchers for scoring enhancement */ private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>(); /** List of active crawler instances */ private List<Crawler> crawlerList;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 32.9K bytes - Viewed (0)