- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 109 for key8 (4.57 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
data.putValue("key", "value1"); assertEquals("value1", data.getValues("key")[0]); // Second operation (overwrite) data.putValue("key", "value2"); assertEquals("value2", data.getValues("key")[0]); assertEquals(1, data.getValues("key").length); // Third operation with array (overwrite) data.putValues("key", new String[] { "value3", "value4", "value5" });
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Storage endpoint configuration key. */ public static final String STORAGE_ENDPOINT = "storage.endpoint"; /** Storage access key configuration key. */ public static final String STORAGE_ACCESS_KEY = "storage.accesskey"; /** Storage secret key configuration key. */ public static final String STORAGE_SECRET_KEY = "storage.secretkey";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java
} /** * Retrieves an extractor for the specified key. * If multiple extractors are associated with the key, returns a composite extractor * that tries each extractor in order until one succeeds. * * @param key the key to look up * @return the extractor for the key, or null if not found */ public Extractor getExtractor(final String key) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 7.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java
if (StringUtil.isNotBlank(key)) { textBuilder.append(key).append(fieldSeparator).append(value).append(lineSeparator); } else { textBuilder.append(value).append(lineSeparator); } // Add to metadata if at top level if (depth <= 1 && StringUtil.isNotBlank(key)) { metadataMap.computeIfAbsent(key, k -> new ArrayList<>()).add(value); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
} /** * Gets the map of display keys to query strings. * * @return the query map */ public Map<String, String> getQueryMap() { return queryMap; } /** * Adds a query to the query map with the specified display key. * * @param key the display key for the query * @param query the query string to add */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 15.9K bytes - Viewed (0) -
.github/workflows/maven.yml
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 06:47:15 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* If data appending is enabled and the key already exists, values are combined into arrays. * * @param dataMap the data map to modify * @param key the key to store the value under * @param value the value to store */ default void putResultDataBody(final Map<String, Object> dataMap, final String key, final Object value) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
return map.get(key); } /** * Retrieves a setting value as a String. * @param key The key of the setting. * @param defaultValue The default value if the setting is not found. * @return The setting value as a String. */ public String getAsString(final String key, final String defaultValue) { final Object obj = get(key); final String value;
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayMap.java
* Removes the entry corresponding to the specified key from the map entries. * * @param key * the key * @return the removed entry, or {@literal null} if there was no entry for the key */ protected Entry<K, V> removeMap(final Object key) { int hashCode = 0; int index = 0; if (key != null) { hashCode = key.hashCode();Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 20.1K bytes - Viewed (0)