- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getIndexFiletype (0.08 sec)
-
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
* where each line contains a MIME type to file type mapping in the format "mimetype=filetype". */ @PostConstruct public void init() { StreamUtil.split(ComponentUtil.getFessConfig().getIndexFiletype(), "\n") .of(stream -> stream.filter(StringUtil::isNotBlank).forEach(s -> { final String[] values = StringUtils.split(s, "=", 2); if (values.length == 2) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* <br> * comment: Mapping of MIME types to filetype labels for indexing. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexFiletype(); /** * Get the value for the key 'index.reindex.size'. <br> * The value is, e.g. 100 <br> * comment: Number of documents to process per reindex operation.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)