Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for pipeline (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline with a {@link ListenableFuture}.
       *
       * <p>If {@code future} succeeds, its value will be closed (using {@code closingExecutor)}) when
       * the pipeline is done, even if the pipeline is canceled or fails.
       *
       * <p>Cancelling the pipeline will not cancel {@code future}, so that the pipeline can access its
       * value in order to close it.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 97.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline with a {@link ListenableFuture}.
       *
       * <p>If {@code future} succeeds, its value will be closed (using {@code closingExecutor)}) when
       * the pipeline is done, even if the pipeline is canceled or fails.
       *
       * <p>Cancelling the pipeline will not cancel {@code future}, so that the pipeline can access its
       * value in order to close it.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 23 15:26:56 UTC 2025
    - 98.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                return null;
            }
        }
    
        /**
         * Retrieves the pipeline configuration parameter for a given config ID.
         * The pipeline parameter is extracted from the crawling configuration's parameter map.
         *
         * @param configId the configuration ID to get the pipeline for
         * @return an OptionalThing containing the pipeline string if found, or empty if not found or blank
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            // Register service that returns blank pipeline
            ComponentUtil.register(new WebConfigService() {
                @Override
                public OptionalEntity<WebConfig> getWebConfig(final String id) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId(id);
                    webConfig.setConfigParameter("config.pipeline= "); // Blank space
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java

                public static final String HTML_CANONICAL_XPATH = "html.canonical.xpath";
                public static final String HTML_PRUNED_TAGS = "html.pruned.tags";
                public static final String PIPELINE = "pipeline";
                public static final String IGNORE_ROBOTS_TAGS = "ignore.robots.tags";
                public static final String SCRIPT_TYPE = "script.type";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/QueryProcessor.java

            }
            queryCommandMap.put(name, queryCommand);
        }
    
        /**
         * Adds a filter to the processing pipeline.
         * After adding a filter, the filter chain is recreated to include the new filter.
         *
         * @param filter the filter to add to the processing pipeline
         */
        public void addFilter(final Filter filter) {
            filterList.add(filter);
            createFilterChain();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            if (logger.isDebugEnabled()) {
                logger.debug("The number of an added document is {}.", documentSize.get());
            }
    
        }
    
        /**
         * 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
    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. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            } catch (final IOException e) {
                return StringUtil.EMPTY; // empty
            }
        }
    
        /**
         * Processes a crawling request for a specific URL.
         * Executes the full crawling pipeline including client execution, rule processing,
         * transformation, and data extraction.
         *
         * @param crawlingConfig the crawling configuration to use
         * @param crawlingInfoId the crawling session ID
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                logger.warn("Failed to get data from {}", accessResult.getUrl(), e);
            }
            return null;
        }
    
        /**
         * Processes a document through the ingest pipeline if an ingest factory is available.
         * Applies all configured ingesters to transform and enrich the document data.
         *
         * @param accessResult the access result containing document metadata
    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. android/guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java

     * ClosingFuture#finishToFuture()} or {@link
     * ClosingFuture#finishToValueAndCloser(ValueAndCloserConsumer, Executor)} paths to complete a
     * {@link ClosingFuture} pipeline.
     */
    @NullUnmarked
    public abstract class AbstractClosingFutureTest extends TestCase {
      // TODO(dpb): Use Expect once that supports JUnit 3, or we can use JUnit 4.
      final List<AssertionError> failures = new ArrayList<>();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 75.4K bytes
    - Viewed (0)
Back to top