- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 322 for forEach (0.05 sec)
-
guava/src/com/google/common/collect/RegularImmutableBiMap.java
} @Override public ImmutableBiMap<K, V> inverse() { return RegularImmutableBiMap.this; } @Override public void forEach(BiConsumer<? super V, ? super K> action) { checkNotNull(action); RegularImmutableBiMap.this.forEach((k, v) -> action.accept(v, k)); } @Override @CheckForNull public K get(@CheckForNull Object value) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 11.3K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt
templateVersionConfiguration.resolutionStrategy.componentSelection.all { devSuffixes.forEach { if (it.containsMatchIn(candidate.version)) { reject("don't use snapshots") return@forEach } } } templateVersionConfiguration.isTransitive = false
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:29 UTC 2024 - 5.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
return preOrderIterator(root); } @Override public void forEach(Consumer<? super T> action) { checkNotNull(action); new Consumer<T>() { @Override public void accept(T t) { action.accept(t); children(t).forEach(this); } }.accept(root); } }; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientCreator.java
protected int maxClientFactorySize = 10000; public synchronized void register(final CrawlerClientFactory crawlerClientFactory) { clientMap.entrySet().stream().forEach(e -> load(crawlerClientFactory, e.getKey(), e.getValue())); clientFactoryList.add(crawlerClientFactory); if (clientFactoryList.size() > maxClientFactorySize) { clientFactoryList.remove(0); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 2.9K bytes - Viewed (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
val multiProjectApplicationSampleLanguages = listOf(JAVA, GROOVY, SCALA, KOTLIN) singleProjectSampleLanguages.forEach { language -> setupGeneratorTask(language, "library", ModularizationOption.SINGLE_PROJECT) setupGeneratorTask(language, "application", ModularizationOption.SINGLE_PROJECT) } multiProjectApplicationSampleLanguages.forEach { language -> setupGeneratorTask(language, "application", ModularizationOption.WITH_LIBRARY_PROJECTS) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
.forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); } protected void addFessSystemProperties(final List<String> cmdList) { System.getProperties().keySet().stream().filter(k -> k != null && k.toString().startsWith(Constants.SYSTEM_PROP_PREFIX)) .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
Map<String, PluginContainer> lfs = new HashMap<>(); lifecycleMapping.getLifecycles().forEach((id, lifecycle) -> { Map<String, Plugin> plugins = new HashMap<>(); lifecycle .getLifecyclePhases() .forEach((phase, lifecyclePhase) -> parseLifecyclePhaseDefinitions(plugins, phase, lifecyclePhase));
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
try { ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); logger.debug("Option: {}", options);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (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) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3K bytes - Viewed (0) -
apache-maven/src/test/resources/maven-configuration.md.vm
#end #macro(value $val) #if ($val) `$val` #else - #end #end | No | Key | Type | Description | Default Value | Since | Source | | --- | --- | --- | --- | --- | --- | --- | #foreach($key in $keys) | $foreach.count. | `$key.key` | `$key.configurationType` | $key.description | #value( $key.defaultValue ) | $key.since | $key.configurationSource |
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 13:39:33 UTC 2024 - 2K bytes - Viewed (0)