Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,817 for fess (0.18 sec)

  1. src/packaging/rpm/init.d/fess

    PROC_NAME=org.codelibs.fess.FessBoot
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_HOME="${packaging.fess.home.dir}"
    PID_DIR="${packaging.fess.pid.dir}"
    
    # Source the default env file
    FESS_ENV_FILE="${packaging.env.file}"
    if [ -f "$FESS_ENV_FILE" ]; then
        . "$FESS_ENV_FILE"
    fi
    
    exec="$FESS_HOME/bin/fess"
    prog="fess"
    pidfile="$PID_DIR/${prog}.pid"
    
    export FESS_TEMP_PATH
    export FESS_LOG_PATH
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  2. src/main/assemblies/files/fess

        export HOSTNAME=`hostname -s`
    
        cd "$FESS_HOME"
    
        if [ "x$daemonized" = "x" ]; then
            fess_parms="$fess_parms -Dfess.foreground=yes"
            exec "$JAVA" $FESS_JAVA_OPTS $fess_parms -Dfess.es.dir="$SEARCH_ENGINE_HOME" -cp "$FESS_CLASSPATH" $props \
                    org.codelibs.fess.FessBoot $FESS_OPTS > /dev/null
        else
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess.json

            },
            "korean_tokenizer": {
                "type": "fess_korean_tokenizer",
                "decompound_mode": "mixed",
                "user_dict_path": "${fess.dictionary.path}ko/nori.txt"
            },
            "simplified_chinese_tokenizer": {
                "type": "fess_simplified_chinese_tokenizer"
            },
            "vietnamese_tokenizer": {
                "type": "fess_vietnamese_tokenizer",
                "sentence_detector": false,
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  4. src/packaging/common/systemd/fess.service

    [Unit]
    Description=Fess
    Documentation=http://fess.codelibs.org/
    Wants=network-online.target
    After=network-online.target opensearch.service
    Requires=opensearch.service
    
    [Service]
    Environment=FESS_HOME=${packaging.fess.home.dir}
    EnvironmentFile=-${packaging.env.file}
    
    User=${packaging.fess.user}
    Group=${packaging.fess.group}
    
    ExecStart=${packaging.fess.bin.dir}/fess
    
    # Connects standard output to /dev/null
    StandardOutput=null
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/main/assemblies/files/fess.bat

    	)
    	
        IF "x!params!" NEQ "x" (
    		GOTO loop
    	)
    )
    
    SET HOSTNAME=%COMPUTERNAME%
    
    CALL "%~dp0fess.in.bat"
    IF ERRORLEVEL 1 (
    	IF NOT DEFINED nopauseonerror (
    		PAUSE
    	)
    	EXIT /B %ERRORLEVEL%
    )
    
    "%JAVA_HOME%\bin\java" %FESS_JAVA_OPTS% !newparams! -cp "%FESS_CLASSPATH%" "org.codelibs.fess.FessBoot"
    
    Batch File
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun May 24 22:24:52 GMT 2020
    - 796 bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_cloud/fess.json

    {
      "settings": {
        "index": {
          "codec": "${fess.index.codec}",
          "refresh_interval": "1s",
          "number_of_shards": "${fess.index.number_of_shards}",
          "number_of_replicas": 0,
          "auto_expand_replicas": "${fess.index.auto_expand_replicas}"
        },
        "analysis": {
          "char_filter": {
            "mapping_fa_filter": {
              "type": "mapping",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Feb 27 09:26:16 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/_aws/fess.json

    {
      "settings": {
        "index": {
          "codec": "${fess.index.codec}",
          "refresh_interval": "1s",
          "number_of_shards": "${fess.index.number_of_shards}",
          "number_of_replicas": 0,
          "auto_expand_replicas": "${fess.index.auto_expand_replicas}"
        },
        "analysis": {
          "char_filter": {
            "mapping_fa_filter": {
              "type": "mapping",
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 23 12:38:28 GMT 2021
    - 117.3K bytes
    - Viewed (0)
  8. src/packaging/deb/init.d/fess

    PID_FILE="$PID_DIR/$NAME.pid"
    DAEMON=$FESS_HOME/bin/fess
    DAEMON_OPTS="-d -p $PID_FILE --default.path.conf=$CONF_DIR --default.path.home=$FESS_HOME --default.path.logs=$LOG_DIR --default.path.data=$DATA_DIR"
    
    export FESS_HEAP_SIZE
    export FESS_HEAP_NEWSIZE
    export FESS_DIRECT_SIZE
    export FESS_JAVA_OPTS
    export FESS_TEMP_PATH
    export FESS_LOG_PATH
    export FESS_CONF_PATH
    export FESS_VAR_PATH
    export FESS_DICTIONARY_PATH
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/packaging/common/env/fess

    ################################
    # Fess
    ################################
    
    # Fess Path
    FESS_TEMP_PATH=${packaging.fess.temp.dir}
    FESS_LOG_PATH=${packaging.fess.log.dir}
    FESS_CONF_PATH=${packaging.fess.conf.dir}
    FESS_VAR_PATH=${packaging.fess.var.dir}
    
    FESS_DICTIONARY_PATH=/var/lib/opensearch/config/
    
    # Port
    FESS_PORT=8080
    
    # Heap Memory
    FESS_HEAP_SIZE=512m
    
    # Elasticsearch Path
    SEARCH_ENGINE_HOME=/usr/share/opensearch/
    
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 489 bytes
    - Viewed (0)
  10. src/packaging/deb/lintian/fess

    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-independent-package-contains-binary-or-object
    # Not stripping external libraries
    fess binary: unstripped-binary-or-object
    # Ignore arch dependent warnings, we chose the right libs on start
    fess binary: arch-dependent-file-in-usr-share
    # Please check our changelog at https://github.com/codelibs/fess
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 439 bytes
    - Viewed (0)
Back to top