- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 353 for Store2 (0.27 sec)
-
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
return getStopwordsFile(dictId).map(file -> file.get(id).get()); } /** * Stores a stopword item in the specified dictionary. * * @param dictId The ID of the dictionary. * @param stopwordsItem The stopword item to store. */ public void store(final String dictId, final StopwordsItem stopwordsItem) { getStopwordsFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
return getSynonymFile(dictId).map(file -> file.get(id).get()); } /** * Stores a synonym item in the specified dictionary. * * @param dictId The ID of the dictionary. * @param synonymItem The synonym item to store. */ public void store(final String dictId, final SynonymItem synonymItem) { getSynonymFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger()); }); } /** * Stores a scheduled job. * @param scheduledJob The scheduled job to store. */ public void store(final ScheduledJob scheduledJob) { scheduledJobBhv.insertOrUpdate(scheduledJob, op -> { op.setRefreshPolicy(Constants.TRUE); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
} /** * Stores (creates or updates) a stemmer override item in the specified dictionary. * * If the item ID is 0, this method performs an insert operation. Otherwise, * it performs an update operation for the existing item. * * @param dictId The ID of the stemmer override dictionary * @param stemmerOvberrideItem The stemmer override item to store */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
} return OptionalEntity.of(list.get(0)); } /** * Stores a web configuration. * Configuration parameters are encrypted before storage. * * @param webConfig The web configuration to store */ public void store(final WebConfig webConfig) { webConfig.setConfigParameter(ParameterUtil.encrypt(webConfig.getConfigParameter()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java
return fileAuthenticationBhv.selectByPK(id); } /** * Stores a file authentication configuration. * The parameters are encrypted before storage for security. * * @param fileAuthentication the file authentication configuration to store */ public void store(final FileAuthentication fileAuthentication) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountLinkedHashMap.java
/** * {@code ObjectCountLinkedHashMap} is a subclass of {@code ObjectCountHashMap} with insertion * iteration order, and uses arrays to store key objects and count values. Comparing to using a * traditional {@code LinkedHashMap} implementation which stores keys and count values as map * entries, {@code ObjectCountLinkedHashMap} minimizes object allocation and reduces memory * footprint. */ @GwtCompatible @NullMarked
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
}, timeout, false); } /** * Creates and stores system properties to the specified file. * Includes system properties and job runtime information if available. * * @param cmdList the command list (used as comment in properties file) * @param propFile the file to store properties to * @throws IORuntimeException if an I/O error occurs */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 31K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
return jobLogBhv.selectByPK(id); } /** * Stores a job log entry in the database. * Performs an insert or update operation based on whether the job log already exists. * * @param jobLog the job log to store */ public void store(final JobLog jobLog) { jobLogBhv.insertOrUpdate(jobLog, op -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0)