Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for overwritten (0.08 sec)

  1. FessFileTransformerTest.java

    l, "UTF-8")); L273: } L274: L275: public void test_processFieldConfigs() { L276: final FessFileTransformer transformer = createInstance(); L277: final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite"); L278: FieldConfigs fieldConfigs = new FieldConfigs(params); L279: final Map<String, Object> dataMap = Map.of(// L280: "foo", new String[] { "aaa", "bbb" }, // L281: "bar", new String[] {...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Jul 04 06:20:49 UTC 2024
      9.8K bytes
  2. FessXpathTransformerTest.java

    ); L932: } L933: L934: public void test_processFieldConfigs() { L935: final FessXpathTransformer transformer = new FessXpathTransformer(); L936: final Map<String, String> params = Maps.of("foo", "cache", "bar", "overwrite", "baz", "cache|overwrite"); L937: FieldConfigs fieldConfigs = new FieldConfigs(params); L938: final Map<String, Object> dataMap = Map.of(// L939: "foo", new String[] { "aaa", "bbb" }, // L940: "bar", new String[] {...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      41.3K bytes
  3. AbstractFessFileTransformer.java

    th())); L279: // last_modified L280: final Date lastModified = getLastModified(dataMap, responseData); L281: if (lastModified != null) { L282: dataMap.put(fessConfig.getIndexFieldLastModified(), lastModified); // overwrite L283: // timestamp L284: putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified); L285: } else { L286: // timestamp L287: putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(),...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      23.6K bytes
Back to top