Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 72 for docs (0.03 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. generate-thumbnail

    ${tmp_pdf_file} -f pdf "${target_file}" L28: if [[ ! -f ${tmp_pdf_file} ]] ; then L29: echo "unoconv does not work." L30: exit 1 L31: fi L32: tmp_png_prefix=/tmp/thumbnail.png.$$ L33: pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix} L34: tmp_png_file="${tmp_png_prefix}.png" L35: rm -f ${tmp_pdf_file} L36: if [[ ! -f ${tmp_png_file} ]] ; then L37: echo "pdftoppm does not work." L38: exit 1 L39: fi L40: convert -thumbnail ${image_size} ${tmp_png_file} "${output_file}"...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Mon Jun 12 13:13:28 UTC 2023
      2.5K bytes
  3. replaceSchemaMap.dfprop

    - - - - - - - - - - - - - - - - - - - - - - - L42: # o isLoggingInsertSql: (NotRequired - Default true) L43: # Does it show insert values on log? L44: # L45: #; isLoggingInsertSql = true L46: # - - - - - - - - - -/ L47: L48: # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - L49: # o isLoggingReplaceSql: (NotRequired - Default true) L50: # Does it show replace-SQL on log? L51: # L52: #; isLoggingReplaceSql = true L53: # - - - - - - - - - -/ L54: L55:...
    github.com/codelibs/fess/dbflute_fess/dfprop/re...
    Sat Oct 31 23:35:14 UTC 2015
      9.3K bytes
  4. 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
  5. fess_env_web.properties

    L10:# Is development environment here? (used for various purpose, you should set false if unknown) L11:development.here = false L12: L13:# The title of environment (e.g. local or integration or production) L14:environment.title = Production L15: L16:# Does it enable the Framework internal debug? (true only when emergency) L17:framework.debug = false L18: L19:# one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000 L20:# special script :: absolute mode:...
    github.com/codelibs/fess/src/main/resources/fes...
    Mon Jan 29 07:34:32 UTC 2018
      2.2K bytes
  6. 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
  7. 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
  8. 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
  9. 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
  10. basicInfoMap.dfprop

    # o applicationBehaviorMap: (NotRequired - Default map:{}) L186: # The settings for Application Behavior. L187: # Elements of this map are as below: L188: # o isApplicationBehaviorProject: (NotRequired - Default false) L189: # Does the project is for application behaviors? L190: # This property is a main signal for Application Behavior. L191: # Other properties (for Application Behavior) work when this is true. L192: # o libraryProjectPackageBase: (NotRequired...
    github.com/codelibs/fess/dbflute_fess/dfprop/ba...
    Sat Oct 31 23:35:14 UTC 2015
      9.2K bytes
Back to top