- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 66 for Code (0.02 sec)
-
codeql.yml
'java-kotlin' to analyze code written in Java, Kotlin or both L54: # Use 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both L55: # To learn more about changing the languages that are analyzed or customizing the build mode for your analysis, L56: # see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning. L57: # If you are analyzing a compiled language, you...github.com/codelibs/fess/.github/workflows/code...Wed Aug 14 23:51:19 UTC 2024 4.4K bytes -
FessFunctionsTest.java
te(date)); L61: } L62: L63: public void test_formatCode() { L64: String code; L65: String value; L66: L67: code = ""; L68: value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code); L69: assertEquals("<pre class=\"prettyprint\"></pre>", value); L70: L71: code = "aaa"; L72: value = FessFunctions.formatCode("L", "prettyprint", "text/plain", code); L73: assertEquals("<pre class=\"prettyprint\">aaa</pre>", value); L74: L75:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.9K bytes -
web.xml
========== --> L158: <error-page> L159: <error-code>400</error-code> L160: <location>/WEB-INF/view/error/redirect.jsp?type=badRequest</location> L161: </error-page> L162: <error-page> L163: <error-code>401</error-code> L164: <location>/WEB-INF/view/error/redirect.jsp?type=badAuth</location> L165: </error-page> L166: <error-page> L167: <error-code>403</error-code> L168: <location>/WEB-INF/view/error/redirect.jsp?type=logOut</location> L169: </error-page>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Mon Jul 29 02:54:01 UTC 2024 7.1K bytes -
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 -
LanguageHelper.java
langField = fessConfig.getIndexFieldLang(); L145: final String code = Arrays.stream(langFields).map(s -> "ctx._source['" + s + "_'+ctx._source." + langField + "]=ctx._source." + s) L146: .collect(Collectors.joining(";")); L147: if (logger.isDebugEnabled()) { L148: logger.debug("reindex script: {}", code); L149: } L150: return "if(ctx._source." + langField + "!=null){" + code + "}"; L151: } L152: L153:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.5K bytes -
SearchLogHelper.java
searchLog.getUserInfo().ifPresent(userInfo -> { L282: final String code = userInfo.getId(); L283: final UserInfo oldUserInfo = userInfoMap.get(code); L284: if (oldUserInfo != null) { L285: userInfo.setCreatedAt(oldUserInfo.getCreatedAt()); L286: } L287: userInfoMap.put(code, userInfo); L288: }); L289: searchLogList.add(searchLog); L290: ...github.com/codelibs/fess/src/main/java/org/code...Mon Jul 22 02:07:37 UTC 2024 21.7K bytes -
Secured.java
L21:import java.lang.annotation.Retention; L22:import java.lang.annotation.RetentionPolicy; L23:import java.lang.annotation.Target; L24: L25:/** L26: * Java 5 annotation for describing service layer security attributes. L27: * L28: * <p> L29: * The <code>Secured</code> annotation is used to define a list of security configuration L30: * attributes for business methods. L31: * <p> L32: * For example: L33: * L34: * <pre> L35: * @Secured({ "ROLE_USER" }) L36: * public void create(Contact contact);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.8K bytes -
README.md
[NDJSON](https://github.com/codelibs/fess-ingest-ndjson) L88: L89:## Script L90: L91: - [Groovy](https://github.com/codelibs/fess-script-groovy) L92: - [OGNL](https://github.com/codelibs/fess-script-ognl) L93: L94:## Development Information L95: L96:### Get Source Code L97: L98:1. Clone Fess's repository: L99: ``` L100: $ cd ~/workspace L101: $ git clone https://github.com/codelibs/fess.git L102: ``` L103: L104:2. Import the cloned repository as a [Maven](https://maven.apache.org/) project on [Ec...github.com/codelibs/fess/README.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
redirect.jsp
L10: redirectPage.append("/error/systemerror/"); L11: response.sendRedirect(redirectPage.toString()); L12: } else { L13: response.sendError(statusCode); L14: } L15:} else if("logOut".equals(type)) { L16: redirectPage.append("/login/?type=logout&code=" + statusCode); L17: response.sendRedirect(redirectPage.toString()); L18:} else if("badRequest".equals(type)) { L19: redirectPage.append("/error/badrequest/"); L20: response.sendRedirect(redirectPage.toString()); L21:} else if(!"badAuth".equals(type))...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 1.2K bytes -
redirect.jsp
L10: redirectPage.append("/error/systemerror/"); L11: response.sendRedirect(redirectPage.toString()); L12: } else { L13: response.sendError(statusCode); L14: } L15:} else if("logOut".equals(type)) { L16: redirectPage.append("/login/?type=logout&code=" + statusCode); L17: response.sendRedirect(redirectPage.toString()); L18:} else if("badRequest".equals(type)) { L19: redirectPage.append("/error/badrequest/"); L20: response.sendRedirect(redirectPage.toString()); L21:} else if(!"badAuth".equals(type))...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 1.2K bytes