- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for Lhoest (0.1 sec)
-
FessBoot.java
== 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 -
FessXpathTransformer.java
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 false; L331: } L332: return true;...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 42.9K bytes -
FessConfig.java
; L2544: L2545: /** L2546: * Get the value for the key 'virtual.host.headers'. <br> L2547: * The value is, e.g. <br> L2548: * comment: Virtual Host: Host:fess.codelibs.org=fess L2549: * @return The value of found property. (NotNull: if not found, exception but basically no way) L2550: */ L2551: String getVirtualHostHeaders(); L2552: L2553: /** L2554: * Get the value for the key 'virtual.host.headers' as {@link Integer}. <br> L2555: * The value is, e.g. <br>...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
SearchEngineClient.java
public void usePipeline() { L255: usePipeline = true; L256: } L257: L258: protected InetAddress getInetAddressByName(final String host) { L259: try { L260: return InetAddress.getByName(host); L261: } catch (final UnknownHostException e) { L262: throw new FessSystemException("Failed to resolve the hostname: " + host, e); L263: } L264: } L265: L266: @PostConstruct L267: public void open() { L268: if (logger.isDebugEnabled()) { L269:...github.com/codelibs/fess/src/main/java/org/code...Sun Oct 20 02:08:03 UTC 2024 86.1K bytes -
AbstractFessFileTransformer.java
putResultDataBody(dataMap, titleField, decodeUrlAsName(url, url.startsWith("file:"))); L252: } else { L253: putResultDataBody(dataMap, titleField, fileName); L254: } L255: } L256: // host L257: putResultDataBody(dataMap, fessConfig.getIndexFieldHost(), getHostOnFile(url)); L258: // site L259: putResultDataBody(dataMap, fessConfig.getIndexFieldSite(), getSiteOnFile(url, urlEncoding)); L260: // filename L261:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 23.6K bytes -
Crawler.java
ptList.add(Constants.PROCESS_TYPE_CRAWLING); L486: ptList.add(Constants.PROCESS_TYPE_BOTH); L487: pathMappingHelper.setPathMappingList(options.sessionId, pathMappingService.getPathMappingList(ptList)); L488: L489: // duplicate host L490: try { L491: final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper(); L492: duplicateHostHelper.init(); L493: } catch (final Exception e) { L494: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24K bytes -
DataConfig.java
(Constants.SAMBA.equals(scheme)) { L220: final String domain = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".domain"); L221: final String hostname = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".host"); L222: final String port = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".port"); L223: final String username = paramMap.get(CRAWLER_FILE_AUTH + "." + fileAuthName + ".username"); L224: ...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 18.5K bytes -
Constants.java
L119: public static final String DEFAULT_LABEL_VALUE_PROPERTY = "label.value"; L120: L121: public static final String DEFAULT_SORT_VALUE_PROPERTY = "sort.value"; L122: L123: public static final String VIRTUAL_HOST_VALUE_PROPERTY = "virtual.host.value"; L124: L125: public static final String LOGIN_REQUIRED_PROPERTY = "login.required"; L126: L127: public static final String RESULT_COLLAPSED_PROPERTY = "result.collapsed"; L128: L129: public static final String LOGIN_LINK_ENALBED_PROPERTY...github.com/codelibs/fess/src/main/java/org/code...Thu Aug 22 12:43:18 UTC 2024 16.6K bytes