Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for code (0.05 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. 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
  3. 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
  4. 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
  5. pom.xml

    <headerDefinitions> L114: <headerDefinition>https://www.codelibs.org/assets/license/header-definition-2.xml</headerDefinition> L115: </headerDefinitions> L116: </configuration> L117: </plugin> L118: <plugin> L119: <groupId>net.revelc.code.formatter</groupId> L120: <artifactId>formatter-maven-plugin</artifactId> L121: <version>2.21.0</version> L122: <executions> L123: <execution> L124: <goals> L125: <goal>format</goal> L126: </goals> L127: </execution>...
    github.com/codelibs/curl4j/pom.xml
    Thu Oct 03 17:04:48 UTC 2024
      4K bytes
  6. README.md

    L94:## Localisation L95: L96:### Japonais L97: L98: - [Site Web](https://fess.codelibs.org/ja/) L99: L100:### Coréen L101: L102: - [Forum](https://github.com/nocode2k/fess-kr-forum) L103: L104:## Informations de Développement L105: L106:### Récupérer le Code Source L107: L108:1. Clonez le dépôt Fess : L109: ``` L110: $ cd ~/workspace L111: $ git clone https://github.com/codelibs/fess.git L112: ``` L113: L114:2. Importez le dépôt cloné en tant que projet [Maven](https://maven.apache.org/)...
    github.com/codelibs/fess/docs/fr/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.9K bytes
  7. PrunedTag.java

    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: final Node attr = node.getAttributes().getNamedItem(attrName); L45: if (attr == null || !attrValue.equals(attr.getNodeValue())) { L46: return false; L47: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.8K bytes
  8. OpenIdConnectCredential.java

    governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.app.web.base.login; L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.util.HashSet; L22:import java.util.Map; L23:import java.util.Set; L24: L25:import org.codelibs.core.lang.StringUtil; L26:import org.codelibs.fess.entity.FessUser; L27:import org.codelibs.fess.helper.SystemHelper; L28:import org.codelibs.fess.util.ComponentUtil;...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      4.2K bytes
  9. ExecJob.java

    L26:import java.util.regex.Pattern; L27: L28:import org.apache.commons.io.FileUtils; L29:import org.apache.logging.log4j.LogManager; L30:import org.apache.logging.log4j.Logger; L31:import org.codelibs.core.lang.StringUtil; L32:import org.codelibs.core.timer.TimeoutManager; L33:import org.codelibs.core.timer.TimeoutTask; L34:import org.codelibs.fess.Constants; L35:import org.codelibs.fess.es.config.exentity.ScheduledJob; L36:import org.codelibs.fess.util.ComponentUtil; L37:import org.lastaflute.di....
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      7.7K bytes
  10. plugin.xml

    </patternset> L62: <cutdirsmapper dirs="1" /> L63: </unzip> L64: </target> L65: L66: <target name="remove.jars" if="with.fess"> L67: <delete> L68: <fileset dir="${plugins.dir}"> L69: <include name="configsync/commons-codec-*" /> L70: <include name="dataformat/commons-codec-*" /> L71: <include name="dataformat/commons-collections4-*" /> L72: <include name="dataformat/commons-compress-*" /> L73: <include name="dataformat/commons-math3-*" /> L74: <include name="dataformat/curvesapi-*"...
    github.com/codelibs/fess/plugin.xml
    Fri Oct 25 23:33:43 UTC 2024
      3.5K bytes
Back to top