Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for coat (0.09 sec)

  1. stopwords.txt

    on/src/resources/org/apache/lucene/analysis/gl/stopwords.txt L2:a L3:aínda L4:alí L5:aquel L6:aquela L7:aquelas L8:aqueles L9:aquilo L10:aquí L11:ao L12:aos L13:as L14:así L15:á L16:ben L17:cando L18:che L19:co L20:coa L21:comigo L22:con L23:connosco L24:contigo L25:convosco L26:coas L27:cos L28:cun L29:cuns L30:cunha L31:cunhas L32:da L33:dalgunha L34:dalgunhas L35:dalgún L36:dalgúns L37:das L38:de L39:del L40:dela L41:delas L42:deles L43:desde L44:deste L45:do L46:dos L47:dun L48:duns L49:dunha...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Jul 19 06:31:02 UTC 2018
      932 bytes
  2. before_script.sh

    L12:error_count=0 L13:while true ; do L14: status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health") L15: cat ${temp_json_file} L16: if [[ x"${status}" = x200 ]] ; then L17: break L18: else L19: error_count=$((error_count + 1)) L20: fi L21: if [[ ${error_count} -ge 60 ]] ; then L22: echo "Fess is not available." L23: cat ${temp_log_file} ./fess-*/logs/*.log L24: exit 1 L25: fi L26: sleep 1 L27:done L28: L29:pushd /tmp >/dev/null L30:git clone http...
    github.com/codelibs/fess/src/test/resources/bef...
    Sat Feb 10 03:25:34 UTC 2024
      863 bytes
  3. adminlte.min.css

    .right>.direct-chat-text::after,.direct-chat-olive .right>.direct-chat-text::before{border-left-color:#3d9970}.direct-chat-lime .right>.direct-chat-text{background-color:#01ff70;border-color:#01ff70;color:#1f2d3d}.direct-chat-lime .right>.direct-chat-text::after,.direct-chat-lime .right>.direct-chat-text::before{border-left-color:#01ff70}.direct-chat-fuchsia .right>.direct-chat-text{background-color:#f012be;border-color:#f012be;color:#fff}.direct-chat-fuchsia .right>.direct-chat-text::after,.direct-chat-fuchsia...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      1.3M bytes
  4. adminlte.min.css.map

    #fff;\n}\n\n.direct-chat-secondary .right > .direct-chat-text::after, .direct-chat-secondary .right > .direct-chat-text::before {\n border-left-color: #6c757d;\n}\n\n.direct-chat-success .right > .direct-chat-text {\n background-color: #28a745;\n border-color: #28a745;\n color: #fff;\n}\n\n.direct-chat-success .right > .direct-chat-text::after, .direct-chat-success .right > .direct-chat-text::before {\n border-left-color: #28a745;\n}\n\n.direct-chat-info .right > .direct-chat-text {\n background-color: #17a2b8;\n...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      3.7M bytes
  5. fess.in.bat

    L1:@echo off L2: L3:if DEFINED JAVA_HOME goto cont L4: L5::err L6:ECHO JAVA_HOME environment variable must be set! 1>&2 L7:EXIT /B 1 L8: L9::cont L10:set SCRIPT_DIR=%~dp0 L11:for %%I in ("%SCRIPT_DIR%..") do set FESS_HOME=%%~dpfI L12: L13: L14:REM ***** JAVA options ***** L15: L16:if "%FESS_MIN_MEM%" == "" ( L17:set FESS_MIN_MEM=256m L18:) L19: L20:if "%FESS_MAX_MEM%" == "" ( L21:set FESS_MAX_MEM=1g L22:) L23: L24:if NOT "%FESS_HEAP_SIZE%" == "" ( L25:set FESS_MIN_MEM=%FESS_HEAP_SIZE% L26:set F...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      4.2K bytes
  6. fess

    "$FESS_USER" -c "$FESS_USER" --pidfile "$PID_FILE" --exec $DAEMON -- $DAEMON_OPTS L180: return=$? L181: if [ $return -eq 0 ]; then L182: i=0 L183: timeout=10 L184: # Wait for the process to be properly started before exiting L185: until { kill -0 `cat "$PID_FILE"`; } >/dev/null 2>&1 L186: do L187: sleep 1 L188: i=$(($i + 1)) L189: if [ $i -gt $timeout ]; then L190: log_end_msg 1 L191: exit 1 L192: fi L193: done L194: fi L195: log_end_msg $return L196: exit $return L197: ;; L198:...
    github.com/codelibs/fess/src/packaging/deb/init...
    Sun Jan 15 06:32:15 UTC 2023
      5.8K bytes
  7. NotificationHelper.java

    buf.append(LF).append("```\"}"); L74: return buf.toString(); L75: } L76: L77: protected void sendToGoogleChat(final CardView cardView, final SMailPostingDiscloser discloser) { L78: // https://developers.google.com/hangouts/chat/how-tos/webhooks L79: final FessConfig fessConfig = ComponentUtil.getFessConfig(); L80: final String googleChatWebhookUrls = fessConfig.getGoogleChatWebhookUrls(); L81: if (StringUtil.isBlank(googleChatWebhookUrls)) { L82: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.1K bytes
  8. run.sh

    test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" L7:ret=$? L8: L9:if [ $ret != 0 ] ; then L10: for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do L11: cat $f L12: done L13:fi L14: L15:exit $ret...
    github.com/codelibs/fess/src/test/resources/run.sh
    Sat Feb 10 03:25:34 UTC 2024
      353 bytes
  9. stopwords.txt

    L35:aşadar L36:asemenea L37:asta L38:ăsta L39:astăzi L40:astea L41:ăstea L42:ăştia L43:asupra L44:aţi L45:au L46:avea L47:avem L48:aveţi L49:azi L50:bine L51:bucur L52:bună L53:ca L54:că L55:căci L56:când L57:care L58:cărei L59:căror L60:cărui L61:cât L62:câte L63:câţi L64:către L65:câtva L66:ce L67:cel L68:ceva L69:chiar L70:cînd L71:cine L72:cineva L73:cît L74:cîte L75:cîţi L76:cîtva L77:contra L78:cu L79:cum L80:cumva L81:curând L82:curînd L83:da L84:dă L85:dacă L86:dar L87:datorită L88:de L89:deci...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Jul 19 06:31:02 UTC 2018
      1.4K bytes
  10. adminlte.min.js

    turn e.prototype.toggle=function(){n.default(this._element).parents(".direct-chat").first().toggleClass("direct-chat-contacts-open"),n.default(this._element).trigger(n.default.Event("toggled.lte.directchat"))},e._jQueryInterface=function(t){return this.each((function(){var a=n.default(this).data(O);a||(a=new e(n.default(this)),n.default(this).data(O,a)),a[t]()}))},e}();n.default(document).on("click",'[data-widget="chat-pane-toggle"]',(function(e){e&&e.preventDefault(),P._jQueryInterface.call(n.d...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      45.3K bytes
Back to top