Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for forEach (0.08 sec)

  1. PopularWordHelper.java

    aseSeed); L77: stream(baseTags).of(stream -> stream.forEach(tag -> popularWordsRequestBuilder.addTag(tag))); L78: stream(baseRoles).of(stream -> stream.forEach(role -> popularWordsRequestBuilder.addRole(role))); L79: stream(baseFields).of(stream -> stream.forEach(field -> popularWordsRequestBuilder.addField(field))); L80: stream(baseExcludes).of(stream -> stream.forEach(exclude -> popularWordsRequestBuilder.addExcludeWord(exclude))); L81:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.6K bytes
  2. SearchLogHelper.java

    userInfoBhv.batchUpdate(updateList); L330: searchLogList.stream().forEach(searchLog -> { L331: searchLog.getUserInfo().ifPresent(userInfo -> { L332: searchLog.setUserInfoId(userInfo.getId()); L333: }); L334: }); L335: if (fessConfig.isLoggingSearchUseLogfile()) { L336: insertList.forEach(this::writeSearchLogEvent); L337: updateList.forEach(this::writeSearchLogEvent); L338: } L339: }...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jul 22 02:07:37 UTC 2024
      21.7K bytes
  3. ExecJob.java

    != null && k.toString().startsWith(Constants.FESS_CONFIG_PREFIX)) L152: .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); L153: } L154: L155: protected void addFessSystemProperties(final List<String> cmdList) { L156: System.getProperties().keySet().stream().filter(k -> k != null && k.toString().startsWith(Constants.SYSTEM_PROP_PREFIX)) L157: .forEach(k -> addSystemProperty(cmdList, k.toString(), null, null)); L158: } L159: L160: protected...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.7K bytes
  4. KeyMatchHelper.java

    list) { L140: final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey(); L141: keywordList.stream().forEach(keyword -> { L142: final List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>> boostList = getQueryMap(key).get(toLowerCase(keyword)); L143: if (boostList != null) { L144: boostList.forEach(pair -> list.add(new FilterFunctionBuilder(pair.getValue2(), pair.getValue3()))); L145: } L146: }); L147: } L148:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      8.2K bytes
  5. SearchAction.java

    form.fields.entrySet().stream().filter(e -> e.getValue() != null).forEach(e -> { L257: final String key = LaFunctions.u(e.getKey()); L258: stream(e.getValue()).of(stream -> stream.filter(StringUtil::isNotBlank) L259: .forEach(s -> pagingQueryList.add("fields." + key + "=" + LaFunctions.u(s)))); L260: }); L261: form.as.entrySet().stream().filter(e -> e.getValue() != null).forEach(e -> { L262: final String key = LaFunctions.u(e.getKey());...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      12.3K bytes
  6. SamlCredential.java

    Set<String> permissionSet = new HashSet<>(); L159: permissionSet.add(systemHelper.getSearchRoleByUser(nameId)); L160: stream(groups).of(stream -> stream.forEach(s -> permissionSet.add(systemHelper.getSearchRoleByGroup(s)))); L161: stream(roles).of(stream -> stream.forEach(s -> permissionSet.add(systemHelper.getSearchRoleByRole(s)))); L162: permissions = permissionSet.toArray(new String[permissionSet.size()]); L163: } L164: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.6K bytes
  7. BsCrawlingInfoCB.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.7K bytes
  8. 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
  9. 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
  10. 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
Back to top