- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 2,243 for _value (0.1 sec)
-
android/guava/src/com/google/common/collect/TableCollectors.java
return column; } @Override public V getValue() { return value; } void merge(V value, BinaryOperator<V> mergeFunction) { checkNotNull(value, "value"); this.value = checkNotNull(mergeFunction.apply(this.value, value), "mergeFunction.apply"); } } private static <R extends @Nullable Object, C extends @Nullable Object, V> void mergeTables(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:07:06 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
} /** * Quotes a string value if it contains spaces. * Multi-word values are wrapped in double quotes with internal quotes replaced by spaces. * * @param value the string value to quote * @return the quoted string if it contains spaces, otherwise the original value */ protected String quote(final String value) { if (value.split("\\s").length > 1) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
* @return the property value, or the default value if not found */ public static String getProperty(String key, String defaultValue) { return System.getProperty(key, defaultValue); } /** * Returns the system environment variable value for the specified key. * * @param key the environment variable key * @return the environment variable value, or null if not found
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
final String field = "content"; final String value = "test"; assertTrue(indexingHelper.updateDocument(client, id, field, value)); assertEquals("fess.update", resultMap.get("index")); assertEquals(id, resultMap.get("id")); assertEquals(field, resultMap.get("field")); assertEquals(value, resultMap.get("value")); } public void test_deleteDocument() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
this.css = css; } /** * Sets a custom attribute name-value pair that this pruned tag should match. * * @param name the attribute name to match * @param value the attribute value to match */ public void setAttr(final String name, final String value) { attrName = name; attrValue = value; } @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
callbacks/helper_test.go
Columns: []clause.Column{{Name: "age"}}, Values: [][]interface{}{{18}}, }, }, { name: "Test convert float value", input: map[string]interface{}{ "score": 99.5, }, expect: clause.Values{ Columns: []clause.Column{{Name: "score"}}, Values: [][]interface{}{{99.5}}, }, }, { name: "Test convert bool value", input: map[string]interface{}{ "active": true,
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Mar 05 02:22:57 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/resources/log4j2.xml
<Properties> <Property name="domain.name" value="${sys:fess.log.name:-fess}" /> <Property name="log.level" value="${sys:fess.log.level:-debug}" /> <Property name="root.log.level" value="${sys:fess.log.level:-info}" /> <Property name="log.pattern" value="%d [%t] %-5p %msg%n" /> <Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" /> <Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Feb 20 13:17:33 UTC 2023 - 3.7K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Floats.java
} return max; } /** * Returns the value nearest to {@code value} which is within the closed range {@code [min..max]}. * * <p>If {@code value} is within the range {@code [min..max]}, {@code value} is returned * unchanged. If {@code value} is less than {@code min}, {@code min} is returned, and if {@code * value} is greater than {@code max}, {@code max} is returned. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.7K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/bug-report.yaml
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Feb 28 09:34:43 UTC 2022 - 2.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableBiMap.java
SingletonImmutableBiMap(K key, V value) { super(singletonMap(checkNotNull(key), checkNotNull(value))); this.singleKey = key; this.singleValue = value; } private SingletonImmutableBiMap(K key, V value, SingletonImmutableBiMap<V, K> inverse) { super(singletonMap(checkNotNull(key), checkNotNull(value))); this.singleKey = key; this.singleValue = value; this.inverse = inverse; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 22:23:20 UTC 2025 - 1.8K bytes - Viewed (0)