Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pipeline (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/SMB3_IMPLEMENTATION_PLAN.md

    ## Resource Requirements
    
    ### Development Team
    - 2-3 Senior Java developers with SMB protocol expertise
    - 1 QA engineer for test infrastructure
    - 1 DevOps engineer for CI/CD setup
    
    ### Timeline
    - **Total Duration**: 6-8 months for all features
    - **Phases 1-2**: 2-3 months (High priority)
    - **Phases 3-4**: 2 months (Medium priority)
    - **Phases 5-6**: 2-3 months (Low priority)
    
    ### Infrastructure
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
Back to top