- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for last (0.03 sec)
-
adminlte.min.js
(function(e){return 38==e.keyCode?(e.preventDefault(),void n.default(ft).children().last().focus()):40==e.keyCode?(e.preventDefault(),void n.default(ft).children().first().focus()):void setTimeout((function(){ht._jQueryInterface.call(n.default(ot),"search")}),100)})),n.default(document).on("keydown",ft,(function(e){var t=n.default(":focus");38==e.keyCode&&(e.preventDefault(),t.is(":first-child")?t.siblings().last().focus():t.prev().focus()),40==e.keyCode&&(e.preventDefault(),t.is(":last-child")?...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 45.3K bytes -
PluginHelper.java
return n.endsWith(".jar"); L236: }); L237: final List<Artifact> list = new ArrayList<>(jarFiles.length); L238: for (final File file : jarFiles) { L239: list.add(getArtifactFromFileName(artifactType, file.getName())); L240: } L241: list.sort(Comparator.comparing(Artifact::getName)); L242: return list.toArray(new Artifact[list.size()]); L243: } L244: L245: final File[] jarFiles = ResourceUtil....github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 01:47:10 UTC 2024 17.8K bytes -
GenerateThumbnailJob.java
governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.job; L17: L18:import static org.codelibs.core.stream.StreamUtil.stream; L19: L20:import java.io.File; L21:import java.util.ArrayList; L22:import java.util.List; L23: L24:import org.apache.commons.lang3.RandomStringUtils; L25:import org.apache.commons.lang3.SystemUtils; L26:import org.apache.logging.log4j.LogManager; L27:import org.apache.logging.log4j.Logger; L28:import org.codelibs.core.lang.StringUtil;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
SuggestHelper.java
rchStoreInterval).isAfter(requestedAt)) { L176: return; L177: } L178: L179: final StringBuilder sb = new StringBuilder(100); L180: final List<String> fields = new ArrayList<>(); L181: final List<String> tags = new ArrayList<>(); L182: final List<String> roles = new ArrayList<>(); L183: L184: for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) { L185: final String name =...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes -
WebFsIndexHelper.java
L60: protected int crawlerPriority = Thread.NORM_PRIORITY; L61: L62: protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>()); L63: L64: public void crawl(final String sessionId, final List<String> webConfigIdList, final List<String> fileConfigIdList) { L65: final boolean runAll = webConfigIdList == null && fileConfigIdList == null; L66: final List<WebConfig> webConfigList; L67: if (runAll || webConfigIdList != null) { L68: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 22.6K bytes -
AdminBackupAction.java
value).map(s -> "\"" + StringEscapeUtils.escapeJson(s) + "\"") L422: .collect(Collectors.joining(",")); L423: buf.append('[').append(json).append(']'); L424: } else if (value instanceof List) { L425: final String json = ((List<?>) value).stream().map(s -> "\"" + StringEscapeUtils.escapeJson(s.toString()) + "\"") L426: .collect(Collectors.joining(",")); L427: buf.append('[').append(json).append(']'); L428: } else...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
CharMappingFile.java
L24:import java.io.InputStream; L25:import java.io.InputStreamReader; L26:import java.io.OutputStreamWriter; L27:import java.io.Writer; L28:import java.util.ArrayList; L29:import java.util.Collections; L30:import java.util.Date; L31:import java.util.List; L32:import java.util.regex.Matcher; L33:import java.util.regex.Pattern; L34: L35:import org.apache.logging.log4j.LogManager; L36:import org.apache.logging.log4j.Logger; L37:import org.codelibs.core.io.CloseableUtil; L38:import org.codelibs.core.lang.StringUtil;...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
OpenIdConnectAuthenticator.java
parseArray(final JsonParser jsonParser) throws IOException { L221: final List<Object> list = new ArrayList<>(); L222: while (jsonParser.nextToken() != JsonToken.END_ARRAY) { L223: if (jsonParser.getCurrentToken() == JsonToken.START_OBJECT) { L224: list.add(parseObject(jsonParser)); L225: } else if (jsonParser.getCurrentToken() == JsonToken.START_ARRAY) { L226: list.add(parseArray(jsonParser)); // Nested array L227: } else { L228:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.3K bytes -
Crawler.java
sessions L498: crawlingInfoService.deleteSessionIdsBefore(options.sessionId, options.name, systemHelper.getCurrentTimeAsLong()); L499: L500: final List<String> webConfigIdList = options.getWebConfigIdList(); L501: final List<String> fileConfigIdList = options.getFileConfigIdList(); L502: final List<String> dataConfigIdList = options.getDataConfigIdList(); L503: final boolean runAll = webConfigIdList == null && fileConfigIdList == null && dataConfigIdList...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
LabelTypeHelper.java
(pattern.match(path)) { L160: valueSet.add(pattern.getValue()); L161: } L162: } L163: return valueSet; L164: } L165: L166: protected void buildLabelTypePatternList(final List<LabelType> labelTypeList) { L167: final List<LabelTypePattern> list = new ArrayList<>(); L168: for (final LabelType labelType : labelTypeList) { L169: final String includedPaths = labelType.getIncludedPaths(); L170: final String excludedPaths = labe...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 11.7K bytes