- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 1,208 for key5 (0.02 sec)
-
android/guava/src/com/google/common/base/Joiner.java
* * <ul> * <li>To output a separate entry for each key-value pair, pass {@code multimap.entries()} to a * {@code MapJoiner} method that accepts entries as input, and receive output of the form * {@code key1=A&key1=B&key2=C}. * <li>To output a single entry for each key, pass {@code multimap.asMap()} to a {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
dataMap.put("key1", "value1"); dataMap.put("key2", ""); dataMap.put("key3", null); // Test with existing value String result1 = (String) method.invoke(crawler, dataMap, "key1", "default"); assertEquals("value1", result1); // Test with empty value String result2 = (String) method.invoke(crawler, dataMap, "key2", "default");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
Smb2EncryptionContext context2 = new Smb2EncryptionContext(EncryptionNegotiateContext.CIPHER_AES128_GCM, DialectVersion.SMB311, key2, key2); // When - Wipe keys from context1 context1.secureWipeKeys(); // Then - Context2 should still be functional assertDoesNotThrow(() -> {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheReferencesTest.java
public void testKeySetEntrySetValues() { for (LoadingCache<Key, String> cache : caches()) { Key key1 = new Key(1); String value1 = key1.toString(); Key key2 = new Key(2); String value2 = key2.toString(); assertSame(value1, cache.getUnchecked(key1)); assertSame(value2, cache.getUnchecked(key2)); assertEquals(ImmutableSet.of(key1, key2), cache.asMap().keySet());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
facetQueryView.addQuery("key1", "query1"); assertEquals(1, facetQueryView.getQueryMap().size()); assertEquals("query1", facetQueryView.getQueryMap().get("key1")); facetQueryView.addQuery("key2", "query2"); assertEquals(2, facetQueryView.getQueryMap().size()); assertEquals("query2", facetQueryView.getQueryMap().get("key2")); // Test overwriting existing key
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
} @Test @DisplayName("Test log event") void testLogEvent() { Map<String, Object> context = new HashMap<>(); context.put("key1", "value1"); context.put("key2", "value2"); logger.logEvent(EventType.CONFIGURATION_CHANGE, Severity.INFO, "Configuration changed", context); Map<EventType, Long> stats = logger.getStatistics();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
viewHelper.setUseSession(true); assertTrue(viewHelper.isUseSession()); viewHelper.addInitFacetParam("key1", "value1"); assertEquals("key1", viewHelper.getInitFacetParamMap().get("value1")); viewHelper.addInitGeoParam("key2", "value2"); assertEquals("key2", viewHelper.getInitGeoParamMap().get("value2")); FacetQueryView facetQueryView = new FacetQueryView();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/OptionalUtilTest.java
assertFalse(result.isPresent()); } public void test_ofNullable_withMap() { Map<String, Object> testValue = new HashMap<>(); testValue.put("key1", "value1"); testValue.put("key2", 42); OptionalEntity<Map<String, Object>> result = OptionalUtil.ofNullable(testValue); assertNotNull(result); assertTrue(result.isPresent());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseContextTest.java
DirectoryLeaseContext context = new DirectoryLeaseContext(key1, 0, DirectoryCacheScope.IMMEDIATE_CHILDREN); context.setLeaseKey(key2); assertEquals(key2, context.getLeaseKey()); context.setLeaseState(DirectoryLeaseState.DIRECTORY_FULL); assertEquals(DirectoryLeaseState.DIRECTORY_FULL, context.getLeaseState()); context.setCacheScope(DirectoryCacheScope.RECURSIVE_TREE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 10.1K bytes - Viewed (0)