- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for storing (4.17 sec)
-
src/main/java/org/codelibs/fess/helper/SearchHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
*/ public CharMappingFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } /** * Returns the type identifier for this dictionary file. * * @return the string "mapping" identifying this as a character mapping file */ @Override public String getType() { return MAPPING; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
.build(new CacheLoader<String, List<Map<String, String>>>() { @Override public List<Map<String, String>> load(final String key) throws Exception { final ULocale uLocale = new ULocale(key); final Locale displayLocale = uLocale.toLocale(); final List<Map<String, String>> langItems = new ArrayList<>(supportedLanguages.length);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java
* @param timestamp The last modified timestamp of the file. */ public StemmerOverrideFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STEMMER_OVERRIDE; } @Override public String getPath() { return path; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/StorageClientFactory.java
final String endpoint = fessConfig.getStorageEndpoint(); final String accessKey = fessConfig.getStorageAccessKey(); final String secretKey = fessConfig.getStorageSecretKey(); final String bucket = fessConfig.getStorageBucket(); // Get explicit type or auto-detect final String typeStr = fessConfig.getStorageType(); final StorageType type;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 4.2K bytes - Viewed (0)