Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 165 for processed_ (0.06 sec)

  1. src/main/java/org/codelibs/core/stream/StreamUtil.java

             * The stream is automatically closed after the function is applied.
             *
             * @param <R> The type of the result returned by the function.
             * @param stream A function that processes the stream and produces a result.
             * @return The result produced by applying the function to the stream.
             */
            public <R> R get(final Function<Stream<T>, R> stream) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

            } catch (final Exception e) {
                logger.warn("Failed to update thumbnail field at {}", thumbnailId, e);
            }
        }
    
        /**
         * Processes thumbnail generation with a consumer function.
         * @param id The document ID.
         * @param consumer The consumer function to process thumbnail and config ID.
         * @return True if processing was successful, false otherwise.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/InputStreamThread.java

            br = new BufferedReader(new InputStreamReader(is, charset));
        }
    
        /**
         * Runs the thread to continuously read lines from the input stream.
         * Each line is processed by the output callback (if provided) and added to the buffer.
         * The buffer is maintained as a circular buffer with the specified size.
         */
        @Override
        public void run() {
            boolean running = true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/CorsFilter.java

    import jakarta.servlet.ServletResponse;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Filter for handling Cross-Origin Resource Sharing (CORS) requests.
     * Processes CORS headers and handles preflight OPTIONS requests.
     */
    public class CorsFilter implements Filter {
    
        /**
         * Creates a new instance of CorsFilter.
         */
        public CorsFilter() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                                true);
    
                final int totalCount = process(options);
                if (totalCount != 0) {
                    logger.info("Processed {} thumbnail task(s).", totalCount);
                } else {
                    logger.info("No new thumbnails found.");
                }
                exitCode = 0;
            } catch (final ContainerNotAvailableException e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. mockwebserver/src/main/kotlin/mockwebserver3/QueueDispatcher.kt

    import java.net.HttpURLConnection.HTTP_UNAVAILABLE
    import java.util.concurrent.BlockingQueue
    import java.util.concurrent.LinkedBlockingQueue
    import java.util.logging.Logger
    
    /**
     * Default dispatcher that processes a script of responses. Populate the script by calling
     * [enqueue].
     */
    public open class QueueDispatcher : Dispatcher() {
      protected val responseQueue: BlockingQueue<MockResponse> = LinkedBlockingQueue()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 14 16:09:26 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.response.StreamResponse;
    
    import jakarta.annotation.Resource;
    
    /**
     * Action class for handling document redirection requests.
     * This action processes "go" requests that redirect users to specific documents
     * while tracking click events and handling various URL types including file system paths.
     */
    public class GoAction extends FessSearchAction {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

            List<String> capturedOutput = new ArrayList<>();
            Consumer<String> testConsumer = capturedOutput::add;
    
            ThreadDumpUtil.processThreadDump(testConsumer);
    
            // Verify that thread dump was processed
            assertFalse("Should capture some thread dump output", capturedOutput.isEmpty());
    
            // Verify format - should contain "Thread:" entries
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt

     */
    interface Call : Cloneable {
      /** Returns the original request that initiated this call. */
      fun request(): Request
    
      /**
       * Invokes the request immediately, and blocks until the response can be processed or is in error.
       *
       * To avoid leaking resources callers should close the [Response] which in turn will close the
       * underlying [ResponseBody].
       *
       * ```java
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
    
            QueryBuilder result = fuzzyQueryCommand.convertFuzzyQuery(context, fuzzyQuery, 1.0f);
            assertNotNull(result);
    
            // Verify that the query was processed successfully
            assertTrue(result instanceof FuzzyQueryBuilder);
            FuzzyQueryBuilder fqb = (FuzzyQueryBuilder) result;
            assertEquals("title", fqb.fieldName());
            assertEquals(searchText, fqb.value());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top