- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 80 for last (0.02 sec)
-
IntervalControlHelper.java
final String[] values = days.split(","); L104: final List<Integer> list = new ArrayList<>(); L105: for (final String value : values) { L106: try { L107: list.add(Integer.parseInt(value.trim())); L108: } catch (final NumberFormatException e) {} L109: } L110: this.days = new int[list.size()]; L111: for (int i = 0; i < list.size(); i++) { L112: this.days[i] = list.get(i); L113:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes -
SynonymFile.java
} L205: } L206: L207: private static List<String> split(final String s, final String separator) { L208: final List<String> list = new ArrayList<>(2); L209: StringBuilder sb = new StringBuilder(); L210: int pos = 0; L211: final int end = s.length(); L212: while (pos < end) { L213: if (s.startsWith(separator, pos)) { L214: if (sb.length() > 0) { L215: list.add(sb.toString()); L216: sb = new...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 12.5K bytes -
ApiResult.java
} L302: L303: public static class ApiSystemInfoResponse extends ApiResponse { L304: protected List<Map<String, String>> envProps; L305: protected List<Map<String, String>> systemProps; L306: protected List<Map<String, String>> fessProps; L307: protected List<Map<String, String>> bugReportProps; L308: L309: public ApiSystemInfoResponse envProps(final List<Map<String, String>> envProps) { L310: this.envProps = envProps; L311: return this;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.5K bytes -
RenderDataUtil.java
data.register(key, BeanUtil.copyBeanToNewMap(value)); L35: } else { L36: if (value instanceof final Collection<?> coll && !coll.isEmpty()) { L37: // care performance for List that the most frequent pattern L38: final Object first = coll instanceof List<?> ? ((List<?>) coll).get(0) : coll.iterator().next(); L39: if (first instanceof Entity) { L40: data.register(key, coll.stream().map(BeanUtil::copyBeanToNewMap).collect(Collectors.toList()));...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 1.7K bytes -
QueryResponseList.java
*/ L16:package org.codelibs.fess.util; L17: L18:import java.util.ArrayList; L19:import java.util.Collection; L20:import java.util.Iterator; L21:import java.util.List; L22:import java.util.ListIterator; L23:import java.util.Map; L24: L25:public class QueryResponseList implements List<Map<String, Object>> { L26: L27: protected final List<Map<String, Object>> parent; L28: L29: protected final int start; L30: L31: protected final int offset; L32: L33: /** The value of current page number....github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 8.9K bytes -
IndexUpdater.java
L97: protected long documentSize; L98: L99: protected int maxIndexerErrorCount = 0; L100: L101: protected int maxErrorCount = 2; L102: L103: protected List<String> finishedSessionIdList = new ArrayList<>(); L104: L105: private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>(); L106: L107: private List<Crawler> crawlerList; L108: L109: private IngestFactory ingestFactory = null; L110: L111: public IndexUpdater() { L112: // nothing L113: } L114: L115:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
WebConfig.java
paramMap.put(Client.USER_AGENT, fessConfig.getUserAgentName()); L178: } else { L179: paramMap.put(Client.USER_AGENT, userAgent); L180: } L181: L182: final List<WebAuthentication> webAuthList = webAuthenticationService.getWebAuthenticationList(getId()); L183: final List<Authentication> basicAuthList = new ArrayList<>(); L184: for (final WebAuthentication webAuth : webAuthList) { L185: basicAuthList.add(webAuth.getAuthentication()); L186: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.8K bytes -
ThumbnailManager.java
baseDir.getAbsolutePath(); L173: } L174: L175: protected void storeQueue(final List<Tuple3<String, String, String>> taskList) { L176: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L177: final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); L178: final String[] targets = fessConfig.getThumbnailGeneratorTargetsAsArray(); L179: final List<ThumbnailQueue> list = new ArrayList<>(); L180: taskList.stream().filter(entity -> entity != null).forEach(task...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 21.5K bytes -
AdminDesignAction.java
Pair<>(key + ":" + p.getFirst(), key + "/" + p.getSecond())); L90: } L91: } L92: return jspItems; L93: } L94: L95: private List<String> loadFileNameItems() { L96: final File baseDir = new File(getServletContext().getRealPath("/")); L97: final List<String> fileNameItems = new ArrayList<>(); L98: final List<File> fileList = getAccessibleFileList(baseDir); L99: final int length = baseDir.getAbsolutePath().length(); L100: for (final File file...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 16.1K bytes -
DictionaryFile.java
abstract void delete(T item); L82: L83: public static class PagingList<E> implements List<E> { L84: private final List<E> parent; L85: L86: protected int allPageCount; L87: L88: protected int allRecordCount; L89: L90: protected int pageSize; L91: L92: protected int currentPageNumber; L93: L94: protected int pageRangeSize; L95: L96: public PagingList(final List<E> list, final int offset, final int size, final int allRecordCount) { L97: parent...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 6.8K bytes