- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 185 for replacements (0.12 sec)
-
src/main/resources/fess_label_en.properties
labels.duplicateHostName=Duplicate Host Name labels.pageNumber=Page Number labels.password=Password labels.paths=Paths labels.port=Port labels.regex=Regex labels.regularName=Regular Name labels.replacement=Replacement labels.sessionId=Session ID labels.sortOrder=Sort Order labels.updatedBy=Updated By labels.updatedTime=Updated Time labels.urls=URLs labels.userAgent=User Agent labels.username=Username labels.value=Value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Ints.java
/** * Returns a hash code for {@code value}; obsolete alternative to {@link Integer#hashCode(int)}. * * @param value a primitive {@code int} value * @return a hash code for the value */ @InlineMe(replacement = "Integer.hashCode(value)") @InlineMeValidationDisabled( "The hash code of a int is the int itself, so it's simplest to return that.") public static int hashCode(int value) { return value; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 31.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
*/ @GwtIncompatible // not worth using in GWT for now class CompactHashMap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMap<K, V> implements Serializable { /* * TODO: Make this a drop-in replacement for j.u. versions, actually drop them in, and test the * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
/** * Returns a hash code for {@code value}; obsolete alternative to {@link Long#hashCode(long)}. * * @param value a primitive {@code long} value * @return a hash code for the value */ @InlineMe(replacement = "Long.hashCode(value)") public static int hashCode(long value) { return Long.hashCode(value); } /** * Compares the two specified {@code long} values. The sign of the value returned is the same as
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
"type": "mapping", "mappings": [ "\\u200C=> "] }, "removeall_filter": { "type": "pattern_replace", "pattern":"(.*)", "replacement":"" } }, "filter": { "stemmer_en_filter": { "type": "stemmer", "name": "english" }, "english_override": {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jun 06 14:17:42 UTC 2025 - 39.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashMap.java
*/ @GwtIncompatible // not worth using in GWT for now class CompactHashMap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMap<K, V> implements Serializable { /* * TODO: Make this a drop-in replacement for j.u. versions, actually drop them in, and test the * world. Figure out what sort of space-time tradeoff we're actually going to get here with the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 35.7K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.duplicateHostName=Duplicate Host Name labels.pageNumber=Page Number labels.password=Password labels.paths=Paths labels.port=Port labels.regex=Regex labels.regularName=Regular Name labels.replacement=Replacement labels.sessionId=Session ID labels.sortOrder=Sort Order labels.updatedBy=Updated By labels.updatedTime=Updated Time labels.urls=URLs labels.userAgent=User Agent labels.username=Username labels.value=Value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/FluentFuture.java
: new ForwardingFluentFuture<V>(future); } /** * Simply returns its argument. * * @deprecated no need to use this * @since 28.0 */ @InlineMe( replacement = "checkNotNull(future)", staticImports = "com.google.common.base.Preconditions.checkNotNull") @Deprecated public static <V extends @Nullable Object> FluentFuture<V> from(FluentFuture<V> future) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/HostnameVerifierTest.kt
Ij1qLQ/YI8OogZPMk7YY46/ydWWp7UpD47zy/vKmm4pOc8Glc8MoDD6UADs= -----END CERTIFICATE----- """.trimIndent(), ) // Replacement characters are deliberate, from certificate loading. assertThat(verifier.verify("���.com", session)).isFalse() assertThat(verifier.verify("℡.com", session)).isFalse() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 40.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
} /** * Returns this list instance. * * @since 2.0 * @deprecated There is no reason to use this; it always returns {@code this}. */ @InlineMe(replacement = "this") @Deprecated @Override public final ImmutableList<E> asList() { return this; } @Override int copyIntoArray(@Nullable Object[] dst, int offset) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0)