- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for coat (0.04 sec)
-
run.sh
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.shSat Feb 10 03:25:34 UTC 2024 353 bytes -
before_script.sh
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)) L20: fi L21: if [[ ${error_count} -ge 60 ]] ; then L22: echo "Fess is not available." L23: cat ${temp_log_file} ./fess-*/logs/*.log L24: exit 1 L25: fi L26: sleep 1 L27:done L28: L29:pushd /tmp >/dev/null L30:git clone http...github.com/codelibs/fess/src/test/resources/bef...Sat Feb 10 03:25:34 UTC 2024 863 bytes -
fess
"$FESS_USER" -c "$FESS_USER" --pidfile "$PID_FILE" --exec $DAEMON -- $DAEMON_OPTS L180: return=$? L181: if [ $return -eq 0 ]; then L182: i=0 L183: timeout=10 L184: # Wait for the process to be properly started before exiting L185: until { kill -0 `cat "$PID_FILE"`; } >/dev/null 2>&1 L186: do L187: sleep 1 L188: i=$(($i + 1)) L189: if [ $i -gt $timeout ]; then L190: log_end_msg 1 L191: exit 1 L192: fi L193: done L194: fi L195: log_end_msg $return L196: exit $return L197: ;; L198:...github.com/codelibs/fess/src/packaging/deb/init...Sun Jan 15 06:32:15 UTC 2023 5.8K bytes