- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 402 for forEach (0.09 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
public static List<Map<String, String>> getFessPropItems(final FessConfig fessConfig) { final List<Map<String, String>> itemList = new ArrayList<>(); ComponentUtil.getSystemProperties().entrySet().stream().forEach(e -> { final String k = e.getKey().toString(); final String value; if (isMaskedValue(k)) { value = MASKED_VALUE; } else {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 9.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
StreamUtil.stream(request.getParameterMap()) .of(stream -> stream.filter(e -> e.getKey().startsWith("geo.") && e.getKey().endsWith(".point")).forEach(e -> { final String key = e.getKey(); for (final String geoField : geoFields) { if (key.startsWith("geo." + geoField + ".")) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/LoggerUsageTask.java
LoggedExec.javaexec(execOperations, spec -> { spec.getMainClass().set("org.elasticsearch.test.loggerusage.ESLoggerUsageChecker"); spec.classpath(getClasspath()); getClassDirectories().forEach(spec::args); }); } @Classpath public FileCollection getClasspath() { return classpath; } public void setClasspath(FileCollection classpath) {
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 17 08:59:22 GMT 2021 - 2.8K bytes - Click Count (0) -
src/test/java/jcifs/smb/WinErrorTest.java
assertEquals("Access is denied.", msgCap.getAllValues().get(idx)); // Ensure no unexpected empty messages (edge: empty strings) msgCap.getAllValues().forEach(m -> assertNotNull(m)); msgCap.getAllValues().forEach(m -> assertFalse(m.trim().isEmpty(), "Message should not be empty")); }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/RegularImmutableAsList.java
return (UnmodifiableListIterator<E>) delegateList.listIterator(index); } @GwtIncompatible // not present in emulated superclass @Override public void forEach(Consumer<? super E> action) { delegateList.forEach(action); } @GwtIncompatible // not present in emulated superclass @Override int copyIntoArray(@Nullable Object[] dst, int offset) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 23 17:50:58 GMT 2025 - 2.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
try { ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); System.getProperties() .entrySet() .stream() .forEach(e -> logger.debug("Property: {}={}", e.getKey(),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelper.java
if (StringUtil.isNotBlank(overrides)) { final Map<String, String> map = new LinkedHashMap<>(); StreamUtil.split(overrides, "\n").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> { final String[] values = StringUtils.split(s, "=", 2); if (values.length == 2) { map.put(values[0].trim(), values[1].trim()); } }));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 24 09:06:33 GMT 2026 - 2.7K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTask.kt
val gson: Gson = GsonBuilder().setFormattingStyle(FormattingStyle.PRETTY.withIndent(" ")).create() loadChanges().mapValues { gson.toJson(AcceptedApiChanges(sortChanges(it.value))) }.forEach { it.key.bufferedWriter().use { out -> out.write(it.value) out.write("\n") } } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Apr 09 14:09:16 GMT 2025 - 1.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableMapKeySet.java
return map.containsKey(object); } @Override K get(int index) { return map.entrySet().asList().get(index).getKey(); } @Override public void forEach(Consumer<? super K> action) { checkNotNull(action); map.forEach((k, v) -> action.accept(k)); } @Override boolean isPartialView() { return true; } // redeclare to help optimizers with b/310253115
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 2.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/AccessTokenService.java
} stream(accessToken.getPermissions()).of(stream -> stream.forEach(permissionSet::add)); final String name = accessToken.getParameterName(); stream(request.getParameterValues(name)).of(stream -> stream.filter(StringUtil::isNotBlank).forEach(permissionSet::add)); return OptionalEntity.of(permissionSet);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.5K bytes - Click Count (0)