Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for getCrawlingConfigHelper (0.15 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                    });
        }
    
        protected Map<String, String> getConfigPrameterMap(final ResponseData responseData, final ConfigName config) {
            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
            final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(responseData.getSessionId());
            return crawlingConfig.getConfigParameterMap(config);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            return resultData;
        }
    
        protected Map<String, Object> generateData(final ResponseData responseData) {
            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
            final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(responseData.getSessionId());
            final Extractor extractor = getExtractor(responseData);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        }
    
        public static SearchLogHelper getSearchLogHelper() {
            return getComponent(SEARCH_LOG_HELPER);
        }
    
        public static CrawlingConfigHelper getCrawlingConfigHelper() {
            if (crawlingConfigHelper == null || HotdeployUtil.isHotdeploy()) {
                crawlingConfigHelper = getComponent(CRAWLING_CONFIG_HELPER);
            }
            return crawlingConfigHelper;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                logger.debug("writing the content of: {}", doc);
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
            final String configId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldConfigId(), String.class);
            if (configId == null) {
                throw new FessSystemException("configId is null.");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            SingletonLaContainerFactory.getContainer().register(LabelTypeHelper.class, "labelTypeHelper");
    
            WebConfig webConfig = new WebConfig();
            ComponentUtil.getCrawlingConfigHelper().store("test", webConfig);
            setValueToObject(ComponentUtil.getLabelTypeHelper(), "labelTypePatternList", new ArrayList<LabelTypePattern>());
    
            System.gc();
            Thread.sleep(1000L);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top