Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for portValue (0.14 sec)

  1. FessProp.java

    L228: } L229: if (pair.length == 2) { L230: String sortValue = pair[1].trim(); L231: if (StringUtil.isBlank(sortValue) || "score".equals(sortValue)) { L232: sortValue = "score.desc"; L233: } L234: return new Pair<>(pair[0].trim(), sortValue); L235: } L236: return null; L237: }).filter(o -> o !=...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      87.2K bytes
  2. SearchApiTests.java

    List<Map<String, Object>> docs = JsonPath.from(response).getList("data"); L264: int prevVal = 0; L265: for (Map<String, Object> doc : docs) { L266: int sortValue = Integer.parseInt(doc.get(sortField).toString()); L267: assertTrue(sortValue >= prevVal); L268: prevVal = sortValue; L269: } L270: } L271: L272: @Test L273: public void searchTestWithWildcard() throws Exception { L274: String field = "filetype"; L275: String query...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      18.6K bytes
Back to top