- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 2,308 for xmap (0.27 sec)
-
android/guava-tests/test/com/google/common/collect/MapsCollectionTest.java
@Override protected Map<String, String> create(Entry<String, String>[] entries) { Map<String, String> map = new HashMap<>(); putEntries(map, entries); map.putAll(ENTRIES_TO_FILTER); map = Maps.filterEntries(map, FILTER_ENTRIES_1); return Maps.filterEntries(map, FILTER_ENTRIES_2); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/MethodUtilTest.java
/** * @param param * @return 戻り値 */ @SuppressWarnings("rawtypes") Map rawMap(Map param); /** * @param param * @return 戻り値 */ Map<String, Class<?>> genericMap(Map<Integer, String> param); }Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MemoryDataHelper.java
*/ public class MemoryDataHelper { /** Map of session IDs to URL queues for managing crawling queues. */ protected volatile Map<String, Queue<UrlQueueImpl<Long>>> urlQueueMap = new HashMap<>(); /** Map of session IDs to access result maps for storing crawling results. */ protected volatile Map<String, Map<String, AccessResultImpl<Long>>> sessionMap = new HashMap<>();Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
&& options.modelVersion().isEmpty(); boolean allOptionsDisabled = options.all().map(v -> !v).orElse(false) && options.infer().map(v -> !v).orElse(false) && options.model().map(v -> !v).orElse(false) && options.plugins().map(v -> !v).orElse(false) && options.modelVersion().isEmpty(); if (noOptionsSpecified || allOptionsDisabled) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 22.2K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
Map<EventType, Long> stats = logger.getStatistics(); assertEquals(Long.valueOf(1), stats.get(EventType.AUTHENTICATION_FAILURE), "Should have 1 authentication failure event"); } @Test @DisplayName("Test log file access") void testLogFileAccess() { logger.logFileAccess("READ", "/path/to/file.txt", true, "testuser"); Map<EventType, Long> stats = logger.getStatistics();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Table.java
* putAll()}. * * @return a map view from each row key to a secondary map from column keys to values */ Map<R, Map<C, V>> rowMap(); /** * Returns a view that associates each column key with the corresponding map from row keys to * values. Changes to the returned map will update this table. The returned map does not support
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalLoadingCacheTest.java
assertThat(map.replace(one, three)).isSameInstanceAs(two); assertThat(map.get(one)).isSameInstanceAs(three); assertThat(map.replace(one, two, three)).isFalse(); assertThat(map.get(one)).isSameInstanceAs(three); assertThat(map.replace(one, three, two)).isTrue(); assertThat(map.get(one)).isSameInstanceAs(two); assertThat(map).hasSize(3); map.clear();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 28 16:03:47 UTC 2025 - 13.3K bytes - Viewed (0) -
cmd/http-stats.go
if ok { return val } return 0 } // Load returns the recorded stats. func (stats *HTTPAPIStats) Load(toLower bool) map[string]int { if stats == nil { return map[string]int{} } stats.RLock() defer stats.RUnlock() apiStats := make(map[string]int, len(stats.apiStats)) for k, v := range stats.apiStats { if toLower { k = strings.ToLower(k) } apiStats[k] = v }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 11.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformerTest.java
assertTrue(obj instanceof Map); final Map<String, String> map = (Map) obj; assertEquals("タイトル", map.get("title")); assertEquals("第一章 第一節 ほげほげふがふが LINK 第2章 第2節", map.get("body")); final List<String> list = new ArrayList<String>(); list.add("リスト1"); list.add("リスト2"); list.add("リスト3"); assertEquals(list, map.get("list")); }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 12.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapsTest.java
TreeMap<Integer, Integer> map = Maps.newTreeMap(SOME_COMPARATOR); assertEquals(emptyMap(), map); assertSame(SOME_COMPARATOR, map.comparator()); } public void testTreeMapWithInitialMap() { SortedMap<Integer, Integer> map = Maps.newTreeMap(); map.put(5, 10); map.put(3, 20); map.put(1, 30); TreeMap<Integer, Integer> copy = Maps.newTreeMap(map); assertEquals(copy, map);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 22:56:33 UTC 2025 - 65K bytes - Viewed (0)