Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 165 for processed_ (0.06 sec)

  1. src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java

        public void test_execute_success() {
            String result = updateLabelJob.execute();
            assertNotNull(result);
            assertTrue(result.contains("3 docs")); // 3 documents processed
            assertFalse(result.contains("exception"));
        }
    
        // Test execute() method with query builder
        public void test_execute_withQueryBuilder() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

    import org.codelibs.fess.util.JobProcess;
    
    import jakarta.annotation.PreDestroy;
    
    /**
     * Helper class for managing system processes in Fess.
     * This class provides functionality to start, stop, and manage external processes
     * such as crawler processes, with proper resource cleanup and lifecycle management.
     */
    public class ProcessHelper {
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            // Execute
            Map<String, Object> result = indexUpdateCallback.ingest(paramMap, dataMap);
    
            // Verify ingester was called
            assertEquals(1, ingester.processCalled);
            assertEquals("processed", result.get("status"));
        }
    
        public void test_ingest_withException() {
            // Setup ingester that throws exception
            TestIngester failingIngester = new TestIngester() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

            }
            return urlSet;
        }
    
        /**
         * Processes the response data from a crawled URL, including failure handling.
         * This method extends the base response processing to handle Fess-specific failure
         * URL tracking when certain HTTP status codes are encountered.
         *
         * @param urlQueue the URL queue item that was processed
         * @param responseData the response data from the crawl operation
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

                fail("Should throw JobProcessingException");
            } 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
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/FacetResponse.java

    import org.opensearch.search.aggregations.bucket.terms.Terms;
    
    import com.google.common.io.BaseEncoding;
    
    /**
     * Response object for faceted search results containing query counts and field facets.
     * This class processes OpenSearch aggregations to provide structured facet information
     * for search result filtering and navigation.
     */
    public class FacetResponse {
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
            }
            writeJsonResponse(HttpServletResponse.SC_METHOD_NOT_ALLOWED, escapeJsonKeyValue(MESSAGE_FIELD, method + " is not allowed."));
            return false;
        }
    
        /**
         * Processes a scroll search request.
         * @param request The HTTP request.
         * @param response The HTTP response.
         * @param chain The filter chain.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/script/ScriptEngine.java

     * to process template strings with parameter substitution.
     */
    public interface ScriptEngine {
    
        /**
         * Evaluates a template string with the provided parameter map.
         * The template is processed using the script engine's templating mechanism,
         * with parameters from the paramMap substituted into the template.
         *
         * @param template the template string to evaluate
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/documents/BulkBody.java

     */
    public class BulkBody {
    
        /**
         * Creates a new instance of BulkBody.
         */
        public BulkBody() {
            // Default constructor
        }
    
        /**
         * List of documents to be processed in bulk operations.
         */
        public List<Map<String, Object>> documents;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/MessageInflater.kt

        val totalBytesToRead = inflater.bytesRead + deflatedBytes.size
    
        // We cannot read all, as the source does not close.
        // Instead, we ensure that all bytes from source have been processed by inflater.
        do {
          inflaterSource.readOrInflate(buffer, Long.MAX_VALUE)
        } while (inflater.bytesRead < totalBytesToRead && !inflater.finished())
      }
    
      @Throws(IOException::class)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top