Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for configurations (0.56 sec)

  1. test-site/activator

        "${app_commands[@]}" \
        "${residual_args[@]}"
        
      local exit_code=$?
      if is_cygwin; then
        stty icanon echo > /dev/null 2>&1
      fi
      exit $exit_code
    }
    
    # Loads a configuration file full of default command line options for this script.
    loadConfigFile() {
      cat "$1" | sed '/^\#/d'
    }
    
    ###  ------------------------------- ###
    ###  Start of customized settings    ###
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  2. src/main/assemblies/files/fess.in.sh

    # Disables explicit GC
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -XX:+DisableExplicitGC"
    
    # Ensure UTF-8 encoding by default (e.g. filenames)
    FESS_JAVA_OPTS="$FESS_JAVA_OPTS -Dfile.encoding=UTF-8"
    
    # Application Configuration
    if [ "x$APP_NAME" = "x" ]; then
      APP_NAME=fess
    fi
    if [ "x$SEARCH_ENGINE_HOME" = "x" ]; then
      SEARCH_ENGINE_HOME=$FESS_HOME/es
    fi
    if [ "x$FESS_TEMP_PATH" = "x" ]; then
      FESS_TEMP_PATH=$FESS_HOME/temp
    fi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. src/packaging/deb/init.d/fess

    MAX_OPEN_FILES=65535
    
    # Maximum amount of locked memory
    #MAX_LOCKED_MEMORY=
    
    # Fess log directory
    LOG_DIR=${packaging.fess.log.dir}
    
    # Fess data directory
    DATA_DIR=${packaging.fess.var.dir}
    
    # Fess configuration directory
    CONF_DIR=${packaging.fess.conf.dir}
    
    # Maximum number of VMA (Virtual Memory Areas) a process can own
    MAX_MAP_COUNT=262144
    
    # Path to the GC log file
    #FESS_GC_LOG_FILE=/var/log/fess/gc.log
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top