- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 842 for key4 (0.01 sec)
-
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
referralData.setKey("test-key"); referralData.replaceCache(); assertEquals(referralData, cacheMap.get("test-key")); } @Test @DisplayName("Should replace cache entry with key") void testReplaceCache() { String key = "cache-key"; referralData.setKey(key); referralData.setCacheMap(cacheMap);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MapMakerInternalMap.java
if (key == null) { return null; } int hash = hash(key); return segmentFor(hash).getEntry(key, hash); } @Override public boolean containsKey(@Nullable Object key) { if (key == null) { return false; } int hash = hash(key); return segmentFor(hash).containsKey(key, hash); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 90K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingMapEntry.java
* to the provided {@code standardEquals} method. * * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equals} to test * equality for both keys and values. This may not be the desired behavior for map implementations * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose * comparator is not consistent with {@code equals}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
*/ public class FieldConfigs { /** * Map containing field names as keys and their corresponding configuration values as values. */ private final Map<String, String> params; /** * Constructs a new FieldConfigs instance with the specified parameter map. * * @param params the map containing field names as keys and configuration values as values */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
} /** * Gets the map of display keys to query strings. * * @return the query map */ public Map<String, String> getQueryMap() { return queryMap; } /** * Adds a query to the query map with the specified display key. * * @param key the display key for the query * @param query the query string to add */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
for (Map.Entry<String, Object> entry : context.entrySet()) { String key = entry.getKey().toLowerCase(); Object value = entry.getValue(); // Mask sensitive keys if (key.contains("password") || key.contains("secret") || key.contains("token") || key.contains("credential")) { masked.put(entry.getKey(), "****");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SetMultimapAsMapTester.java
public void testAsMapGetImplementsSet() { for (K key : multimap().keySet()) { assertTrue(multimap().asMap().get(key) instanceof Set); } } @MapFeature.Require(SUPPORTS_REMOVE) public void testAsMapRemoveImplementsSet() { List<K> keys = new ArrayList<>(multimap().keySet()); for (K key : keys) { resetCollection(); assertTrue(multimap().asMap().remove(key) instanceof Set); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/FacetResponse.java
* This class processes OpenSearch aggregations to provide structured facet information * for search result filtering and navigation. */ public class FacetResponse { /** * Map containing query facet counts, where keys are decoded query strings * and values are document counts for each query. */ protected Map<String, Long> queryCountMap = new LinkedHashMap<>(); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
} finally { System.clearProperty(Constants.FESS_CONFIG_PREFIX + arrayKey); } } // Test property key with dots public void test_get_propertyKeyWithDots() { String dottedKey = "deeply.nested.property.key"; String dottedValue = "nested-value"; System.setProperty(Constants.FESS_CONFIG_PREFIX + dottedKey, dottedValue); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.6K bytes - Viewed (0)