Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Detail (0.04 sec)

  1. run.sh

    L1:#!/bin/bash L2: L3:touch $(ls -d ./fess-*/logs)/fess-crawler.log L4:tail -f ./fess-*/logs/*.log & L5: L6:mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" L7:ret=$? L8: L9:if [ $ret != 0 ] ; then L10: for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do L11: cat $f L12: done L13:fi L14: L15:exit $ret...
    github.com/codelibs/fess/src/test/resources/run.sh
    Sat Feb 10 03:25:34 UTC 2024
      353 bytes
  2. before_script.sh

    L1:#!/bin/bash L2:set -xuo pipefail L3: 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...
    github.com/codelibs/fess/src/test/resources/bef...
    Sat Feb 10 03:25:34 UTC 2024
      863 bytes
Back to top