- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getIndexBackupLogTargets (1.02 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return Constants.TRUE.equalsIgnoreCase(getIndexerThreadDumpEnabled()); } String getIndexBackupTargets(); String getIndexBackupLogTargets(); default String[] getIndexBackupAllTargets() { return split(getIndexBackupTargets() + "," + getIndexBackupLogTargets(), ",") .get(stream -> stream.filter(StringUtil::isNotBlank).map(String::trim).toArray(n -> new String[n])); }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* comment: Target log files for index backup. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexBackupLogTargets(); /** * Get the value for the key 'index.backup.log.load.timeout'. <br> * The value is, e.g. 60000 <br> * comment: Timeout for loading index backup logs.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)