- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 164 for forEach (0.05 sec)
-
BsGroupCB.java
!= null) { L92: builder.setQuery(queryBuilder); L93: } L94: _conditionQuery.getFieldSortBuilderList().forEach(sort -> { L95: builder.addSort(sort); L96: }); L97: } L98: L99: if (_conditionAggregation != null) { L100: _conditionAggregation.getAggregationBuilderList().forEach(builder::addAggregation); L101: } L102: L103: if (_specification != null) { L104: builder.setFetchSource(_specifi...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.4K bytes -
OpenIdConnectCredential.java
final Set<String> permissionSet = new HashSet<>(); L116: permissionSet.add(systemHelper.getSearchRoleByUser(name)); L117: stream(groups).of(stream -> stream.forEach(s -> permissionSet.add(systemHelper.getSearchRoleByGroup(s)))); L118: stream(roles).of(stream -> stream.forEach(s -> permissionSet.add(systemHelper.getSearchRoleByRole(s)))); L119: permissions = permissionSet.toArray(new String[permissionSet.size()]); L120: } L121: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.2K bytes -
ActivityHelper.java
.ENGLISH)); L125: valueMap.put("user", user.map(FessUserBean::getUserId).orElse("-")); L126: final Comparator<Map.Entry<String, String>> c = Comparator.comparing(Map.Entry::getKey); L127: params.entrySet().stream().sorted(c).forEach(e -> { L128: valueMap.put(e.getKey(), e.getValue().replace('\t', '_')); L129: }); L130: log(valueMap); L131: } L132: L133: protected void log(final Map<String, String> valueMap) { L134: valueMap.put("ip", getClientIp());...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.7K bytes -
BsFailureUrlCB.java
!= null) { L92: builder.setQuery(queryBuilder); L93: } L94: _conditionQuery.getFieldSortBuilderList().forEach(sort -> { L95: builder.addSort(sort); L96: }); L97: } L98: L99: if (_conditionAggregation != null) { L100: _conditionAggregation.getAggregationBuilderList().forEach(builder::addAggregation); L101: } L102: L103: if (_specification != null) { L104: builder.setFetchSource(_specifi...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.9K bytes -
BsLabelTypeCB.java
!= null) { L92: builder.setQuery(queryBuilder); L93: } L94: _conditionQuery.getFieldSortBuilderList().forEach(sort -> { L95: builder.addSort(sort); L96: }); L97: } L98: L99: if (_conditionAggregation != null) { L100: _conditionAggregation.getAggregationBuilderList().forEach(builder::addAggregation); L101: } L102: L103: if (_specification != null) { L104: builder.setFetchSource(_specifi...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.2K bytes -
BsThumbnailQueueCB.java
!= null) { L92: builder.setQuery(queryBuilder); L93: } L94: _conditionQuery.getFieldSortBuilderList().forEach(sort -> { L95: builder.addSort(sort); L96: }); L97: } L98: L99: if (_conditionAggregation != null) { L100: _conditionAggregation.getAggregationBuilderList().forEach(builder::addAggregation); L101: } L102: L103: if (_specification != null) { L104: builder.setFetchSource(_specifi...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.9K bytes -
BsDataConfigCB.java
!= null) { L92: builder.setQuery(queryBuilder); L93: } L94: _conditionQuery.getFieldSortBuilderList().forEach(sort -> { L95: builder.addSort(sort); L96: }); L97: } L98: L99: if (_conditionAggregation != null) { L100: _conditionAggregation.getAggregationBuilderList().forEach(builder::addAggregation); L101: } L102: L103: if (_specification != null) { L104: builder.setFetchSource(_specifi...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes -
NotificationHelper.java
(StringUtil.isBlank(slackWebhookUrls)) { L47: return; L48: } L49: final String body = toSlackMessage(discloser); L50: StreamUtil.split(slackWebhookUrls, "[,\\s]").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(url -> { L51: try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) { L52: if (response.getHttpStatusCode() == 200) { L53: if (logger.isDebugEnabled())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
AdminSysteminfoAction.java
L121: L122: public static List<Map<String, String>> getFessPropItems(final FessConfig fessConfig) { L123: final List<Map<String, String>> itemList = new ArrayList<>(); L124: ComponentUtil.getSystemProperties().entrySet().stream().forEach(e -> { L125: final String k = e.getKey().toString(); L126: final String value; L127: if (isMaskedValue(k)) { L128: value = MASKED_VALUE; L129: } else { L130: value = e.getValue().toString();...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 7.5K bytes -
Crawler.java
(logger.isDebugEnabled()) { L203: try { L204: ManagementFactory.getRuntimeMXBean().getInputArguments().stream().forEach(s -> logger.debug("Parameter: {}", s)); L205: System.getProperties().entrySet().stream().forEach(e -> logger.debug("Property: {}={}", e.getKey(), e.getValue())); L206: System.getenv().entrySet().forEach(e -> logger.debug("Env: {}={}", e.getKey(), e.getValue())); L207: logger.debug("Option: {}", options); L208: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes