Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getIngesters (0.31 sec)

  1. src/main/java/org/codelibs/fess/ingest/IngestFactory.java

         * The returned array contains all ingesters in priority order
         * (lower priority numbers first).
         *
         * @return the sorted array of ingesters
         */
        public Ingester[] getIngesters() {
            return ingesters;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

            if (ingestFactory == null) {
                return dataMap;
            }
            Map<String, Object> target = dataMap;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
                    target = ingester.process(target, paramMap);
                } catch (final Exception e) {
    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/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)
  5. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            // Mock implementation
        }
    
        private static class TestIngestFactory extends IngestFactory {
            private boolean throwException = false;
    
            @Override
            public Ingester[] getIngesters() {
                return new Ingester[] { new TestIngester(throwException) };
            }
    
            public void setThrowException(boolean throwException) {
                this.throwException = throwException;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            if (ingestFactory == null) {
                return map;
            }
            Map<String, Object> target = map;
            for (final Ingester ingester : ingestFactory.getIngesters()) {
                try {
                    target = ingester.process(target, accessResult);
                } catch (final Exception e) {
    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