Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for Then (0.02 sec)

  1. fess

    bsys/$prog L63: L64:# backwards compatibility for old config sysconfig files, pre 0.90.1 L65:if [ -n $USER ] && [ -z $FESS_USER ] ; then L66: FESS_USER=$USER L67:fi L68: L69:checkJava() { L70: if [ -x "$JAVA_HOME/bin/java" ]; then L71: JAVA="$JAVA_HOME/bin/java" L72: else L73: JAVA=`which java` L74: fi L75: L76: if [ ! -x "$JAVA" ]; then L77: echo "Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME" L78: exit 1 L79:...
    github.com/codelibs/fess/src/packaging/rpm/init...
    Sun Jan 15 06:32:15 UTC 2023
      3.7K bytes
  2. before_script.sh

    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 https://g...
    github.com/codelibs/fess/src/test/resources/bef...
    Sat Feb 10 03:25:34 UTC 2024
      863 bytes
  3. CrawlerLogTests.java

    final List<Map<String, Object>> logList = readJobLog(NAME_PREFIX); L192: logger.info("logList: {}", logList); L193: for (Map<String, Object> elem : logList) { L194: deleteMethod("/api/admin/joblog/log/" + elem.get("id")).then().body("response.status", equalTo(0)); L195: } L196: L197: final List<Map<String, Object>> afterList = readJobLog(NAME_PREFIX); L198: assertEquals(0, afterList.size()); // check if logs are successfully deleted L199: } L200:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
  4. README.md

    L107: L108:Run antrun:run to download plugins into the plugins directory: L109: L110: $ mvn antrun:run L111: L112:### Run Fess L113: L114:Run or debug org.codelibs.fess.FessBoot on your IDE, and then access http://localhost:8080/ L115: L116:### Build Package L117: L118:Run the `package` goal and then the release file will be created in target/releases. L119: L120: $ mvn package L121: $ mvn rpm:rpm # .rpm package L122: $ mvn jdeb:jdeb # .deb package L123: L124:### Generate Source Code...
    github.com/codelibs/fess/README.md
    Sat Oct 12 07:19:47 UTC 2024
      7.3K bytes
  5. stopwords.txt

    is/common/src/java/org/apache/lucene/analysis/en/EnglishAnalyzer.java L2:a L3:an L4:and L5:are L6:as L7:at L8:be L9:but L10:by L11:for L12:if L13:in L14:into L15:is L16:it L17:no L18:not L19:of L20:on L21:or L22:such L23:that L24:the L25:their L26:then L27:there L28:these L29:they L30:this L31:to L32:was L33:will L34:with...
    github.com/codelibs/fess/src/main/resources/fes...
    Thu Jul 19 06:31:02 UTC 2018
      265 bytes
  6. codeql-analysis.yml

    - name: Checkout repository L33: uses: actions/checkout@v2 L34: with: L35: # We must fetch at least the immediate parents so that if this is L36: # a pull request then we can checkout the head. L37: fetch-depth: 2 L38: L39: # If this run was triggered by a pull request event, then checkout L40: # the head of the pull request instead of the merge commit. L41: - run: git checkout HEAD^2 L42: if: ${{ github.event_name == 'pull_request' }} L43: L44: # Initializes...
    github.com/codelibs/curl4j/.github/workflows/co...
    Fri Oct 02 13:24:14 UTC 2020
      2.5K bytes
  7. WebAuthTests.java

    requestBody.put("interval_time", 1000); L75: requestBody.put("boost", 100.0); L76: requestBody.put("available", true); L77: requestBody.put("sort_order", 1); L78: checkMethodBase(requestBody).put("/api/admin/webconfig/setting").then().body("response.created", equalTo(true)) L79: .body("response.status", equalTo(0)); L80: } L81: L82: String getWebConfigId() { L83: final Map<String, Object> searchBody = new HashMap<>(); L84: searchBody.put("name",...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
  8. manage.sh

    L1:#!/bin/bash L2: L3:cd `dirname $0` L4:. ./_project.sh L5: L6:FIRST_ARG=$1 L7:SECOND_ARG=$2 L8: L9:sh $DBFLUTE_HOME/etc/cmd/_df-manage.sh $MY_PROPERTIES_PATH $FIRST_ARG $SECOND_ARG L10:taskReturnCode=$? L11: L12:if [ $taskReturnCode -ne 0 ];then L13: exit $taskReturnCode; L14:fi...
    github.com/codelibs/fess/dbflute_fess/manage.sh
    Sat Jul 04 22:46:31 UTC 2015
      236 bytes
  9. 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
  10. FileAuthTests.java

    requestBody.put("interval_time", 1000); L74: requestBody.put("boost", 100.0); L75: requestBody.put("available", true); L76: requestBody.put("sort_order", 1); L77: checkMethodBase(requestBody).put("/api/admin/fileconfig/setting").then().body("response.created", equalTo(true)) L78: .body("response.status", equalTo(0)); L79: } L80: L81: String getFileConfigId() { L82: final Map<String, Object> searchBody = new HashMap<>(); L83: searchBody.put("name",...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      3.9K bytes
Back to top