- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for live (0.02 sec)
-
CharMappingFile.java
ArrayList<>(); L134: try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L135: long id = 0; L136: String line = null; L137: while ((line = reader.readLine()) != null) { L138: // Remove comments L139: final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim(); L140: L141: // Skip empty lines or comment lines L142: if (replacedLine.length() == 0) { L143:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.2K bytes -
StemmerOverrideFile.java
ArrayList<>(); L134: try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L135: long id = 0; L136: String line = null; L137: while ((line = reader.readLine()) != null) { L138: // Remove comments L139: final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim(); L140: L141: // Skip empty lines or comment lines L142: if (replacedLine.length() == 0) { L143:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 10.6K bytes -
AdminBackupAction.java
Stream(), Constants.CHARSET_UTF_8))) { L200: String line; L201: while ((line = br.readLine()) != null) { L202: if (StringUtil.isNotBlank(line)) { L203: final Map<String, Map<String, String>> dataObj; L204: if (line.contains("\"_index\"") || line.contains("\"_type\"")) { L205: dataObj = parseObject(mapper, line); L206: } else { L207: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes -
FessMultipartRequestHandler.java
} L165: } L166: L167: protected int getBoundaryLimitSize() { L168: // one HTTP proxy tool already limits the size (e.g. 3450 bytes) L169: // so specify this size for test L170: return 2000; // you can override as you like it L171: } L172: L173: protected void throwTooLongBoundarySizeException(final String contentType, final int boundarySize, final int limitSize) { L174: final ExceptionMessageBuilder br = new ExceptionMessageBuilder(); L175: br.addNotice("Too...github.com/codelibs/fess/src/main/java/org/code...Wed Oct 23 13:27:21 UTC 2024 18.6K bytes -
ProtwordsFile.java
reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L127: long id = 0; L128: String line = null; L129: while ((line = reader.readLine()) != null) { L130: if (line.length() == 0 || line.charAt(0) == '#') { L131: if (updater != null) { L132: updater.write(line); L133: } L134: continue; // ignore empty lines and comments L135: } L136: L137:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L127: long id = 0; L128: String line = null; L129: while ((line = reader.readLine()) != null) { L130: if (line.length() == 0 || line.charAt(0) == '#') { L131: if (updater != null) { L132: updater.write(line); L133: } L134: continue; // ignore empty lines and comments L135: } L136: L137:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
SearchEngineClient.java
Arrays.stream(FileUtil.readUTF8(dataPath).split("\n")).map(line -> line// L756: .replace("\"_index\":\"fess_config.", "\"_index\":\"" + fessConfig.getIndexConfigIndex() + ".")// L757: .replace("\"_index\":\"fess_user.", "\"_index\":\"" + fessConfig.getIndexUserIndex() + ".")// L758: .replace("\"_index\":\"fess_log.", "\"_index\":\"" + fessConfig.getIndexLogIndex() + ".")).reduce((prev, line) -> { L759: try { L760: ...github.com/codelibs/fess/src/main/java/org/code...Sun Oct 20 02:08:03 UTC 2024 86.1K bytes -
WebFsIndexHelper.java
stream.filter(StringUtil::isNotBlank).map(String::trim).forEach(line -> { L169: if (!line.startsWith("#")) { L170: final String urlValue; L171: if (urlEncodeDisabled.get()) { L172: urlValue = line; L173: urlEncodeDisabled.set(false); L174: } else { L175: urlValue = systemHelper.encodeUrlFilter(line); L176: } L177: crawler...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 22.6K bytes -
SynonymFile.java
reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L128: long id = 0; L129: String line = null; L130: while ((line = reader.readLine()) != null) { L131: if (line.length() == 0 || line.charAt(0) == '#') { L132: if (updater != null) { L133: updater.write(line); L134: } L135: continue; // ignore empty lines and comments L136: } L137: L138:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 12.5K bytes -
KuromojiFile.java
ArrayList<>(); L127: try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) { L128: long id = 0; L129: String line = null; L130: while ((line = reader.readLine()) != null) { L131: // Remove comments L132: final String replacedLine = line.replaceAll("#.*$", StringUtil.EMPTY).trim(); L133: L134: // Skip empty lines or comment lines L135: if (replacedLine.length() == 0) { L136:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.7K bytes