Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 95 for pnum (0.02 sec)

  1. help.js

    return false; L33: }); L34: L35: if (typeof $.fn.suggestor === "function") { L36: $("#query").suggestor({ L37: ajaxinfo: { L38: url: contextPath + "/api/v1/suggest-words", L39: fn: ["_default", "content", "title"], L40: num: 10, L41: lang: $("#langSearchOption").val() L42: }, L43: boxCssInfo: { L44: border: "1px solid rgba(82, 168, 236, 0.5)", L45: "-webkit-box-shadow": L46: "0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 3px 2px 0px rgba(82,...
    github.com/codelibs/fess/src/main/webapp/js/hel...
    Thu Mar 30 05:45:24 UTC 2023
      2K bytes
  2. ErrorForm.java

    L17: L18:import java.util.HashMap; L19:import java.util.Map; L20: L21:public class ErrorForm { L22: L23: public Map<String, String[]> fields = new HashMap<>(); L24: L25: public String q; L26: L27: public String url; L28: L29: public String num; L30: L31: public String sort; L32: L33: public String lang; L34:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      919 bytes
  3. GoForm.java

    @Required L32: public String rt; L33: L34: public String hash; L35: L36: @Required L37: public String queryId; L38: L39: public Integer order; L40: L41: // for error page L42: L43: public String q; L44: L45: public String num; L46: L47: public String sort; L48: L49: public String lang; L50: L51: public Map<String, String[]> fields = new HashMap<>(); L52:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.2K bytes
  4. index.js

    false; L35: }); L36: L37: if (typeof $.fn.suggestor === "function") { L38: $("#contentQuery").suggestor({ L39: ajaxinfo: { L40: url: contextPath + "/api/v1/suggest-words", L41: fn: ["_default", "content", "title"], L42: num: 10, L43: lang: $("#langSearchOption").val() L44: }, L45: boxCssInfo: { L46: border: "1px solid rgba(82, 168, 236, 0.5)", L47: "-webkit-box-shadow": L48: "0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 3px 2px 0px rgba(82,...
    github.com/codelibs/fess/src/main/webapp/js/ind...
    Thu Mar 30 05:45:24 UTC 2023
      2K bytes
  5. stopwords.txt

    L28:à L29:seu L30:sua L31:ou L32:quando L33:muito L34:nos L35:já L36:eu L37:também L38:só L39:pelo L40:pela L41:até L42:isso L43:ela L44:entre L45:depois L46:sem L47:mesmo L48:aos L49:seus L50:quem L51:nas L52:me L53:esse L54:eles L55:você L56:essa L57:num L58:nem L59:suas L60:meu L61:às L62:minha L63:numa L64:pelos L65:elas L66:qual L67:nós L68:lhe L69:deles L70:essas L71:esses L72:pelas L73:este L74:dele L75:tu L76:te L77:vocês L78:vos L79:lhes L80:meus L81:minhas L82:teu L83:tua L84:teus L85:tuas L86:nosso...
    github.com/codelibs/fess/src/main/resources/fes...
    Mon Nov 27 12:59:36 UTC 2023
      1.4K bytes
  6. CrawlerStatsHelper.java

    L278: L279: public int increment() { L280: return count.incrementAndGet(); L281: } L282: L283: public int decrement() { L284: return count.decrementAndGet(); L285: } L286: } L287: L288: public enum StatsAction { L289: ACCESSED, // L290: ACCESS_EXCEPTION, // L291: CHILD_URL, // L292: CHILD_URLS, // L293: EVALUATED, // L294: EXCEPTION, // L295: FINISHED, // L296: PARSED, // L297: PREPARED,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      9.9K bytes
  7. AccessTokenTests.java

    updateMap.put("permissions", "Radmin-api2"); L78: return updateMap; L79: } L80: L81: @Override L82: protected void checkUpdate() { L83: Map<String, Object> searchBody = new HashMap<>(); L84: searchBody.put("size", NUM * 2); L85: List<String> updatedList = getPropList(searchBody, "permissions"); L86: for (String val : updatedList) { L87: assertEquals(val, "{role}admin-api2"); L88: } L89: } L90: L91: private void testPermission()...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.7K bytes
  8. UriTypeValidator.java

    break; L54: } L55: } L56: if (!flag) { L57: return false; L58: } L59: } L60: } L61: return true; L62: } L63: L64: public enum ProtocolType { L65: WEB, FILE; L66: } L67:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 17 13:37:12 UTC 2024
      2.3K bytes
  9. suggestor.js

    L108: type: "get", L109: dataType: "json", L110: cache: false, L111: data: { L112: q: $textArea.val(), L113: field: settingAjaxInfo.fn, L114: num: settingAjaxInfo.num * 2, L115: lang: settingAjaxInfo.lang L116: }, L117: traditional: true L118: }) L119: .done(function(obj) { L120: suggestor.createAutoCompleteList(obj); L121:...
    github.com/codelibs/fess/src/main/webapp/js/sug...
    Thu Mar 30 05:45:24 UTC 2023
      13.3K bytes
  10. ApiResult.java

    jakarta.servlet.http.HttpServletRequest; L32: L33:public class ApiResult { L34: L35: protected ApiResponse response = null; L36: L37: public ApiResult(final ApiResponse response) { L38: this.response = response; L39: } L40: L41: public enum Status { L42: OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3), FAILED(9); L43: L44: private final int id; L45: L46: Status(final int id) { L47: this.id = id; L48: } L49: L50: public int getId()...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      12.5K bytes
Back to top