- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,090 for punt (0.12 sec)
-
guava-tests/test/com/google/common/collect/UnmodifiableTableColumnTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
void testSensitiveDataMasking() { logger.setSensitiveDataMaskingEnabled(true); Map<String, Object> context = new HashMap<>(); context.put("password", "secretpassword123"); context.put("sessionId", "abc123def456"); context.put("username", "******@****.***"); logger.logEvent(EventType.AUTHENTICATION_SUCCESS, Severity.INFO, "Login attempt", context);
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/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
.filter(o -> o != null && keySet.add(o.getFirst())) .collect(HashMap<String, List<String>>::new, (m, d) -> m.put(d.getFirst(), Arrays.asList(d.getSecond().split(","))), HashMap::putAll)); } propMap.put(DEFAULT_LABEL_VALUES, map); } return map.entrySet().stream().flatMap(e -> { final String key = e.getKey();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 86.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/ApiAdminKeymatchAction.java
* * @param body the key match data to update * @return JSON response containing the updated key match setting ID */ // PUT /api/admin/keymatch/setting @Execute public JsonResponse<ApiResult> put$setting(final EditBody body) { validateApi(body, messages -> {}); body.crudMode = CrudMode.EDIT; final KeyMatch keyMatch = getKeyMatch(body).map(entity -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
Function<? super T, ? extends V> valueFunction) { checkNotNull(keyFunction); checkNotNull(valueFunction); return Collector.of( ImmutableMap.Builder<K, V>::new, (builder, input) -> builder.put(keyFunction.apply(input), valueFunction.apply(input)), ImmutableMap.Builder::combine, ImmutableMap.Builder::buildOrThrow); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/CollectCollectors.java
Function<? super T, ? extends V> valueFunction) { checkNotNull(keyFunction); checkNotNull(valueFunction); return Collector.of( ImmutableMap.Builder<K, V>::new, (builder, input) -> builder.put(keyFunction.apply(input), valueFunction.apply(input)), ImmutableMap.Builder::combine, ImmutableMap.Builder::buildOrThrow); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
Map<String, String> mapWithNulls = new HashMap<>(); mapWithNulls.put(null, null); assertEquals(0L, MemoryUtil.sizeOf(mapWithNulls)); // Map with mixed content Map<Object, Object> mixedMap = new HashMap<>(); mixedMap.put("key", "value"); mixedMap.put(123, 456); mixedMap.put(null, "test"); assertEquals(228L, MemoryUtil.sizeOf(mixedMap));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProviderTest.java
FessActionAdjustmentProvider provider = new FessActionAdjustmentProvider(fessConfig); final Map<String, String> headerMap = new HashMap<>(); provider.adjustActionResponseHeaders("text/plain", (k, v) -> headerMap.put(k, v)); assertEquals(0, headerMap.size()); } public void test_write_defaultHeadersOnly() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
context.put("thread", Thread.currentThread().getName()); context.put("threadId", Thread.currentThread().getId()); String sessionId = MDC.get("sessionId"); if (sessionId != null) { context.put("sessionId", sessionId); } String userId = MDC.get("userId"); if (userId != null) { context.put("userId", userId); } }
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-tests/test/com/google/common/collect/UnmodifiableTableRowTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 1.5K bytes - Viewed (0)