Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for kdoc (0.02 sec)

  1. ApiAdminDocumentsAction.java

    } L95: doc.put(indexFieldContentLength, contentLength); L96: } L97: if (!doc.containsKey(indexFieldFavoriteCount)) { L98: doc.put(indexFieldFavoriteCount, 0L); L99: } L100: if (!doc.containsKey(indexFieldClickCount)) { L101: doc.put(indexFieldClickCount, 0L); L102: } L103: if (!doc.containsKey(indexFieldBoost)) { L104: doc.put(indexFieldBoost, 1.0f); L105: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jul 25 01:48:41 UTC 2024
      7.5K bytes
  2. searchResults.jsp

    /> L38: <ol class="list-unstyled col-md-8"> L39: <c:forEach var="doc" varStatus="s" items="${documentItems}"> L40: <li id="result${s.index}"> L41: <h3 class="title text-truncate"> L42: <a class="link" href="${doc.url_link}" data-uri="${doc.url_link}" L43: data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a> L44: </h3> L45: <div class="body"> L46: <c:if test="${thumbnailSupport && !empty doc.thumbnail}"> L47: <div class="mr-3"> L48: <a class="link...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Jun 09 04:29:42 UTC 2022
      9K bytes
  3. DocumentUtilTest.java

    (List<String>) DocumentUtil.getValue(doc, "key1", List.class)); L57: } L58: L59: public void test_integer() { L60: Map<String, Object> doc = new HashMap<>(); L61: L62: int expected3 = 999; L63: doc.put("key3", expected3); L64: assertEquals(expected3, DocumentUtil.getValue(doc, "key3", Integer.class)); L65: L66: doc.put("key9", new ArrayList<Integer>(Arrays.asList(777, 888, 999))); L67: assertEquals(777, DocumentUtil.getValue(doc, "key9", Integer.class)); L68:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4K bytes
  4. LanguageHelper.java

    } L75: } L76: L77: for (final String f : langFields) { L78: final String lf = f + "_" + language; L79: if (doc.containsKey(f) && !doc.containsKey(lf)) { L80: doc.put(lf, doc.get(f)); L81: if (logger.isDebugEnabled()) { L82: logger.debug("add {} field", lf); L83: } L84: } L85: } L86: } L87: L88: protected String detectLanguage(final String text) { L89: if (Strin...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.5K bytes
  5. LanguageHelperTest.java

    }; L32: } L33: L34: public void test_createScript() { L35: Map<String, Object> doc = new HashMap<>(); L36: assertEquals("aaa", languageHelper.createScript(doc, "aaa").getIdOrCode()); L37: L38: doc.put("lang", "ja"); L39: assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content", L40: languageHelper.createScript(doc, "aaa").getIdOrCode()); L41: } L42: L43: public void test_getReindexScriptSource() { L44:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.7K bytes
  6. searchResults.jsp

    /> L38: <ol class="list-unstyled col-md-8"> L39: <c:forEach var="doc" varStatus="s" items="${documentItems}"> L40: <li id="result${s.index}"> L41: <h3 class="title text-truncate"> L42: <a class="link" href="${doc.url_link}" data-uri="${doc.url_link}" L43: data-id="${doc.doc_id}" data-order="${s.index}">${doc.content_title}</a> L44: </h3> L45: <div class="body"> L46: <c:if test="${thumbnailSupport && !empty doc.thumbnail}"> L47: <div class="mr-3"> L48: <a class="link...
    github.com/codelibs/fess/src/main/webapp/WEB-IN...
    Thu Jun 09 04:29:42 UTC 2022
      9K bytes
  7. SearchListTests.java

    L72: final Map<String, Object> requestBody = new HashMap<>(); L73: final Map<String, Object> doc = new HashMap<>(); L74: final String keyProp = NAME_PREFIX + id; L75: doc.put(KEY_PROPERTY, keyProp); L76: doc.put("url", "http://example.com/" + id); L77: doc.put("boost", id); L78: doc.put("role", "Rguest"); L79: requestBody.put("doc", doc); L80: return requestBody; L81: } L82: L83: @Override L84: protected Map<String, Object> c...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.5K bytes
  8. ThumbnailAction.java

    ror_ErrorJsp))); L50: if (isLoginRequired()) { L51: return redirectToLogin(); L52: } L53: L54: final Map<String, Object> doc = L55: searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getResponseFields(), getUserBean()).orElse(null); L56: final String url = DocumentUtil.getValue(doc, fessConfig.getIndexFieldThumbnail(), String.class); L57: if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { L58:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.6K bytes
  9. GoAction.java

    redirectToLogin(); L71: } L72: L73: Map<String, Object> doc = null; L74: try { L75: doc = searchHelper.getDocumentByDocId(form.docId, L76: new String[] { fessConfig.getIndexFieldUrl(), fessConfig.getIndexFieldConfigId() }, getUserBean()).orElse(null); L77: } catch (final Exception e) { L78: logger.warn("Failed to request: {}", form.docId, e); L79: } L80: if (doc == null) { L81: saveError(messages -> messages.add...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      6.9K bytes
  10. documentMap.dfprop

    - - - - - - - - - - - - - - - - - - - - - - - - - - L57: # o documentOutputDirectory: (NotRequired - Default './output/doc') L58: # The output directory mainly for SchemaHtml and DataXlsTemplate. L59: # Basically you don't need this. L60: # It is considered of value that it always exists at same plain. L61: # L62: #; documentOutputDirectory = ./output/doc L63: # - - - - - - - - - -/ L64: L65: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L66: # o al...
    github.com/codelibs/fess/dbflute_fess/dfprop/do...
    Sat Oct 31 23:35:14 UTC 2015
      9.4K bytes
Back to top