- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for notre (0.54 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java
assertSame("Should validate the same stream instance", in, extractor.getLastValidatedStream()); } /** * Test that getText throws exception when null stream is provided. * Note: validateInputStream throws the exception, so the validateCalled flag * is never set to true (exception is thrown before flag assignment). */ public void test_getText_throwsExceptionForNullStream() {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/FileUtil.java
import org.codelibs.core.net.URLUtil; import org.codelibs.core.nio.ChannelUtil; import org.codelibs.core.timer.TimeoutManager; /** * Utility class for handling {@link File}. * <p> * <strong>SECURITY NOTE:</strong> When accepting file paths from untrusted sources, * always validate them using {@link #isPathSafe(Path, Path)} to prevent path traversal attacks.Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 13.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/TemporaryFileInputStreamTest.java
assertEquals('t', stream.read()); assertEquals('a', stream.read()); assertEquals(-1, stream.read()); // EOF } // File should be deleted after close // Note: FileUtil.deleteInBackground() is async, so we can't reliably test this } public void test_available() throws Exception { // Create a temporary file with test data
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 7.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
* * DataService<AccessResult<?>> dataService = CrawlingParameterUtil.getDataService(); * CrawlingParameterUtil.setDataService(newDataService); * } * </pre> * * <p>Note: If a parameter is set to {@code null}, the corresponding ThreadLocal variable is removed.</p> */ public final class CrawlingParameterUtil {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 6.4K 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) -
src/main/java/org/codelibs/core/lang/StringUtil.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 21.5K 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) -
src/main/resources/fess_label_fr.properties
labels.searchoptions_menu_labels=Étiquettes labels.error_title=Erreur labels.system_error_title=Erreur système labels.contact_site_admin=Veuillez contacter l'administrateur de votre site. labels.request_error_title=Format de requête non valide. labels.bad_request=Votre requête à l'URL n'est pas valide. labels.page_not_found_title=Page non trouvée. labels.check_url=Veuillez vérifier l'URL. labels.user_name=Nom d'utilisateur
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 49.2K bytes - Viewed (0) -
CLAUDE.md
``` ### Text Processing Pipeline ``` Input Text ↓ [Normalization] - NormalizerChain ↓ [Reading Conversion] - ReadingConverterChain ↓ [Analysis] - SuggestAnalyzer ``` Note: Suggester has TWO ReadingConverter instances: - `readingConverter` - For query/metadata fields - `contentsReadingConverter` - For content/document fields --- ## Key Components ### Suggester (Main Entry Point)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/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
assertEquals("mybucket", getField(conn, "bucketName")); assertEquals("", getField(conn, "objectName")); } /** * Test URL with multiple consecutive slashes. * Note: Java's URL class does NOT normalize multiple slashes in the path. */ public void test_urlParsing_multipleSlashes() throws Exception { URL url = new URL("gcs://mybucket//path//to//object.txt");Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0)