- Sort Score
- Result 10 results
- Languages All
Results 61 - 66 of 66 for keymatch (0.04 sec)
-
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertTrue(execJob.jvmOptions.contains("-Xmx2g")); assertTrue(execJob.jvmOptions.contains("-Xms1g")); assertTrue(execJob.jvmOptions.contains("-Xdebug")); assertTrue(execJob.jvmOptions.stream().anyMatch(opt -> opt.startsWith("-Xlog:gc"))); } // Test edge cases and boundary conditions public void test_edgeCases() { // Test with empty strings execJob.sessionId("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
if (searchLog != null) { final String userAgent = searchLog.getUserAgent(); final boolean isBot = userAgent != null && stream(botNames).get(stream -> stream.anyMatch(botName -> userAgent.indexOf(botName) >= 0)); if (!isBot) { searchLog.getUserInfo().ifPresent(userInfo -> { final String code = userInfo.getId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
// Verify expected shares are present List<String> shareList = List.of(shares); boolean hasPublic = shareList.stream().anyMatch(s -> s.toLowerCase().contains("public")); boolean hasShared = shareList.stream().anyMatch(s -> s.toLowerCase().contains("shared")); assertTrue(hasPublic || hasShared, "Should contain expected shares");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
if (StringUtil.isNotBlank(requiredKeysStr) && StreamUtil.split(requiredKeysStr, ",") .get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).anyMatch(name -> { final String[] values = req.getParameterValues(name); if (values == null || values.length == 0 || StringUtil.isEmpty(values[0])) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
} /** * Returns {@code true} if any element in {@code iterable} satisfies the predicate. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch}. */ public static <T extends @Nullable Object> boolean any( Iterable<T> iterable, Predicate<? super T> predicate) { return Iterators.any(iterable.iterator(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Iterables.java
} /** * Returns {@code true} if any element in {@code iterable} satisfies the predicate. * * <p><b>{@code Stream} equivalent:</b> {@link Stream#anyMatch}. */ public static <T extends @Nullable Object> boolean any( Iterable<T> iterable, Predicate<? super T> predicate) { return Iterators.any(iterable.iterator(), predicate); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.3K bytes - Viewed (0)