Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 411 for forEach (0.06 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanLogger.java

            if (logger.isDebugEnabled()) {
                writePlan(logger::debug, plan, project);
            }
        }
    
        public void writePlan(Consumer<String> writer, BuildPlan plan) {
            plan.projects().forEach(project -> writePlan(writer, plan, project));
        }
    
        public void writePlan(Consumer<String> writer, BuildPlan plan, MavenProject project) {
    Created: 2026-04-05 03:35
    - Last Modified: 2025-03-30 23:08
    - 7.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                final String key = LaFunctions.u(e.getKey());
                stream(e.getValue()).of(stream -> stream.filter(StringUtil::isNotBlank)
                        .forEach(s -> pagingQueryList.add("fields." + key + "=" + LaFunctions.u(s))));
            });
            form.as.entrySet().stream().filter(e -> e.getValue() != null).forEach(e -> {
    Created: 2026-03-31 13:07
    - Last Modified: 2025-08-07 03:06
    - 14K bytes
    - Click Count (0)
  3. 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));
    Created: 2026-04-05 03:35
    - Last Modified: 2025-01-24 17:29
    - 7.8K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/core/io/TraversalUtil.java

                return file.exists();
            }
    
            @Override
            public void forEach(final ClassHandler handler) {
                ClassTraversalUtil.forEach(baseDir, rootPackage, handler);
            }
    
            @Override
            public void forEach(final ResourceHandler handler) {
                ResourceTraversalUtil.forEach(baseDir, rootDir, handler);
            }
    
            @Override
            public void close() {
    Created: 2026-04-03 20:58
    - Last Modified: 2025-07-31 08:16
    - 18.6K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

                    .filter(p -> p.toString().endsWith(".adoc"))
                    .forEach(file -> {
                        try {
                            // The regex `^\\s*\\[\\[(.*)\\]\\]` looks for lines starting with '[[...]]'
                            // and captures the content within the brackets.
                            Files.readAllLines(file).forEach(line -> {
                                if (line.matches("^\\s*\\[\\[(.*)\\]\\].*")) {
    Created: 2026-04-01 11:36
    - Last Modified: 2025-08-21 15:38
    - 8.5K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/suggest/concurrent/Deferred.java

                    executeCallbacks.add(callback);
                }
            }
            if (executeCallbacks.size() > 0) {
                try {
                    executeCallbacks.stream().forEach(callback -> callback.accept(response));
                } catch (final Exception ignore) {}
            }
            latch.countDown();
        }
    
        /**
         * Rejects the deferred computation with the given throwable.
    Created: 2026-04-17 09:08
    - Last Modified: 2025-07-04 14:00
    - 7.8K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixturesPlugin.java

                        .forEach(entry -> {
                            String service = entry.getKey();
                            ServiceInfo infos = entry.getValue();
                            infos.getTcpPorts().forEach((container, host) -> {
                                String name = "test.fixtures." + service + ".tcp." + container;
    Created: 2026-04-08 16:19
    - Last Modified: 2021-09-29 15:07
    - 10.7K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

            final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey();
            keywordList.stream().forEach(keyword -> {
                final List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>> boostList = getQueryMap(key).get(toLowerCase(keyword));
                if (boostList != null) {
                    boostList.forEach(pair -> list.add(new FilterFunctionBuilder(pair.getValue2(), pair.getValue3())));
                }
            });
        }
    Created: 2026-03-31 13:07
    - Last Modified: 2025-11-28 16:29
    - 10.1K bytes
    - Click Count (0)
  9. 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(),
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-26 02:24
    - 10.4K bytes
    - Click Count (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

            if (resolveReportLocationsOnAdd) {
                reportLocations.forEach { it.resolve() }
            }
            taskPathToReports.merge(taskPath, reportLocations, { prev, next -> prev + next })
        }
    
        fun onTaskGraphReady() {
            resolveReportLocationsOnAdd = true
            taskPathToReports.values.asSequence()
                .flatMap { it }
                .forEach { it.resolve() }
        }
    
    Created: 2026-04-01 11:36
    - Last Modified: 2026-02-11 11:05
    - 14.3K bytes
    - Click Count (1)
Back to Top