- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 288 for processLine (0.07 sec)
-
src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java
// but we can verify the method signature and basic functionality SearchEngineUtil.scroll("test_index", hit -> { callbackCount.incrementAndGet(); return true; // Continue processing }); } catch (Exception e) { // Expected in test environment without proper SearchEngineClient // The important thing is that the method exists and accepts the correct parameters
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
files.add(file); } catch (Exception e) { log.warn("Error creating SmbFile from cache for {}: {}", fileInfo.getName(), e.getMessage()); // For testing purposes, continue processing other files // In a real scenario, you might want to handle this differently } } return files; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import org.codelibs.core.lang.ClassUtil; import org.codelibs.core.zip.ZipInputStreamUtil; /** * Handler for traversing and processing classes. * * @author koichik * @see ClassHandler * @see TraversalUtil */ public abstract class ClassTraversalUtil { /** * Do not instantiate. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/SequentialExecutor.java
} finally { task = null; } } } finally { // Ensure that if the thread was interrupted at all while processing the task queue, it // is returned to the delegate Executor interrupted so that it may handle the // interruption if it likes. if (interruptedDuringTask) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 10.6K bytes - Viewed (0) -
src/cmd/cgo/ast.go
case *ast.Expr: switch (*x).(type) { case *ast.SelectorExpr: f.saveRef(x, context) } case *ast.CallExpr: f.saveCall(x, context) } } // Save references to C.xxx for later processing. func (f *File) saveRef(n *ast.Expr, context astContext) { sel := (*n).(*ast.SelectorExpr) // For now, assume that the only instance of capital C is when // used as the imported package identifier.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
} public void test_constants_coverage() { // Test coverage for private constants indirectly // The DISABLE_URL_ENCODE constant is used in URL processing assertTrue(true); } public void test_getAvailableBoostDocumentRuleList_emptyResult() { // Mock FessConfig with minimal settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 15.2K bytes - Viewed (0) -
gradle/libs.versions.toml
gradlePlugin-kotlinSerialization = { module = "org.jetbrains.kotlin:kotlin-serialization", version.ref = "org-jetbrains-kotlin" } gradlePlugin-ksp = { module = "com.google.devtools.ksp:symbol-processing-gradle-plugin", version.ref = "ksp" } gradlePlugin-mavenPublish = "com.vanniktech:gradle-maven-publish-plugin:0.34.0"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Aug 31 17:41:20 UTC 2025 - 8.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
throw new ExtractException(e); } } return encoding; } /** * Extracts text content from the given content by removing tags and processing attributes. * @param content The content to extract from. * @return The extracted text. */ protected String extractString(final String content) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
* <li>{@link #roleFieldName} - Role field name. * <li>{@link #langFieldName} - Language field name. * <li>{@link #badWords} - List of bad words. * <li>{@link #parallel} - Flag for parallel processing. * <li>{@link #readingConverter} - Reading converter. * <li>{@link #contentsReadingConverter} - Contents reading converter. * <li>{@link #normalizer} - Normalizer. * <li>{@link #analyzer} - Suggest analyzer.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
import org.opensearch.search.sort.SortBuilders; import org.opensearch.search.sort.SortOrder; /** * Abstract base class for query command implementations. * Provides common functionality for processing and executing search queries. */ public abstract class QueryCommand { /** * Default constructor for QueryCommand. * Creates a new instance of the query command with default settings. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0)