Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 449 for processM (0.46 sec)

  1. src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java

    import jakarta.annotation.PostConstruct;
    
    /**
     * Response processor implementation for the Fess search engine.
     * This processor extends DefaultResponseProcessor to provide additional
     * processing capabilities through the ingest framework, allowing for
     * custom data transformation and enrichment during the crawling process.
     *
     * <p>It supports pluggable ingesters that can modify the result data
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ingest/Ingester.java

        }
    
        /**
         * Processes a document map for datastore operations.
         * Default implementation delegates to the basic process method.
         *
         * @param target the document data to process
         * @param params the data store parameters
         * @return the processed document data
         */
        public Map<String, Object> process(final Map<String, Object> target, final DataStoreParams params) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            return url;
        }
    
        /**
         * Extracts and processes the site path from a URL with proper encoding handling.
         * Removes protocol, query parameters, and applies URL decoding based on encoding settings.
         *
         * @param u the URL string to process
         * @param encoding the character encoding to use for URL decoding
         * @return the processed site path, abbreviated if necessary
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryProcessor.java

         * @param query the Lucene query to be processed
         * @param boost the boost factor to apply to the query
         * @return the processed OpenSearch QueryBuilder
         */
        public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
            return filterChain.execute(context, query, boost);
        }
    
        /**
         * Adds a query command to the processor.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            Process mockProcess = createMockProcess("test");
            JobProcess jobProcess = new JobProcess(mockProcess);
    
            assertNotNull(jobProcess.getInputStreamThread());
        }
    
        public void test_multipleJobProcesses() throws IOException {
            Process mockProcess1 = createMockProcess("process1 output");
            Process mockProcess2 = createMockProcess("process2 output");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java

            try {
                // Start multiple processes
                processHelper.startProcess(sessionId1, cmdList, pbCall);
                processHelper.startProcess(sessionId2, cmdList, pbCall);
    
                assertTrue(processHelper.isProcessRunning());
    
                // Wait a bit for the processes to start
                Thread.sleep(50);
    
                // Destroy all processes
                processHelper.destroy();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            }
    
        }
    
        /**
         * Processes a document through the ingest pipeline.
         * Applies all available ingesters to transform the document data.
         *
         * @param paramMap the data store parameters
         * @param dataMap the document data to process
         * @return the processed document data
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. docs/es/llm-prompt.md

    * mount (verb): montar
    * statement (as in code statement): statement (do not translate to "declaración" or "sentencia")
    * worker process: worker process (do not translate to "proceso trabajador" or "proceso de trabajo")
    * worker processes: worker processes (do not translate to "procesos trabajadores" or "procesos de trabajo")
    * worker: worker (do not translate to "trabajador")
    * load balancer: load balancer (do not translate to "balanceador de carga")
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 18:57:50 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * Continuously processes crawled documents from the data service, transforms them,
         * and updates the search index until crawling is finished and all documents are processed.
         *
         * <p>The method performs the following operations in a loop:
         * <ul>
         * <li>Retrieves access results from the data service</li>
         * <li>Processes each document through transformers</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

             *
             * @param query the query string to process
             * @param chain the next filter chain to invoke
             * @return the processed Query object
             */
            Query parse(final String query, final FilterChain chain);
        }
    
        /**
         * Interface for the filter chain that processes queries.
         * Each filter in the chain can invoke the next filter or terminate the chain.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top