- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 13 for Lhoest (0.12 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 -
FessEnv.java
L41: /** The key of the configuration. e.g. true */ L42: String MAIL_SEND_MOCK = "mail.send.mock"; L43: L44: /** The key of the configuration. e.g. localhost:25 */ L45: String MAIL_SMTP_SERVER_MAIN_HOST_AND_PORT = "mail.smtp.server.main.host.and.port"; L46: L47: /** The key of the configuration. e.g. [Test] */ L48: String MAIL_SUBJECT_TEST_PREFIX = "mail.subject.test.prefix"; L49: L50: /** The key of the configuration. e.g. root@localhost */ L51: String MAIL_RETURN_PATH = "mail.return.path";...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.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 -
AbstractDataStore.java
.getIndexFieldRole(), roleTypeList); L105: // mimetype L106: defaultDataMap.put(fessConfig.getIndexFieldMimetype(), mimeType); L107: // title L108: // content L109: // cache L110: // digest L111: // host L112: // site L113: // url L114: // anchor L115: // content_length L116: // last_modified L117: // id L118: // virtual_host L119: defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(), L120:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 6.3K 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 -
SearchLogService.java
toNumberString(e.getQueryPageSize())); L538: 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...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 28.4K bytes -
FessLabels.java
Duplicate Name */ L1365: public static final String LABELS_duplicate_name = "{labels.duplicate_name}"; L1366: L1367: /** The key of the message: Duplicate Host */ L1368: public static final String LABELS_duplicate_host_configuration = "{labels.duplicate_host_configuration}"; L1369: L1370: /** The key of the message: Duplicate Host */ L1371: public static final String LABELS_duplicate_host_title_details = "{labels.duplicate_host_title_details}"; L1372: L1373: /** The key of the message:...github.com/codelibs/fess/src/main/java/org/code...Fri Mar 22 11:58:34 UTC 2024 146.4K bytes -
VirtualHostHelper.java
VirtualHosts(); L52: return LaRequestUtil.getOptionalRequest().map(req -> { L53: for (final Tuple3<String, String, String> host : vHosts) { L54: final String headerValue = req.getHeader(host.getValue1()); L55: if (host.getValue2().equalsIgnoreCase(headerValue)) { L56: return func.apply(host.getValue3()); L57: } L58: } L59: return defaultValue; L60: }).orElse(defaultValue); L61: } L62:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.7K 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