Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 161 - 170 of 2,229 for collects (0.05 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

                xpackFileTree = xpackConfigToFileTree.apply(xpackConfig).matching(xpackPatternSet);
            }
            if (includeCore.get().isEmpty() == false) {
                corePatternSet.setIncludes(includeCore.get().stream().map(prefix -> prefix + "*/**").collect(Collectors.toList()));
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  2. impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExports.java

    import java.util.Map;
    import java.util.Set;
    
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    
    import static java.util.function.Function.identity;
    import static java.util.stream.Collectors.collectingAndThen;
    import static java.util.stream.Collectors.toMap;
    
    /**
     * Provides information about artifacts (identified by groupId:artifactId string key) and classpath elements exported by
     * Maven core itself and loaded Maven core extensions.
     *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.4K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/ImmutableTable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.collect.Tables.immutableCell;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 17.3K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/ImmutableTable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.collect.Iterables.getOnlyElement;
    import static com.google.common.collect.Tables.immutableCell;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 17.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/opensearch/user/exbhv/RoleBhv.java

                        .stream()
                        .filter(e -> !"name".equals(e.getKey()))
                        .map(e -> new Pair<>(e.getKey(), (String) e.getValue()))
                        .collect(Collectors.toMap(Pair::getFirst, Pair::getSecond)));
                return result;
            } catch (InstantiationException | IllegalAccessException e) {
                final String msg = "Cannot create a new instance: " + entityType.getName();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.3K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseNotesIndexGenerator.java

            final List<String> includeVersions = versions.stream()
                .map(v -> v.hasQualifier() ? v.toString() : v.getMajor() + "." + v.getMinor())
                .distinct()
                .collect(Collectors.toList());
    
            final Map<String, Object> bindings = new HashMap<>();
            bindings.put("versions", versions);
            bindings.put("includeVersions", includeVersions);
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 2.1K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ResolveAllDependencies.java

        }
    
        @InputFiles
        public FileCollection getResolvedArtifacts() {
            return objectFactory.fileCollection()
                .from(configs.stream().filter(ResolveAllDependencies::canBeResolved).collect(Collectors.toList()));
        }
    
        @TaskAction
        void resolveAll() {
            // do nothing, dependencies are resolved when snapshotting task inputs
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                            .get(stream -> stream.map(String::trim).filter(StringUtil::isNotBlank).collect(Collectors.toList()));
    
                    final String webUrls = urlList.stream()
                            .filter(s -> Arrays.stream(webProtocols).anyMatch(p -> s.startsWith(p)))
                            .collect(Collectors.joining("\n"));
                    if (StringUtil.isNotBlank(webUrls)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 21.6K bytes
    - Click Count (0)
  9. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

                                        + e.getValue().stream()
                                                .map(l -> String.valueOf(l.getLineNumber()))
                                                .collect(Collectors.joining(", ")))
                                .collect(Collectors.joining("; ")));
            }
            if (!allowMetaVersions && !metaVersionLocations.isEmpty()) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 10 07:39:11 GMT 2025
    - 25.5K bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

                int actualVersion = Integer.parseInt(metadata.getLanguageVersion().getMajorVersion());
                return JavaHome.of(actualVersion, providers.provider(() -> installationDir));
            }).collect(Collectors.toList());
        }
    
        private Stream<InstallationLocation> getAvailableJavaInstallationLocationSteam() {
            return Stream.concat(
                javaInstallationRegistry.listInstallations().stream(),
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
Back to Top