Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for getHost (0.06 sec)

  1. FessBoot.java

    (fessLogPath == null) { L104: fessLogPath = "../../logs"; L105: } L106: op.replace("fess.log.path", fessLogPath.replace("\\", "/")); L107: }).asYouLikeIt(resource -> { L108: final Host host = resource.getHost(); L109: if (host instanceof final StandardHost standardHost) { L110: standardHost.setErrorReportValveClass(SuppressErrorReportValve.class.getName()); L111: } L112: }).useTldDetect(jarName -> (jarName.contains("jstl")...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      8K bytes
  2. FessTransformer.java

    L39:public interface FessTransformer { L40: L41: Map<String, String> parentEncodingMap = Collections.synchronizedMap(new LruHashMap<>(1000)); L42: L43: FessConfig getFessConfig(); L44: L45: Logger getLogger(); L46: L47: default String getHost(final String u) { L48: if (StringUtil.isBlank(u)) { L49: return StringUtil.EMPTY; // empty L50: } L51: L52: String url = u; L53: final String originalUrl = url; L54: L55: int idx = url.indexOf("://");...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      9.5K bytes
  3. FessXpathTransformer.java

    (urlStr.startsWith("//")) { L319: value = "http:" + urlStr; L320: } else { L321: value = urlStr; L322: } L323: try { L324: final URL url = new java.net.URL(value); L325: final String host = url.getHost(); L326: if (StringUtil.isBlank(host) || "http".equalsIgnoreCase(host) || "https".equalsIgnoreCase(host)) { L327: return false; L328: } L329: } catch (final MalformedURLException e) { L330: return...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Oct 24 13:01:38 UTC 2024
      42.9K bytes
  4. AbstractFessFileTransformer.java

    if (pos == -1) { L435: return value; L436: } L437: return "localhost"; L438: } L439: if (url.startsWith("file:")) { L440: return "localhost"; L441: } L442: L443: return getHost(url); L444: } L445: L446: protected List<String> getRoleTypes(final ResponseData responseData) { L447: final List<String> roleTypeList = new ArrayList<>(); L448: final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      23.6K bytes
  5. SearchHelper.java

    .REQUEST_LANGUAGES, params.getLanguages()); L96: request.setAttribute(Constants.REQUEST_QUERIES, params.getQuery()); L97: }); L98: L99: String query = ComponentUtil.getQueryStringBuilder().params(params).sortField(params.getSort()).build(); L100: List<Map<String, Object>> documentItems; L101: try { L102: documentItems = searchInternal(query, params, userBean); L103: } catch (final InvalidQueryException e) { L104: if (logger.isDebugEnabled())...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      19.1K bytes
  6. RankFusionProcessor.java

    parent.getFacetInfo(); L364: } L365: L366: @Override L367: public HighlightInfo getHighlightInfo() { L368: return parent.getHighlightInfo(); L369: } L370: L371: @Override L372: public String getSort() { L373: return parent.getSort(); L374: } L375: L376: @Override L377: public int getStartPosition() { L378: return startPosition; L379: } L380: L381: @Override L382: public int getOffset() { L383: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.3K bytes
  7. popper.min.js.map

    the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nexport default function getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n","import isOffsetContainer from './isOffsetContainer';\nimport getRoot from './getRoot';\nimport getOffsetParent from './getOffsetParent';\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      120.9K bytes
  8. WebAuthentication.java

    } L82: L83: private AuthScope getAuthScope() { L84: if (StringUtil.isBlank(getHostname())) { L85: return AuthScope.ANY; L86: } L87: L88: int p; L89: if (getPort() == null) { L90: p = AuthScope.ANY_PORT; L91: } else { L92: p = getPort(); L93: } L94: L95: String r = getAuthRealm(); L96: if (StringUtil.isBlank(r)) { L97: r = AuthScope.ANY_REALM; L98: } L99: L100: String s = getProtocolScheme();...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      5.8K bytes
  9. KuromojiItem.java

    String getToken() { L88: return token; L89: } L90: L91: public String getSegmentation() { L92: return segmentation; L93: } L94: L95: public String getReading() { L96: return reading; L97: } L98: L99: public String getPos() { L100: return pos; L101: } L102: L103: public boolean isUpdated() { L104: return newToken != null; L105: } L106: L107: public boolean isDeleted() { L108: return isUpdated() && newToken.length() == 0; L109: }...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.5K bytes
  10. SuggestHelper.java

    L323: for (final ElevateWord elevateWord : list) { L324: addElevateWord(elevateWord.getSuggestWord(), elevateWord.getReading(), elevateWord.getLabelTypeValues(), L325: elevateWord.getPermissions(), elevateWord.getBoost(), apply); L326: } L327: refresh(); L328: } L329: L330: public void deleteAllElevateWord(final boolean apply) { L331: final List<ElevateWord> list = ComponentUtil.getComponent(ElevateWordBhv.class).selectList(cb -> { L332:...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
Back to top