- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 261 for ForEach (0.07 sec)
-
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
dataMap.put(fessConfig.getIndexFieldUrl(), url); final List<String> roleTypeList = new ArrayList<>(); stream(crawlingConfig.getPermissions()).of(stream -> stream.forEach(p -> roleTypeList.add(p))); if (url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:")) { if (url.endsWith("/")) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
// warn about deprecated options PrintWriter printWriter = new PrintWriter(parserRequest.out() != null ? parserRequest.out() : System.out, true); parsedOptions.forEach(o -> o.warnAboutDeprecatedOptions(parserRequest, printWriter::println)); // assemble options if needed context.options = assembleOptions(parsedOptions); // system and user properties
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
* if the specified map is modified while the operation is in progress. */ public void putAll(Map<? extends K, ? extends Long> m) { m.forEach(this::put); } /** * Removes and returns the value associated with {@code key}. If {@code key} is not in the map, * this method has no effect and returns zero. */ @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 01 16:15:01 UTC 2024 - 11.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java
* * @since NEXT (but since 22.0 in the JRE flavor) */ @SuppressWarnings("Java7ApiChecker") @IgnoreJRERequirement // We rely on users not to call this without library desugaring. public void forEach(DoubleConsumer consumer) { checkNotNull(consumer); for (int i = start; i < end; i++) { consumer.accept(array[i]); } } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final ThumbnailManager thumbnailManager = ComponentUtil.getThumbnailManager(); final String thumbnailField = fessConfig.getIndexFieldThumbnail(); docList.stream().forEach(doc -> { if (!thumbnailManager.offer(doc)) { if (logger.isDebugEnabled()) { logger.debug("Removing {}={} from doc[{}]", thumbnailField, doc.get(thumbnailField),
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
final Map<String, Object> params = new HashMap<>(defaultSettings); final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); systemProperties.entrySet().stream().forEach(e -> { final String key = e.getKey().toString(); if (!key.startsWith(SAML_PREFIX)) { return; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} } } if (causes != null) { InvokerException exception = new InvokerException("Unable to close context"); causes.forEach(exception::addSuppressed); throw exception; } } } protected final ProtoLookup protoLookup; public LookupInvoker(ProtoLookup protoLookup) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
* performance-conscious users. */ if (key.equals(candidateKey)) { return entry.getValue(); } } return null; } @Override public void forEach(BiConsumer<? super K, ? super V> action) { checkNotNull(action); for (Entry<K, V> entry : entries) { action.accept(entry.getKey(), entry.getValue()); } } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 28 18:11:09 UTC 2024 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
if (highlightQueries != null) { final StringBuilder buf = new StringBuilder(100); highlightQueries.stream().forEach(q -> { buf.append("&hq=").append(LaFunctions.u(q)); }); data.setAppendHighlightParams(buf.toString()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0)