- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 2,235 for C_value (0.24 sec)
-
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
Class<@NonNull T> type, @ParametricNullness T value) { return cast(type, put(type, value)); } @Override public <T extends @NonNull B> @Nullable T getInstance(Class<T> type) { return cast(type, get(type)); } @CanIgnoreReturnValue private static <T> @Nullable T cast(Class<T> type, @Nullable Object value) { return Primitives.wrap(type).cast(value); } private Object writeReplace() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java
checkSpecifiedProperty("value"); return convertEmptyToNull(value); } public void setValue(String value) { registerModifiedProperty("value"); this.value = value; } public String getVirtualHost() { checkSpecifiedProperty("virtualHost"); return convertEmptyToNull(virtualHost); } public void setVirtualHost(String value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/AssertionUtil.java
/** * Asserts that the argument is not <code>null</code>. * * @param argName * The name of the argument that must not be {@code null}. * @param argValue * The value of the argument. * @throws NullArgumentException * If the argument is <code>null</code>. */ public static void assertArgumentNotNull(final String argName, final Object argValue) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.5K bytes - Viewed (0) -
plugin.xml
<antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="plugin.groupId" value="org/codelibs/opensearch" /> <param name="plugin.name.prefix" value="opensearch-" /> <param name="plugin.name" value="analysis-extension" /> <param name="plugin.version" value="3.2.0" /> <param name="plugin.zip.version" value="3.2.0" /> </antcall> <!-- analysis-fess -->
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 3.5K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/ImmutableCollections.java
} static <K, V> Map<K, V> singletonMap(K key, V value) { return new Map1<>(key, value); } private static class Map1<K, V> extends AbstractImmutableMap<K, V> { private final Entry<K, V> entry; private Map1(K key, V value) { this.entry = new SimpleImmutableEntry<>(key, value); } @Override public Set<Entry<K, V>> entrySet() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 07 11:47:42 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsUserInfo.java
return createdAt; } public void setCreatedAt(LocalDateTime value) { registerModifiedProperty("createdAt"); this.createdAt = value; } public LocalDateTime getUpdatedAt() { checkSpecifiedProperty("updatedAt"); return updatedAt; } public void setUpdatedAt(LocalDateTime value) { registerModifiedProperty("updatedAt"); this.updatedAt = value;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsElevateWordToLabel.java
} public void setElevateWordId(String value) { registerModifiedProperty("elevateWordId"); this.elevateWordId = value; } public String getLabelTypeId() { checkSpecifiedProperty("labelTypeId"); return convertEmptyToNull(labelTypeId); } public void setLabelTypeId(String value) { registerModifiedProperty("labelTypeId");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 4.5K bytes - Viewed (0) -
cmd/metrics-v3-api.go
} for name, value := range httpStats.TotalS35xxErrors.APIStats { m.Set(apiRequests5xxErrorsTotal, float64(value), "name", name, "type", "s3") } for name, value := range httpStats.TotalS34xxErrors.APIStats { m.Set(apiRequests4xxErrorsTotal, float64(value), "name", name, "type", "s3") } for name, value := range httpStats.TotalS3Canceled.APIStats { m.Set(apiRequestsCanceledTotal, float64(value), "name", name, "type", "s3")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
* * @param array * the array * @param value * the value to search for * @return {@literal true} if the array contains the specified value */ public static boolean contains(final long[] array, final long value) { return indexOf(array, value) > -1; } /** * Returns {@literal true} if the array contains the specified value.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
} /** * Converts a wildcard value to lowercase if configured to do so. * * @param value The wildcard value to potentially convert * @return The value in lowercase if lowercaseWildcard is true, otherwise the original value */ protected String toLowercaseWildcard(final String value) { if (lowercaseWildcard) { return value.toLowerCase(Locale.ROOT); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0)