- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for Location (0.33 sec)
-
pom.xml
<sources> <source> <location>${project.build.directory}/tomcat-lib</location> </source> </sources> </mapping> <mapping> <directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory> <sources> <source> <location>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess</location> <includes>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 08:30:43 UTC 2025 - 49.4K bytes - Viewed (0) -
CLAUDE.md
--- ## Key Components ### Suggester (Main Entry Point) Location: `src/main/java/org/codelibs/fess/suggest/Suggester.java` Main operations: `suggest()`, `popularWords()`, `indexer()`, `createIndexIfNothing()`, `createNextIndex()`, `switchIndex()`, `removeDisableIndices()` ### SuggestIndexer (Indexing Engine) Location: `src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java`
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} /** * Constructs the redirect location from a base URL and location header. * * @param url The base URL * @param location The location header value * @return The constructed redirect location */ protected static String constructRedirectLocation(final String url, final String location) { try { URI uri = new URI(url);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 53.7K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.sh
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) -
CLAUDE.md
- **Logging**: Log4j2 - `src/main/resources/log4j2.xml` - **i18n**: All user-facing strings in `fess_label_*.properties` - **Default Port**: 8080 (configurable via `fess.port` system property) - **Log Location**: `target/fess-logs/` (dev), `/var/log/fess/` (prod) - **Admin Login**: `admin/admin` ## Log Message Guidelines - Format parameters as `key=value` (e.g., `sessionId={}`, `url={}`)
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/assemblies/files/fess.in.bat
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
/** * Constructs a new HtmlTransformer. */ public HtmlTransformer() { // Default constructor } /** Header name for location redirects. */ protected static final String LOCATION_HEADER = "Location"; /** The crawler container for dependency injection. */ @Resource protected CrawlerContainer crawlerContainer;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 29 07:42:33 UTC 2025 - 30.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
responseData.getExecutionTime()); } } /** * Processes redirect location log events. * * @param objs the log objects (should contain ResponseData) */ protected void processRedirectLocation(final Object... objs) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 02:01:26 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* @return a map containing the processed document data * @throws CrawlingAccessException if crawling fails or configuration is invalid * @throws ChildUrlsException if the URL redirects to another location * @throws CrawlerSystemException if data deserialization fails */ public Map<String, Object> processRequest(final CrawlingConfig crawlingConfig, final String crawlingInfoId, final String url) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoAction.java
* while tracking click events and handling various URL types including file system paths. */ public class GoAction extends FessSearchAction { /** * Default constructor for GoAction. */ public GoAction() { super(); } // ===================================================================================Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 9K bytes - Viewed (0)