Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getIndexFieldConfigId (0.15 sec)

  1. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                            searchEngineClient.addAll(fessConfig.getIndexDocumentUpdateIndex(), docList, (doc, builder) -> {
                                final String configId = (String) doc.get(fessConfig.getIndexFieldConfigId());
                                crawlingConfigHelper.getPipeline(configId).ifPresent(s -> builder.setPipeline(s));
                            });
                    if (response.hasFailures()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
    
            // cid
            final String configId = crawlingConfig.getConfigId();
            if (configId != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldConfigId(), configId);
            }
            //  expires
            if (documentExpires != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldExpires(), documentExpires);
            }
            // segment
    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/helper/ViewHelper.java

            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
            final String configId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldConfigId(), String.class);
            if (configId == null) {
                throw new FessSystemException("configId is null.");
            }
            if (configId.length() < 2) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
    
            // cid
            final String configId = crawlingConfig.getConfigId();
            if (configId != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldConfigId(), configId);
            }
            //  expires
            if (documentExpires != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldExpires(), documentExpires);
            }
            // lang
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * The value is, e.g. config_id <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexFieldConfigId();
    
        /**
         * Get the value for the key 'index.field.expires'. <br>
         * The value is, e.g. expires <br>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
Back to top