- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for arrayKey (1.11 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
// Test getting array-like configuration values public void test_get_arrayValues() { String arrayKey = "array.values"; String arrayValue = "value1,value2,value3"; System.setProperty(Constants.FESS_CONFIG_PREFIX + arrayKey, arrayValue); try { String value = fessConfig.get(arrayKey); assertEquals(arrayValue, value); } finally {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java
StringBuilder buf = new StringBuilder(); double[] values = { 1.5, 2.3, 3.7 }; Supplier<Object> supplier = () -> values; monitorTarget.append(buf, "arrayKey", supplier); assertEquals("\"arrayKey\":[1.5, 2.3, 3.7]", buf.toString()); } // Test append method with empty double array public void test_append_emptyDoubleArray() { StringBuilder buf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java
logger.debug("Add analyzer settings. {} key: {} value: {}", arraySettingsIndexName, key, value); } final Map<String, Object> source = new HashMap<>(); source.put(FieldNames.ARRAY_KEY, key); source.put(FieldNames.ARRAY_VALUE, value); source.put(FieldNames.TIMESTAMP, DateTimeFormatter.ISO_INSTANT.format(ZonedDateTime.now()));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 15.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java
* <li>{@link #TAGS} - The tags field.</li> * <li>{@link #ROLES} - The roles field.</li> * <li>{@link #FIELDS} - The fields field.</li> * <li>{@link #LANGUAGES} - The languages field.</li> * <li>{@link #ARRAY_KEY} - The key for array elements.</li> * <li>{@link #ARRAY_VALUE} - The value for array elements.</li> * <li>{@link #ANALYZER_SETTINGS_TYPE} - The analyzer settings type field.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
ArrayReference<? extends L> arrayRef = (ArrayReference<? extends L>) ref; // Try to clear out the array slot, n.b. if we fail that is fine, in either case the // arrayRef will be out of the array after this step. locks.compareAndSet(arrayRef.index, arrayRef, null); } } @Override public int size() { return size;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 7.5K bytes - Viewed (0)