Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 197 for role (0.05 sec)

  1. IndexUpdater.java

    L601: L602: public void setMaxIndexerErrorCount(final int maxIndexerErrorCount) { L603: this.maxIndexerErrorCount = maxIndexerErrorCount; L604: } L605: L606: public void addDocBoostMatcher(final DocBoostMatcher rule) { L607: docBoostMatcherList.add(rule); L608: } L609: L610: public void setCrawlerList(final List<Crawler> crawlerList) { L611: this.crawlerList = crawlerList; L612: } L613:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      24.2K bytes
  2. bootstrap.min.css.map

    // Show the overflow in Edge\n}\n\nbutton,\nselect {\n text-transform: none; // Remove the inheritance of text transform in Firefox\n}\n\n// Set the cursor for non-`<button>` buttons\n//\n// Details at https://github.com/twbs/bootstrap/pull/30562\n[role=\"button\"] {\n cursor: pointer;\n}\n\n// Remove the inheritance of word-wrap in Safari.\n//\n// Details at https://github.com/twbs/bootstrap/issues/24990\nselect {\n word-wrap: normal;\n}\n\n\n// 1. Prevent a WebKit bug where (2) destroys native...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      639.3K bytes
  3. BsSearchLogBhv.java

    .get("referer"))); L86: result.setRequestedAt(toLocalDateTime(source.get("requestedAt"))); L87: result.setResponseTime(DfTypeUtil.toLong(source.get("responseTime"))); L88: result.setRoles(toStringArray(source.get("roles"))); L89: result.setSearchWord(DfTypeUtil.toString(source.get("searchWord"))); L90: result.setUser(DfTypeUtil.toString(source.get("user"))); L91: result.setUserAgent(DfTypeUtil.toString(source.get("userAgent"))); L92:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      10.5K bytes
  4. bootstrap.min.css

    ottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[ty...
    github.com/codelibs/fess/src/main/webapp/css/ad...
    Sat Oct 26 01:49:09 UTC 2024
      158.5K bytes
  5. WebFsIndexHelper.java

    indexUpdater.setSessionIdList(sessionIdList); L367: indexUpdater.setDaemon(true); L368: indexUpdater.setCrawlerList(crawlerList); L369: getAvailableBoostDocumentRuleList().forEach(rule -> { L370: indexUpdater.addDocBoostMatcher(new org.codelibs.fess.indexer.DocBoostMatcher(rule)); L371: }); L372: indexUpdater.start(); L373: L374: int startedCrawlerNum = 0; L375: int activeCrawlerNum = 0; L376: try { L377: while (startedCrawlerNum...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
  6. BsUserBhv.java

    result.setPreferredLanguage(DfTypeUtil.toString(source.get("preferredLanguage"))); L105: result.setRegisteredAddress(DfTypeUtil.toString(source.get("registeredAddress"))); L106: result.setRoles(toStringArray(source.get("roles"))); L107: result.setRoomNumber(DfTypeUtil.toString(source.get("roomNumber"))); L108: result.setState(DfTypeUtil.toString(source.get("state"))); L109: result.setStreet(DfTypeUtil.toString(source.get("street"))); L110:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      12K bytes
  7. FessMultipartRequestHandler.java

    ServletException("Failed to upload the file.", e); L324: } L325: L326: // =================================================================================== L327: // Roll-back L328: // ========= L329: @Override L330: public void rollback() { L331: for (MultipartFormFile formFile : elementsFile.values()) { L332: formFile.destroy();...
    github.com/codelibs/fess/src/main/java/org/code...
    Wed Oct 23 13:27:21 UTC 2024
      18.6K bytes
  8. fess_log.ndjson

    chable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"responseTime\",\"type\":\"number\",\"esTypes\":[\"long\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"roles\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":true},{\"name\":\"searchField._default\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"count\":0,\"scr...
    github.com/codelibs/fess/src/main/assemblies/ex...
    Mon Aug 12 01:26:21 UTC 2019
      18.2K bytes
  9. LICENSE

    fee for, acceptance of support, warranty, indemnity, L168: or other liability obligations and/or rights consistent with this L169: License. However, in accepting such obligations, You may act only L170: on Your own behalf and on Your sole responsibility, not on behalf L171: of any other Contributor, and only if You agree to indemnify, L172: defend, and hold each Contributor harmless for any liability L173: incurred by, or claims asserted against, such Contributor by reason...
    github.com/codelibs/curl4j/LICENSE
    Thu Jun 14 07:45:22 UTC 2018
      11.1K bytes
  10. SearchLogService.java

    params.put("Client IP", e.getClientIp()); L539: params.put("Referer", e.getReferer()); L540: params.put("Languages", e.getLanguages()); L541: params.put("Virtual Host", e.getVirtualHost()); L542: params.put("Roles", e.getRoles() != null ? String.join(" ", e.getRoles()) : StringUtil.EMPTY); L543: params.put("User Agent", e.getUserAgent()); L544: e.getSearchFieldLogList().stream().forEach(p -> { L545: params.put(p.getFirst(),...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      28.4K bytes
Back to top