Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for groupingBy (0.17 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                                .collect(Collectors.groupingBy(Pair::getFirst, Collectors.mapping(Pair::getSecond, Collectors.toList())));
                        appendJson("search-field", searchFieldMap, buf).append(',');
                        final Map<String, List<String>> requestHeaderMap = entity.getRequestHeaderList().stream()
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:46 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FluentIterable.java

       * corresponding to each key appear in the same order as they are encountered.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code stream.collect(Collectors.groupingBy(keyFunction))}
       * behaves similarly, but returns a mutable {@code Map<K, List<E>>} instead, and may not preserve
       * the order of entries.
       *
       * @param keyFunction the function used to produce the key for each value
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 24 13:42:31 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. architecture/environments/operator.md

    - `IstioOperatorSpec`: The API directly defined in the
    [IstioOperatorSpec proto](https://github.com/istio/api/blob/master/operator/v1alpha1/operator.proto),
    including feature and component groupings, namespaces and enablement, and per-component K8s settings.
    - Helm values.yaml API, implicitly defined through the various values.yaml files in the
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Jul 29 21:11:35 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top