Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for code (0.02 sec)

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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.md
    Sat Oct 12 07:19:47 UTC 2024
      7.3K bytes
  6. 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: * &#064;Secured({ &quot;ROLE_USER&quot; }) 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
  7. PythonJob.java

    L16:package org.codelibs.fess.job; L17: L18:import static org.codelibs.core.stream.StreamUtil.stream; L19: L20:import java.io.File; L21:import java.util.ArrayList; L22:import java.util.List; L23:import java.util.Map; L24: L25:import org.apache.commons.lang3.RandomStringUtils; L26:import org.apache.logging.log4j.LogManager; L27:import org.apache.logging.log4j.Logger; L28:import org.codelibs.core.lang.StringUtil; L29:import org.codelibs.core.timer.TimeoutTask; L30:import org.codelibs.fess.Constants; L31:import...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      5.9K bytes
  8. 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
  9. 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
  10. CommandGenerator.java

    L25:import java.util.concurrent.atomic.AtomicBoolean; L26: L27:import org.apache.logging.log4j.LogManager; L28:import org.apache.logging.log4j.Logger; L29:import org.codelibs.core.concurrent.CommonPoolUtil; L30:import org.codelibs.core.io.CloseableUtil; L31:import org.codelibs.core.io.CopyUtil; L32:import org.codelibs.core.lang.StringUtil; L33:import org.codelibs.fess.mylasta.direction.FessConfig; L34:import org.codelibs.fess.util.ComponentUtil; L35:import org.codelibs.fess.util.InputStreamThread;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      9.6K bytes
Back to top