- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for mime (0.04 sec)
-
SuggestHelper.java
limitations under the License. L15: */ L16:package org.codelibs.fess.helper; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.time.LocalDateTime; L22:import java.time.ZoneId; L23:import java.time.format.DateTimeFormatter; L24:import java.util.ArrayList; L25:import java.util.Arrays; L26:import java.util.Collections; L27:import java.util.HashMap; L28:import java.util.HashSet; L29:import java.util.List; L30:import...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes -
AdminBackupAction.java
L29:import java.io.InputStreamReader; L30:import java.io.OutputStream; L31:import java.io.OutputStreamWriter; L32:import java.io.Writer; L33:import java.nio.file.Files; L34:import java.nio.file.Path; L35:import java.time.LocalDateTime; L36:import java.time.ZoneId; L37:import java.time.format.DateTimeFormatter; L38:import java.util.Arrays; L39:import java.util.HashMap; L40:import java.util.List; L41:import java.util.Map; L42:import java.util.concurrent.atomic.AtomicBoolean; L43:import java.util.function.Consumer;...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
IndexUpdater.java
L490: dataService.update(accessResultList); L491: accessResultList.clear(); L492: final long time = systemHelper.getCurrentTimeAsLong() - execTime; L493: if (logger.isDebugEnabled()) { L494: logger.debug("Updated {} access results. The execution time is {}ms.", size, time); L495: } L496: return time; L497: } L498: return -1; L499: } L500: L501: private List<EsAccessResult> getAccessResultList(final C...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
SystemHelper.java
java.io.UnsupportedEncodingException; L25:import java.net.InetAddress; L26:import java.net.URLEncoder; L27:import java.net.UnknownHostException; L28:import java.nio.file.Files; L29:import java.nio.file.Path; L30:import java.time.Instant; L31:import java.time.LocalDateTime; L32:import java.time.ZoneId; L33:import java.util.ArrayList; L34:import java.util.Calendar; L35:import java.util.Collections; L36:import java.util.Date; L37:import java.util.HashMap; L38:import java.util.HashSet; L39:import java.util.LinkedHashMap;...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
FessProp.java
L1520: .get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).collect(Collectors.toList())); L1521: } L1522: } else if (dateFieldSet.contains(key)) { L1523: // TODO time zone L1524: if (value instanceof Date) { L1525: // nothing L1526: } else { L1527: value = FessFunctions.parseDate(value.toString()); L1528: } L1529: } else...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
FessConfig.java
L3394: L3395: /** L3396: * Get the value for the key 'indexer.webfs.commit.margin.time'. <br> L3397: * The value is, e.g. 5000 <br> L3398: * @return The value of found property. (NotNull: if not found, exception but basically no way) L3399: */ L3400: String getIndexerWebfsCommitMarginTime(); L3401: L3402: /** L3403: * Get the value for the key 'indexer.webfs.commit.margin.time' as {@link Integer}. <br> L3404: * The value is, e.g. 5000 <br> L3405: * @return The...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
WebFsIndexHelper.java
execTime = systemHelper.getCurrentTimeAsLong() - startTime; L447: crawlingInfoHelper.putToInfoMap(Constants.WEB_FS_CRAWLING_EXEC_TIME, Long.toString(execTime)); L448: if (logger.isInfoEnabled()) { L449: logger.info("[EXEC TIME] crawling time: {}ms", execTime); L450: } L451: L452: indexUpdater.setFinishCrawling(true); L453: try { L454: indexUpdater.join(); L455: } catch (final InterruptedException e) { L456: logger.warn("Interrupted...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 22.6K bytes -
IntervalControlHelper.java
return 1; L162: } L163: } L164: return -1; L165: } L166: } L167: L168: protected static int[] parseTime(final String time) { L169: final String[] froms = time.split(":"); L170: if (froms.length != 2) { L171: throw new FessSystemException("Invalid format: " + time); L172: } L173: final int[] values = new int[2]; L174: values[0] = Integer.parseInt(froms[0]); L175: if (values[0] < 0 || values[0] > 23)...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 5.8K bytes