- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for dumb (0.12 sec)
-
src/main/assemblies/files/fess.in.sh
FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlog4j2.formatMsgNoLookups=true" FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dlog4j.skipJansi=true" # Causes the JVM to dump its heap on OutOfMemory. #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:+HeapDumpOnOutOfMemoryError" # The path to the heap dump location, note directory must exists and have enough # space for a full heap dump. #FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:HeapDumpPath=$FESS_HOME/logs/heapdump.hprof" # Disables explicit GC
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 03:48:59 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
} /** * Prints thread dump information to the logger at ERROR level. */ public static void printThreadDumpAsError() { processThreadDump(logger::error); } /** * Writes thread dump information to the specified file. * * @param file the file path to write the thread dump to */ public static void writeThreadDump(final String file) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -Djavax.net.ssl.trustStorePassword=changeit REM Causes the JVM to dump its heap on OutOfMemory. REM set FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:+HeapDumpOnOutOfMemoryError REM The path to the heap dump location, note directory must exists and have enough REM space for a full heap dump. REM FESS_JAVA_OPTS=%FESS_JAVA_OPTS% -XX:HeapDumpPath=%FESS_HOME%/logs/heapdump.hprof REM Disables explicit GC
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 03:48:59 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
return null; }); } /** * Print a thread dump. * @param form The edit form. * @return The HTML response. */ @Execute @Secured({ ROLE }) public HtmlResponse threaddump(final EditForm form) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
final long freeMemory = Runtime.getRuntime().freeMemory(); final String msg = String.format( "%d words from %d %s: {\"time\":{\"parse\":%d,\"index\":%d},\"cpu\":%f,\"mem\":{\"heap\":\"%dmb\",\"used\":\"%dmb\"}}", items.length, size, type, parseTime, indexTime, cpuLoad, maxMemory / (1024 * 1024), (maxMemory - freeMemory) / (1024 * 1024)); logger.info(msg);
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String SYSTEM_USER = "system"; /** Empty user ID placeholder. */ public static final String EMPTY_USER_ID = "<empty>"; /** Crawler process command for thread dump. */ public static final String CRAWLER_PROCESS_COMMAND_THREAD_DUMP = "thread_dump"; // ============================================================ // Path and Configuration Constants
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# MIME types for HTML document cache. crawler.document.cache.html.mimetypes=text/html # indexer # Whether to enable thread dump for the indexer. indexer.thread.dump.enabled=true # Maximum number of unprocessed documents for the indexer. indexer.unprocessed.document.size=1000 # Whether to enable click count tracking in the indexer. indexer.click.count.enabled=true
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"application/java-archive", "application/vnd.android.package-archive", "application/x-tika-java-enterprise-archive", "application/x-tika-java-web-archive", "application/x-tika-unix-dump", "application/java-serialized-object", "application/javascript", "application/json", "application/java-vm", "application/x-java-jnilib", "application/kpml-request+xml",
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 03:46:53 UTC 2025 - 50.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* Get the value for the key 'indexer.thread.dump.enabled'. <br> * The value is, e.g. true <br> * comment: Whether to enable thread dump for the indexer. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexerThreadDumpEnabled(); /** * Is the property for the key 'indexer.thread.dump.enabled' true? <br>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
</mime-type> <mime-type type="application/x-tika-java-web-archive"> <sub-class-of type="application/java-archive"/> <glob pattern="*.war"/> </mime-type> <mime-type type="application/x-tika-unix-dump"/> <mime-type type="application/java-serialized-object"> <glob pattern="*.ser"/> </mime-type> <mime-type type="text/javascript"> <alias type="application/javascript"/>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Oct 16 07:46:32 UTC 2025 - 320.2K bytes - Viewed (2)