- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,028 for C_value (0.03 sec)
-
src/main/webapp/WEB-INF/env/thumbnail/resources/log4j2.xml
<Properties> <Property name="domain.name" value="${sys:fess.log.name:-fess}" /> <Property name="log.level" value="${sys:fess.log.level:-info}" /> <Property name="root.log.level" value="${sys:fess.log.level:-warn}" /> <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:05:30 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/NumberConverter.java
public Object getAsObject(final String value) { if (StringUtil.isEmpty(value)) { return null; } try { return new DecimalFormat(pattern).parse(value); } catch (final ParseException e) { throw new ParseRuntimeException(e); } } @Override public String getAsString(final Object value) { if (value == null) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java
public Object getAsObject(final String value) { if (isEmpty(value)) { return null; } return TimestampConversionUtil.toSqlTimestamp(value, pattern); } @Override public String getAsString(final Object value) { if (value == null) { return null; } return StringConversionUtil.toString((Date) value, pattern); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
/** * Constructs a new Config instance by parsing the provided configuration value. * The value is split by pipe character (|) and each part is trimmed. * * @param value the configuration value string to parse */ public Config(final String value) { values = StreamUtil.split(value, Pattern.quote("|")).get(stream -> stream.map(String::trim).toArray(n -> new String[n])); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
*/ /** * Returns the value associated with the specified key, or {@code null} if there is no such value. * * <p>Specifically, if any range in this range map contains the specified key, the value * associated with that range is returned. */ @Nullable V get(K key); /** * Returns the range containing this key and its associated value, if such a range is present in
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
```Python old_dict = { "old key": "old value", "second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` Here, `new_dict` will contain all the key-value pairs from `old_dict` plus the new key-value pair: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/SmbPipeResourceTest.java
/** * Test if the PIPE_TYPE_RDONLY constant has the correct value. */ @Test void testPipeTypeRdonly() { assertEquals(SmbConstants.O_RDONLY, SmbPipeResource.PIPE_TYPE_RDONLY, "PIPE_TYPE_RDONLY should match SmbConstants.O_RDONLY"); } /** * Test if the PIPE_TYPE_WRONLY constant has the correct value. */ @Test void testPipeTypeWronly() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2K 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) -
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)