- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 71 for BACKWARD (0.04 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java
assertEquals(pair.forward, copy.forward); assertEquals(pair.backward, copy.backward); assertSame(copy.backward, copy.forward.inverse()); assertSame(copy.forward, copy.backward.inverse()); } private static final class BiMapPair<K, V> implements Serializable { final BiMap<K, V> forward; final BiMap<V, K> backward; BiMapPair(BiMap<K, V> original) { this.forward = original;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractBiMap.java
void setDelegates(Map<K, V> forward, Map<V, K> backward) { inverse = checkMapsAndMakeInverse(forward, backward); delegate = forward; } private AbstractBiMap<V, K> checkMapsAndMakeInverse(Map<K, V> forward, Map<V, K> backward) { checkArgument(forward.isEmpty()); checkArgument(backward.isEmpty()); checkArgument(forward != backward); return makeInverse(backward); }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 15:50:50 UTC 2025 - 14.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java
assertEquals(pair.forward, copy.forward); assertEquals(pair.backward, copy.backward); assertSame(copy.backward, copy.forward.inverse()); assertSame(copy.forward, copy.backward.inverse()); } private static final class BiMapPair<K, V> implements Serializable { final BiMap<K, V> forward; final BiMap<V, K> backward; BiMapPair(BiMap<K, V> original) { this.forward = original;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.1K bytes - Viewed (0) -
compat/maven-compat/pom.xml
</dependency> <dependency> <groupId>javax.inject</groupId> <artifactId>javax.inject</artifactId> <!-- only for backward compatibility otherwhise would be provided --> <scope>compile</scope> </dependency> <dependency> <!-- only for backward compatibility --> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> <version>1.0</version> </dependency>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Dec 16 13:41:14 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
* for backward compatibility. * * @return true if caching is enabled, false otherwise */ public boolean isCache() { for (final String value : values) { if ("cache".equalsIgnoreCase(value)) { return true; } } // backward compatibilityRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/EnumBiMapTest.java
.containsExactly(Country.CANADA, Country.SWITZERLAND, Country.CHILE) .inOrder(); // backward map ordered by country assertThat(bimap.inverse().keySet()) .containsExactly(Country.CANADA, Country.CHILE, Country.SWITZERLAND) .inOrder(); // backward map ordered by country (even for currency values) assertThat(bimap.inverse().values())
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 11.9K bytes - Viewed (0) -
internal/crypto/crypto.go
} } // TLSCiphersBackwardCompatible returns a list of supported // TLS transport cipher suite IDs. // // In contrast to TLSCiphers, the list contains additional // ciphers for backward compatibility. In particular, AES-CBC // and non-ECDHE ciphers. func TLSCiphersBackwardCompatible() []uint16 { return []uint16{ tls.TLS_CHACHA20_POLY1305_SHA256, // TLS 1.3 tls.TLS_AES_128_GCM_SHA256,
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Jul 19 06:23:15 UTC 2025 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Primitives.java
WRAPPER_TO_PRIMITIVE_TYPE = Collections.unmodifiableMap(wrapToPrim); } private static void add( Map<Class<?>, Class<?>> forward, Map<Class<?>, Class<?>> backward, Class<?> key, Class<?> value) { forward.put(key, value); backward.put(value, key); } /** * Returns an immutable set of all nine primitive types (including {@code void}). Note that a
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/resources/fess_job.xml
<component name="pingJob" class="org.codelibs.fess.job.PingSearchEngineJob" instance="prototype"> </component> <component name="pythonJob" class="org.codelibs.fess.job.PythonJob" instance="prototype"> </component> <!-- Backward Compatibility --> <component name="pingEsJob" class="org.codelibs.fess.job.PingSearchEngineJob" instance="prototype"> </component>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jun 12 22:21:45 UTC 2025 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java
* */ @Deprecated public interface WagonManager extends org.apache.maven.repository.legacy.WagonManager { /** * this method is only here for backward compat (project-info-reports:dependencies) * the default implementation will return an empty AuthenticationInfo * * @param id an id * @return corresponding authentication info */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0)