Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for putResultDataWithTemplate (0.09 sec)

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

                final String key = entry.getKey();
                final String[] values = entry.getValue().split(",");
                for (final String value : values) {
                    putResultDataWithTemplate(dataMap, key, metaDataMap.get(value), scriptConfigMap.get(key), scriptType);
                }
            }
            final Map<String, String> valueConfigMap = crawlingConfig.getConfigParameterMap(ConfigName.VALUE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         * @param value the original value to process
         * @param template the template script to evaluate
         * @param scriptType the type of script engine to use
         */
        default void putResultDataWithTemplate(final Map<String, Object> dataMap, final String key, final Object value, final String template,
                final String scriptType) {
            Object target = value;
            if (template != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top