- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Code (0.03 sec)
-
OpenIdConnectAuthenticator.java
k(sesState)) { L104: session.removeAttribute(OIC_STATE); L105: final String code = request.getParameter("code"); L106: final String reqState = request.getParameter("state"); L107: if (logger.isDebugEnabled()) { L108: logger.debug("code: {}, state(request): {}, state(session): {}", code, reqState, sesState); L109: } L110: if (sesState.equals(reqState) && StringU...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 12.3K bytes -
GenerateThumbnailJob.java
currentProcess.waitFor(); L231: it.join(5000); L232: L233: final int exitValue = currentProcess.exitValue(); L234: L235: if (logger.isInfoEnabled()) { L236: logger.info("ThumbnailGenerator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput()); L237: } L238: if (exitValue != 0) { L239: final StringBuilder out = new StringBuilder(); L240: if (processTimeout) { L241: ...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
CommandGenerator.java
final int exitValue = p.exitValue(); L175: if (exitValue != 0) { L176: logger.warn("{} is failed (exit code:{}, timeout:{}): {}", getName(), exitValue, task.isExecuted(), commandList); L177: } L178: L179: if (logger.isDebugEnabled()) { L180: logger.debug("{} is finished with exit code {}.", getName(), exitValue); L181: } L182: } catch (final Exception e) { L183: logger.warn("Failed to generate a...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 9.6K bytes -
FessProp.java
L1823: propMap.put(VIRTUAL_HOST_HEADERS, hosts); L1824: } L1825: return hosts; L1826: } L1827: L1828: String getCrawlerFailureUrlStatusCodes(); L1829: L1830: default boolean isCrawlerFailureUrlStatusCodes(final int code) { L1831: int[] codes = (int[]) propMap.get(CRAWLER_FAILURE_URL_STATUS_CODES); L1832: if (codes == null) { L1833: codes = split(getCrawlerFailureUrlStatusCodes(), ",") L1834: .get(stream -> stream.filter...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 87.2K bytes -
FessConfig.java
L1417: String USER_CODE_REQUEST_PARAMETER = "user.code.request.parameter"; L1418: L1419: /** The key of the configuration. e.g. 20 */ L1420: String USER_CODE_MIN_LENGTH = "user.code.min.length"; L1421: L1422: /** The key of the configuration. e.g. 100 */ L1423: String USER_CODE_MAX_LENGTH = "user.code.max.length"; L1424: L1425: /** The key of the configuration. e.g. [a-zA-Z0-9_]+ */ L1426: String USER_CODE_PATTERN = "user.code.pattern"; L1427: L1428: /** The key of the configuration....github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
IndexUpdater.java
accessResultList.add(accessResult); L333: L334: if (accessResult.getHttpStatusCode() != 200) { L335: // invalid page L336: if (logger.isDebugEnabled()) { L337: logger.debug("Skipped. The response code is {}.", accessResult.getHttpStatusCode()); L338: } L339: continue; L340: } L341: L342: final long startTime = systemHelper.getCurrentTimeAsLong(); L343: final AccessResultData<?> accessResultData...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 24.2K bytes -
FessXpathTransformer.java
L623: L624: protected void parseTextContent(final Node node, final StringBuilder buf) { L625: if (node.hasChildNodes()) { L626: final NodeList nodeList = node.getChildNodes(); L627: for (int i = 0; i < nodeList.getLength(); i++) { L628: final Node childNode = nodeList.item(i); L629: parseTextContent(childNode, buf); L630: } L631: } else if (node.getNodeType() == Node.TEXT_NODE) { L632: final String value = ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 42.9K bytes -
SearchEngineClient.java
if (settings != null) { L314: settingsBuilder.putProperties(settings, s -> s); L315: } L316: }); L317: runner.build(config); L318: L319: final int port = runner.node().settings().getAsInt("http.port", 9200); L320: httpAddress = "http://localhost:" + port; L321: logger.warn("Embedded OpenSearch is running. This configuration is not recommended for production use."); L322: ...github.com/codelibs/fess/src/main/java/org/code...Sun Oct 20 02:08:03 UTC 2024 86.1K bytes -
PrunedTag.java
org.codelibs.fess.exception.FessSystemException; L28:import org.w3c.dom.Node; L29: L30:public class PrunedTag { L31: private final String tag; L32: private String id; L33: private String css; L34: private String attrName; L35: private String attrValue; L36: L37: public PrunedTag(final String tag) { L38: this.tag = tag; L39: } L40: L41: public boolean matches(final Node node) { L42: if (tag.equalsIgnoreCase(node.getNodeName())) { L43: if (attrName != null) { L44:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.8K bytes -
FessXpathTransformerTest.java
L722: String value = transformer.getSingleNodeValue(document, "//BODY", node -> node); L723: assertEquals("aaa", value); L724: L725: value = transformer.getSingleNodeValue(document, "//META[@name='keywords']/@content", node -> node); L726: assertEquals("bbb", value); L727: L728: value = transformer.getSingleNodeValue(document, "//META[@name='keywords']/@content|//BODY", node -> node); L729: assertEquals("bbb aaa", value); L730: } L731: L732: public...github.com/codelibs/fess/src/test/java/org/code...Thu Oct 24 13:01:38 UTC 2024 41.3K bytes