Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 433 for processed (0.04 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                    logger.warn("Failed to process {}", id, e);
                }
            } catch (final Exception e) {
                logger.warn("Failed to process {}", id, e);
            }
            return false;
        }
    
        /**
         * Processes thumbnail generation with a response data consumer.
         * @param id The document ID.
         * @param consumer The consumer function to process response data.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  2. okhttp-sse/src/main/kotlin/okhttp3/sse/EventSource.kt

        /**
         * Enqueues a [Call] and process it as [EventSource] with [listener].
         */
        @JvmStatic
        @JvmName("enqueue")
        fun Call.enqueueEventSource(listener: EventSourceListener): EventSource = RealEventSource(this, listener).also(this::enqueue)
    
        /**
         * Processes the existing response with [listener].
         */
        @JvmStatic
        @JvmName("process")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:47:47 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            }
    
            /**
             * Executes the crawling thread.
             * Sets the running flag, processes the data store, and ensures
             * proper cleanup regardless of success or failure.
             */
            @Override
            public void run() {
                running = true;
                try {
                    process();
                } finally {
                    running = false;
                    finished = true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

            // Test with no matching headers
            String result = virtualHostHelper.processVirtualHost(s -> "processed_" + s, "default");
            assertEquals("default", result);
    
            // Test with matching first header
            request.addHeader("Host", "example.com");
            result = virtualHostHelper.processVirtualHost(s -> "processed_" + s, "default");
            assertEquals("processed_site1", result);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/io/ResourceHandler.java

     */
    package org.codelibs.core.io;
    
    import java.io.InputStream;
    
    /**
     * Interface for handlers that process resources.
     *
     * @author taedium
     */
    public interface ResourceHandler {
    
        /**
         * Processes a resource.
         *
         * @param path the path
         * @param is the {@link InputStream} to read the resource
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 997 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/SsoProcessException.java

        /**
         * Constructs a new SSO process exception with the specified detailed message.
         *
         * @param message The detailed error message explaining the cause of the exception
         */
        public SsoProcessException(final String message) {
            super(message);
        }
    
        /**
         * Constructs a new SSO process exception with the specified detailed message and cause.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

        // PUT /api/admin/elevateword/upload
        /**
         * Uploads and imports elevate words from a CSV file.
         * Processes the file asynchronously and updates the suggest helper.
         *
         * @param body upload form containing the CSV file
         * @return JSON response with upload status
         */
        @Execute
        public JsonResponse<ApiResult> put$upload(final UploadForm body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/WebApiManager.java

        /**
         * Processes the request through this API manager.
         * @param request The HTTP servlet request.
         * @param response The HTTP servlet response.
         * @param chain The filter chain.
         * @throws IOException If an input/output error occurs.
         * @throws ServletException If a servlet error occurs.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            } catch (JobProcessingException e) {
                assertTrue(e.getMessage().contains("10 crawler processes are running"));
                assertTrue(e.getMessage().contains("Max processes are 5"));
            }
        }
    
        // Test execute method with no max process limit
        public void test_execute_noMaxProcessLimit() {
            // Setup test
            crawlJob = new CrawlJob() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  10. 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)
Back to top