- Sort Score
- Num 10 results
- Language All
Results 161 - 170 of 250 for processLine (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/s3select/sql/analysis.go
// function combined with a row function is meaningless ("AVG(s.Age) + // s.Salary"). Analysis determines if such a scenario exists so an // error can be returned. var ( // Fatal error for query processing. errNestedAggregation = errors.New("Cannot nest aggregations") errFunctionNotImplemented = errors.New("Function is not yet implemented") errUnexpectedInvalidNode = errors.New("Unexpected node value")
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 8.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/FluentFuture.java
* exception is thrown, this exception is used as the result of the output {@code Future}. * * <p>Usage example: * * {@snippet : * // Falling back to a zero counter in case an exception happens when processing the RPC to fetch * // counters. * ListenableFuture<Integer> faultTolerantFuture = * fetchCounters().catching(FetchException.class, x -> 0, directExecutor()); * } *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 19.7K bytes - Click Count (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
public List<FileNotifyInformation> watch() throws CIFSException { synchronized (lock) { watchCount++; try { // Simulate some processing time Thread.sleep(10); } catch (InterruptedException e) { Thread.currentThread().interrupt(); }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.2K bytes - Click Count (1) -
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. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sun Nov 23 11:39:05 GMT 2025 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
*/ public void setDefaultOperator(final Operator defaultOperator) { this.defaultOperator = defaultOperator; } /** * Adds a filter to the query processing chain. * The filter chain is recreated after adding the filter. * * @param filter the filter to add */ public void addFilter(final Filter filter) { filterList.add(filter);Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 10.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
/** Injected service for managing crawling session information. */ @Resource protected CrawlingInfoService crawlingInfoService; /** * Adds an error message to the error queue for later processing. * This method is thread-safe and can be called from multiple crawler threads. * * @param msg the error message to add; ignored if null or blank */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 31.4K bytes - Click Count (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.
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 34.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
responseData.setMimeType(APPLICATION_OCTET_STREAM); } } else if (file.isDirectory()) { if (logger.isDebugEnabled()) { logger.debug("Processing directory: directory={}", file.getAbsolutePath()); } final Set<RequestData> requestDataSet = new HashSet<>(); if (includeContent) {
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 15.1K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java
* The current position in the buffer. */ public int index; /** * The length of data in the buffer. */ public int length; /** * Buffer for deferred data processing. */ public NdrBuffer deferred; /** * Constructs an NdrBuffer with the specified byte array and starting position. * * @param buf the byte array to use as the bufferCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 10.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java
assertEquals(4, read1); assertEquals(4, read2); assertEquals(4, read3); } @Test @DisplayName("Should validate structure size before processing") void testStructureSizeValidation() { // Given various invalid structure sizes int[] invalidSizes = { -1, 0, 1, 2, 3, 5, 6, 8, 16, 32, 64, 128, 256, 512, 1024 };
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.1K bytes - Click Count (0)