Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setPort (0.04 sec)

  1. DataConfig.java

    smbAuth.setDomain(domain == null ? StringUtil.EMPTY : domain); L233: smbAuth.setServer(hostname); L234: if (StringUtil.isNotBlank(port)) { L235: try { L236: smbAuth.setPort(Integer.parseInt(port)); L237: } catch (final NumberFormatException e) { L238: logger.warn("Failed to parse {}", port, e); L239: } L240: } L241: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:15 UTC 2024
      18.5K bytes
  2. FessBoot.java

    java.io.tmpdir L83: final String tempPath = System.getProperty(FESS_TEMP_PATH); L84: if (tempPath != null) { L85: System.setProperty(JAVA_IO_TMPDIR, tempPath); L86: } L87: L88: final TomcatBoot tomcatBoot = new FessBoot(getPort(), getContextPath()) // L89: .useTldDetect(); // for JSP L90: final String varPath = System.getProperty(FESS_VAR_PATH); L91: if (varPath != null) { L92: tomcatBoot.atBaseDir(new File(varPath, "webapp").getAbsolutePath());...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      8K bytes
  3. 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
  4. 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
  5. 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
  6. SearchApiManager.java

    return createGeoInfo(request); L909: } L910: L911: @Override L912: public FacetInfo getFacetInfo() { L913: return createFacetInfo(request); L914: } L915: L916: @Override L917: public String getSort() { L918: return request.getParameter("sort"); L919: } L920: L921: @Override L922: public int getStartPosition() { L923: if (startPosition != -1) { L924: return startPosition; L925: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
Back to top