Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for hasIngestFactory (1.67 sec)

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

         * Initializes the processor after dependency injection.
         * Sets up the ingest factory if available in the component system.
         */
        @PostConstruct
        public void init() {
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Creates an access result after processing the response data through 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)
  2. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            assertTrue(ComponentUtil.hasRelatedQueryHelper());
        }
    
        public void test_hasIngestFactory() {
            assertFalse(ComponentUtil.hasIngestFactory());
    
            ComponentUtil.register(new Object(), "ingestFactory");
            assertTrue(ComponentUtil.hasIngestFactory());
        }
    
        public void test_getJobExecutor_withSuffix() {
            try {
                ComponentUtil.getJobExecutor("testJobExecutor");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            maxDocumentCacheSize = ComponentUtil.getFessConfig().getIndexerDataMaxDocumentCacheSizeAsInteger();
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Stores a document in the index after processing and validation.
    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/util/ComponentUtil.java

        }
    
        /**
         * Checks if ingest factory is available.
         * @return True if ingest factory is available, false otherwise.
         */
        public static boolean hasIngestFactory() {
            return hasComponent(INGEST_FACTORY);
        }
    
        /**
         * Checks if the container is available.
         * @return True if the container is available, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            if (ComponentUtil.hasIngestFactory()) {
                ingestFactory = ComponentUtil.getIngestFactory();
            }
        }
    
        /**
         * Destroys the IndexUpdater when the container is shutting down.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top