- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,228 for Equals (0.04 sec)
-
guava/src/com/google/common/collect/ForwardingNavigableMap.java
* * <p>Each of the {@code standard} methods uses the map's comparator (or the natural ordering of the * elements, if there is no comparator) to test element equality. As a result, if the comparator is * not consistent with equals, some of the standard implementations may violate the {@code Map} * contract. * * <p>The {@code standard} methods and the collection views they return are not guaranteed to be
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
*/ public static boolean getBoolean(final String key, boolean def) { final String b = getProperty(key); if (b != null) { def = b.toLowerCase().equals("true"); } return def; } /** * Retrieve an array of <code>InetAddress</code> created from a property
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/entity/SuggestItemTest.java
assertTrue(dest.contains("new1")); assertTrue(dest.contains("new2")); // Should not have duplicate "existing" assertEquals(1, dest.stream().filter(s -> s.equals("existing")).count()); } @Test public void testConcatKinds() { // Test static concatKinds method SuggestItem.Kind[] kinds1 = { SuggestItem.Kind.QUERY };
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16.7K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java
ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map; Comparator<?> comparator2 = kvMap.comparator(); boolean sameComparator = (comparator2 == null) ? comparator == NATURAL_ORDER : comparator.equals(comparator2); if (sameComparator) { return kvMap; } } SortedMap<K, V> delegate = newModifiableDelegate(comparator);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
final String roleName = getSearchRoleName(entryDn); final String roleType = updateSearchRoles(roleSet, entryDn, roleName); if (fessConfig.getRoleSearchGroupPrefix().equals(roleType) && fessConfig.isLdapSamaccountnameGroup()) { sAMAccountGroupNameSet.add(roleName); } if (StringUtil.isNotBlank(groupFilter)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
@Override @J2ktIncompatible @GwtIncompatible Object writeReplace() { return super.writeReplace(); } } @Override public boolean equals(@Nullable Object obj) { return Lists.equalsImpl(this, obj); } @Override public int hashCode() { int hashCode = 1; int n = size(); for (int i = 0; i < n; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
} @Override public void putToInfoMap(String key, String value) { infoMap.put(key, value); if (Constants.CRAWLER_STATUS.equals(key)) { statusMap.put(key, value); } } @Override public Map<String, String> getInfoMap(String sessionId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
for (Method method : RateLimiter.class.getMethods()) { if (!isStatic(method.getModifiers()) && !NOT_WORKING_ON_MOCKS.contains(method.getName()) && !method.getDeclaringClass().equals(Object.class)) { method.invoke(mock, arbitraryParameters(method)); } } } private static Object[] arbitraryParameters(Method method) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
for (Method method : RateLimiter.class.getMethods()) { if (!isStatic(method.getModifiers()) && !NOT_WORKING_ON_MOCKS.contains(method.getName()) && !method.getDeclaringClass().equals(Object.class)) { method.invoke(mock, arbitraryParameters(method)); } } } private static Object[] arbitraryParameters(Method method) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
connectionMetrics.entrySet().removeIf(entry -> { String key = entry.getKey(); boolean exists = connections.stream().anyMatch(conn -> getConnectionKey(conn).equals(key)); return !exists; }); } /** * Get detailed health statistics */ public PoolHealthMetrics getHealthMetrics() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0)