- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 246 for Key (0.01 sec)
-
guava-tests/test/com/google/common/cache/CacheReferencesTest.java
} public void testContainsKeyAndValue() { for (LoadingCache<Key, String> cache : caches()) { // maintain strong refs so these won't be collected, regardless of cache's key/value strength Key key = new Key(1); String value = key.toString(); assertSame(value, cache.getUnchecked(key)); assertTrue(cache.asMap().containsKey(key)); assertTrue(cache.asMap().containsValue(value));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 6.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/search.jsp
</c:if> <c:if test="${sort=='filename.desc'}"> <la:message key="labels.search_result_sort_filename_desc" /> </c:if> <c:if test="${sort=='created.asc'}"> <la:message key="labels.search_result_sort_created_asc" /> </c:if> <c:if test="${sort=='created.desc'}"> <la:message key="labels.search_result_sort_created_desc" /> </c:if> <c:if test="${sort=='content_length.asc'}">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/search.jsp
</c:if> <c:if test="${sort=='filename.desc'}"> <la:message key="labels.search_result_sort_filename_desc" /> </c:if> <c:if test="${sort=='created.asc'}"> <la:message key="labels.search_result_sort_created_asc" /> </c:if> <c:if test="${sort=='created.desc'}"> <la:message key="labels.search_result_sort_created_desc" /> </c:if> <c:if test="${sort=='content_length.asc'}">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<la:message key="labels.search_result_sort_filename_asc" /> </la:option> <la:option value="filename.desc"> <la:message key="labels.search_result_sort_filename_desc" /> </la:option> <la:option value="created.asc"> <la:message key="labels.search_result_sort_created_asc" /> </la:option> <la:option value="created.desc">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredKeyMultimap.java
public boolean containsKey(@CheckForNull Object key) { if (unfiltered.containsKey(key)) { @SuppressWarnings("unchecked") // k is equal to a K, if not one itself K k = (K) key; return keyPredicate.apply(k); } return false; } @Override public Collection<V> removeAll(@CheckForNull Object key) { return containsKey(key) ? unfiltered.removeAll(key) : unmodifiableEmptyCollection(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<la:message key="labels.search_result_sort_filename_asc" /> </la:option> <la:option value="filename.desc"> <la:message key="labels.search_result_sort_filename_desc" /> </la:option> <la:option value="created.asc"> <la:message key="labels.search_result_sort_created_asc" /> </la:option> <la:option value="created.desc">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 14.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FilteredEntryMultimap.java
return entries().size(); } private boolean satisfies(@ParametricNullness K key, @ParametricNullness V value) { return predicate.apply(immutableEntry(key, value)); } final class ValuePredicate implements Predicate<V> { @ParametricNullness private final K key; ValuePredicate(@ParametricNullness K key) { this.key = key; } @Override public boolean apply(@ParametricNullness V value) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
* Searches for the property with the specified key in this property list. * * @param key the property key. * @return the value in this property list with the specified key value. */ public String getProperty(String key) { return this.get(key); } /** * Searches for the property with the specified key in this property list. If the key is not found in this property
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/FilteredEntryMultimap.java
return entries().size(); } private boolean satisfies(@ParametricNullness K key, @ParametricNullness V value) { return predicate.apply(immutableEntry(key, value)); } final class ValuePredicate implements Predicate<V> { @ParametricNullness private final K key; ValuePredicate(@ParametricNullness K key) { this.key = key; } @Override public boolean apply(@ParametricNullness V value) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 12.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileInjector.java
Object key = getPluginExecutionKey().apply(element); merged.put(key, element); } for (PluginExecution element : src) { Object key = getPluginExecutionKey().apply(element); PluginExecution existing = merged.get(key); if (existing != null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.3K bytes - Viewed (0)