Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Schile (0.03 sec)

  1. fess

    JAVA system property L11:# --prop=val L12:# --prop val set fess property (i.e. -Des.<prop>=<val>) L13: L14:CDPATH="" L15:SCRIPT="$0" L16: L17:# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path. L18:while [ -h "$SCRIPT" ] ; do L19: ls=`ls -ld "$SCRIPT"` L20: # Drop everything prior to -> L21: link=`expr "$ls" : '.*-> \(.*\)$'` L22: if expr "$link" : '/.*' > /dev/null; then L23: SCRIPT="$link" L24: else L25: SCRIPT=`dirname "$SCRIPT"`/"$link"...
    github.com/codelibs/fess/src/main/assemblies/fi...
    Sun Jan 15 06:32:15 UTC 2023
      5.4K bytes
  2. before_script.sh

    L4:temp_log_file=/tmp/fess-build.$$ L5:unzip target/releases/fess-*.zip > ${temp_log_file} 2>&1 L6:tail ${temp_log_file} L7: L8:./fess-*/bin/fess > ${temp_log_file} 2>&1 & L9: L10:temp_json_file=/tmp/fess-log.$$ L11:touch ${temp_json_file} L12:error_count=0 L13:while true ; do L14: status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health") L15: cat ${temp_json_file} L16: if [[ x"${status}" = x200 ]] ; then L17: break L18: else L19: error_count=$((error_count + 1))...
    github.com/codelibs/fess/src/test/resources/bef...
    Sat Feb 10 03:25:34 UTC 2024
      863 bytes
Back to top