Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for docs (0.03 sec)

  1. fess_env_suggest.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
  2. 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
  3. fess_env_crawler.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
  4. fess_env_thumbnail.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 Feb 12 13:38:57 UTC 2018
      2.2K bytes
  5. _readme.txt

    L1:Directory for library extension L2: L3:If you use a database that DBFlute does not have its JDBC driver, L4:put your own JDBC driver for the database here. L5:(e.g. Oracle, DB2, SQLServer)...
    github.com/codelibs/fess/dbflute_fess/extlib/_r...
    Sat Jul 04 22:46:31 UTC 2015
      177 bytes
  6. fess_env.properties

    development environment here? (used for various purpose, you should set false if unknown) L11:development.here = true L12: L13:# The title of environment (e.g. local or integration or production) L14:environment.title = Local Development 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...
    Sat Aug 07 04:53:24 UTC 2021
      2.2K bytes
  7. 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
  8. CacheAction.java

    { L52: return redirectToLogin(); L53: } L54: L55: Map<String, Object> doc = null; L56: try { L57: doc = searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getCacheResponseFields(), getUserBean()).orElse(null); L58: } catch (final Exception e) { L59: logger.warn("Failed to request: {}", form.docId, e); L60: } L61: if (doc == null) { L62: saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.4K bytes
  9. profile.js

    $(event.relatedTarget), L40: docId = button.data("docid"), L41: title = button.data("title"), L42: url = button.data("url"); L43: L44: $(this) L45: .find(".modal-body #delete-doc-title") L46: .text(title); L47: $(this) L48: .find(".modal-body #delete-doc-url") L49: .text(url); L50: $(this) L51: .find(".modal-footer input#docId") L52: .val(docId); L53: }); L54:});...
    github.com/codelibs/fess/src/main/webapp/js/pro...
    Wed Sep 12 06:47:49 UTC 2018
      1.3K bytes
  10. CurlResponse.java

    InputStream getContentAsStream() throws IOException { L72: if (contentCache == null) { L73: if (contentException != null) { L74: throw new CurlException("The content does not exist.", contentException); L75: } else { L76: throw new CurlException("The content does not exist."); L77: } L78: } L79: return contentCache.getInputStream(); L80: } L81: L82: public void setContentCache(final ContentCache contentCache) { L83: ...
    github.com/codelibs/curl4j/src/main/java/org/co...
    Mon Nov 14 21:05:19 UTC 2022
      4K bytes
Back to top