- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getHostKey (0.13 sec)
-
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
@Override public int load() { final Map<String, Map<String, String[]>> relatedQueryMap = new HashMap<>(); getAvailableRelatedQueryList().stream().forEach(entity -> { final String key = getHostKey(entity); Map<String, String[]> map = relatedQueryMap.get(key); if (map == null) { map = new HashMap<>(); relatedQueryMap.put(key, map); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
final Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = new HashMap<>(); getAvailableRelatedContentList().stream().forEach(entity -> { final String key = getHostKey(entity); Pair<Map<String, String>, List<Pair<Pattern, String>>> pair = relatedContentMap.get(key); if (pair == null) { pair = new Pair<>(new HashMap<>(), new ArrayList<>());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0)