Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 76 for replay (0.04 sec)

  1. adminlte.min.js

    e=n.default('<div class="toast" role="alert" aria-live="assertive" aria-atomic="true"/>');e.data("autohide",this._config.autohide),e.data("animation",this._config.fade),this._config.class&&e.addClass(this._config.class),this._config.delay&&500!=this._config.delay&&e.data("delay",this._config.delay);var t=n.default('<div class="toast-header">');if(null!=this._config.image){var a=n.default("<img />").addClass("rounded mr-2").attr("src",this._config.image).attr("alt",this._config.imageAlt);null!=this._config.image...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      45.3K bytes
  2. adminlte.min.js.map

    \n\n toast.data('autohide', this._config.autohide)\n toast.data('animation', this._config.fade)\n\n if (this._config.class) {\n toast.addClass(this._config.class)\n }\n\n if (this._config.delay && this._config.delay != 500) {\n toast.data('delay', this._config.delay)\n }\n\n const toastHeader = $('<div class=\"toast-header\">')\n\n if (this._config.image != null) {\n const toastImage = $('<img />').addClass('rounded mr-2').attr('src', this._config.image).attr('alt',...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      132.4K bytes
  3. jquery-3.7.1.min.js

    +&&ce.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Ft.test(v.type),f=v.url.replace(Rt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Mt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(At.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(It,"$1"),o=(At.test(f)?"&":"?")+"_="+jt.guid+++o),v.url=f+o),v.ifModified&&(ce.lastModified[f]&&T.s...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      85.5K bytes
  4. IntervalControlHelper.java

    checkCrawlerStatus() { L35: while (!crawlerRunning) { L36: ThreadUtil.sleepQuietly(crawlerWaitMillis); L37: } L38: } L39: L40: public void delayByRules() { L41: final long delay = getDelay(); L42: if (delay > 0) { L43: ThreadUtil.sleep(delay); L44: } L45: } L46: L47: protected long getDelay() { L48: if (ruleList.isEmpty()) { L49: return 0; L50: } L51: final Calendar cal = getCurrentCal(); L52: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      5.8K bytes
  5. ParamMap.java

    L167: } L168: L169: @Override L170: public boolean replace(final K key, final V oldValue, final V newValue) { L171: if (parent.replace(key, oldValue, newValue)) { L172: return true; L173: } L174: return parent.replace(key, oldValue, newValue); L175: } L176: L177: @Override L178: public V replace(final K key, final V value) { L179: // use original key L180: return parent.replace(key, value); L181: } L182: L183: @Override L184: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      5.3K bytes
  6. QueryStringBuilder.java

    private boolean escape = false; L41: L42: private String sortField; L43: L44: protected String quote(final String value) { L45: if (value.split("\\s").length > 1) { L46: return new StringBuilder().append('"').append(value.replace('"', ' ')).append('"').toString(); L47: } L48: return value; L49: } L50: L51: protected String escapeQuery(final String value) { L52: if (!escape) { L53: return value; L54: } L55: L56: String newValue...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      8.7K bytes
  7. KuromojiCSVUtil.java

    atcher(original); L101: if (m.matches()) { L102: result = m.group(1); L103: } L104: L105: // Unescape L106: if (result.indexOf(ESCAPED_QUOTE) >= 0) { L107: result = result.replace(ESCAPED_QUOTE, "\""); L108: } L109: } L110: L111: return result; L112: L113: } L114: L115: /** L116: * Quote and escape input value for CSV L117: * L118: * @param original Original text. L119: * @return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  8. FessActionAdjustmentProvider.java

    L32: // _/_/_/_/_/_/_/_/_/_/ L33: L34: @Override L35: public FormMappingOption adjustFormMapping() { L36: return new FormMappingOption() L37: .filterSimpleTextParameter((parameter, meta) -> parameter.trim().replace("\r\n", "\n").replace('\r', '\n')); L38: } L39: L40: @Override L41: public String customizeActionMappingRequestPath(final String requestPath) { L42: if (StringUtil.isBlank(requestPath)) { L43: return null; L44: } L45: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      2K bytes
  9. AdminDesignAction.java

    *?)%>", "&lt;%$1%&gt;").replaceAll("<%=([\\s\\S]*?)%>", "&lt;%=$1%&gt;") L361: .replace(TRY_STATEMENT, "<% try{ %>") L362: .replace(CACHE_AND_SESSION_INVALIDATE_STATEMENT, "<% }catch(Exception e){session.invalidate();} %>"); L363: } L364: L365: public static String encodeJsp(final String value) { L366: return value.replace("<% try{ %>", TRY_STATEMENT).replace("<% }catch(Exception e){session.invalidate();} %>", L367: CACHE_AND_SESSION_INVALIDATE_STATEMENT);...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      16.1K bytes
  10. CharMappingItem.java

    L32: private String newOutput; L33: L34: public CharMappingItem(final long id, final String[] inputs, final String output) { L35: this.id = id; L36: this.inputs = inputs; L37: this.output = output == null ? null : output.replace("\n", " "); L38: Arrays.sort(inputs); L39: L40: if (id == 0) { L41: // create L42: newInputs = inputs; L43: newOutput = output; L44: } L45: } L46: L47: public String[] getNewInputs() { L48:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      3.4K bytes
Back to top