- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for plated (0.04 sec)
-
FessListedClassificationProvider.java
return null; L51: // } L52: //} L53: //try { L54: // return CDef.DefMeta.valueOf(searchName); L55: //} catch (IllegalArgumentException ignored) { // not found L56: // return null; // handled later L57: //} L58: } L59: L60: @Override L61: public OptionalThing<String> determineAlias(final Locale locale) { L62: return OptionalObject.empty(); L63: } L64:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.5K bytes -
FacetQueryView.java
} L54: } L55: queryMap.remove("labels.facet_filetype_others"); L56: queryMap.put("labels.facet_filetype_others", "filetype:others"); L57: if (logger.isDebugEnabled()) { L58: logger.debug("updated query map: {}", queryMap); L59: } L60: } L61: L62: final FacetInfo facetInfo = ComponentUtil.getComponent("facetInfo"); L63: queryMap.values().stream().distinct().forEach(facetInfo::addQuery); L64: } L65: L66: ...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3K bytes -
DictionaryManager.java
L89: getDictionaryFile(dictFile.getId()).ifPresent(currentFile -> { L90: if (currentFile.getTimestamp().getTime() > dictFile.getTimestamp().getTime()) { L91: throw new DictionaryException(dictFile.getPath() + " was updated."); L92: } L93: L94: // TODO use stream L95: try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_configsync/file").param("path", dictFile.getPath()) L96: .body(FileUtil.readUTF8(file)).execute())...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5K bytes -
ProtwordsFile.java
writer.write(Constants.LINE_SEPARATOR); L227: return oldItem; L228: } L229: if (!item.equals(oldItem)) { L230: throw new DictionaryException("Protwords file was updated: old=" + oldItem + " : new=" + item); L231: } L232: try { L233: if (!item.isDeleted()) { L234: // update L235: writer.write(item.toLineString()); L236:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
StopwordsFile.java
writer.write(Constants.LINE_SEPARATOR); L227: return oldItem; L228: } L229: if (!item.equals(oldItem)) { L230: throw new DictionaryException("Stopwords file was updated: old=" + oldItem + " : new=" + item); L231: } L232: try { L233: if (!item.isDeleted()) { L234: // update L235: writer.write(item.toLineString()); L236:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.6K bytes -
KuromojiFile.java
writer.write(Constants.LINE_SEPARATOR); L228: return oldItem; L229: } L230: if (!item.equals(oldItem)) { L231: throw new DictionaryException("Kuromoji file was updated: old=" + oldItem + " : new=" + item); L232: } L233: try { L234: if (!item.isDeleted()) { L235: // update L236: writer.write(item.toLineString()); L237:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.7K bytes