Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for ingested (0.05 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            final Map<String, Object> result = indexUpdater.ingest(accessResult, doc);
    
            assertNotNull(result);
            // Result should be the same as input doc when ingester is null or doesn't modify
            assertSame(doc, result);
        }
    
        // Test ingest with exception in ingester
        public void test_ingest_withException() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ingest/Ingester.java

        }
    
        /**
         * Registers this ingester with the ingest factory.
         * This makes the ingester available for processing documents.
         */
        public void register() {
            getIngestFactory().add(this);
        }
    
        /**
         * Gets the ingest factory instance for managing ingesters.
         *
         * @return the ingest factory instance
         */
        protected IngestFactory getIngestFactory() {
    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/ingest/IngestFactory.java

         *
         * @param ingester the ingester to add
         */
        public synchronized void add(final Ingester ingester) {
            if (logger.isDebugEnabled()) {
                logger.debug("Loaded {}", ingester.getClass().getSimpleName());
            }
            final Ingester[] newIngesters = Arrays.copyOf(ingesters, ingesters.length + 1);
            newIngesters[ingesters.length] = ingester;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java

            if (ingestFactory == null) {
                return resultData;
            }
            ResultData target = resultData;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
                    target = ingester.process(target, responseData);
                } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java

            assertEquals(2, ingesters[1].getPriority());
            assertEquals(3, ingesters[2].getPriority());
        }
    
        public void test_add_2() {
            IngestFactory factory = new IngestFactory();
            factory.add(new TestIngester(3));
            factory.add(new TestIngester(2));
            factory.add(new TestIngester(1));
            Ingester[] ingesters = factory.getIngesters();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

        }
    
        private static class TestIngestFactory extends IngestFactory {
            List<Ingester> ingesters = new ArrayList<>();
    
            @Override
            public Ingester[] getIngesters() {
                return ingesters.toArray(new Ingester[0]);
            }
        }
    
        private static class TestIngester extends Ingester {
            int processCalled = 0;
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

                return dataMap;
            }
            Map<String, Object> target = dataMap;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
                    target = ingester.process(target, paramMap);
                } catch (final Exception e) {
                    logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e);
                }
            }
            return target;
        }
    
    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/indexer/IndexUpdater.java

                return map;
            }
            Map<String, Object> target = map;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
                    target = ingester.process(target, accessResult);
                } catch (final Exception e) {
                    logger.warn("Failed to process Ingest[{}]", ingester.getClass().getSimpleName(), e);
                }
            }
            return target;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. docs/pt-BR/README.md

    ## Temas
    
     - [Simple](https://github.com/codelibs/fess-theme-simple)
     - [Classic](https://github.com/codelibs/fess-theme-classic)
    
    ## Ingestão
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Scripts
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. docs/es/README.md

    ## Tema
    
     - [Simple](https://github.com/codelibs/fess-theme-simple)
     - [Classic](https://github.com/codelibs/fess-theme-classic)
    
    ## Ingesta
    
     - [Logger](https://github.com/codelibs/fess-ingest-logger)
     - [NDJSON](https://github.com/codelibs/fess-ingest-ndjson)
    
    ## Script
    
     - [Groovy](https://github.com/codelibs/fess-script-groovy)
     - [OGNL](https://github.com/codelibs/fess-script-ognl)
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top