Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for processed_ (0.06 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/ingest/Ingester.java

            return ComponentUtil.getIngestFactory();
        }
    
        /**
         * Processes a result data object for web/file crawling.
         * Default implementation returns the target unchanged.
         *
         * @param target the result data to process
         * @param responseData the response data from crawling
         * @return the processed result data
         */
    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/processor/FessResponseProcessor.java

         * @param resultData the result data to be processed
         * @return the access result containing the processed data
         */
        @Override
        protected AccessResult<?> createAccessResult(final ResponseData responseData, final ResultData resultData) {
            return super.createAccessResult(responseData, ingest(responseData, resultData));
        }
    
        /**
         * Processes the result data through all available ingesters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            default -> false;
            };
        }
    
        /**
         * Processes and saves an image from the input stream to the output file as a thumbnail.
         *
         * <p>This method reads image data, validates dimensions, applies subsampling and scaling
         * transformations based on configuration settings, and writes the processed thumbnail
         * to the specified output file.</p>
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     * <li>Applies document boosting rules and click/favorite count enhancements</li>
     * <li>Sends processed documents to the search engine for indexing</li>
     * <li>Manages cleanup of processed crawler session data</li>
     * </ul>
     *
     * <p>The updater runs continuously until crawling is finished and all documents are processed.
     * It includes error handling, retry logic, and performance monitoring capabilities.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

    /**
     * Job class for updating label information in the search index.
     * This job processes documents and updates their label fields based on URL pattern matching.
     */
    public class UpdateLabelJob {
    
        private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class);
    
        /**
         * Query builder for filtering documents to be processed.
         */
        protected QueryBuilder queryBuilder = null;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            if (logger.isDebugEnabled()) {
                logger.debug("Favorite Count: {}, url: {}", count, url);
            }
        }
    
        /**
         * Returns the total number of documents processed.
         *
         * @return the number of documents processed
         */
        @Override
        public long getDocumentSize() {
            return documentSize.get();
        }
    
        /**
         * Returns the total execution time for all operations.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. 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.
         */
        public interface FilterChain {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  10. 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)
Back to top