Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for logo (0.16 sec)

  1. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

                } catch (final Exception e) {
                    throw new FessSystemException("Failed to access log files.", e);
                }
            }
            return logFileItems;
        }
    
        public static boolean isLogFilename(final String name) {
            return name.endsWith(".log") || name.endsWith(".log.gz");
        }
    
        private HtmlResponse asIndexHtml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/log/bsentity/BsUserInfo.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.bsentity;
    
    import java.time.LocalDateTime;
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.log.allcommon.EsAbstractEntity;
    import org.codelibs.fess.es.log.bsentity.dbmeta.UserInfoDbm;
    
    /**
     * ${table.comment}
     * @author ESFlute (using FreeGen)
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/cbean/ca/SearchLogCA.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.cbean.ca;
    
    import org.codelibs.fess.es.log.cbean.ca.bs.BsSearchLogCA;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class SearchLogCA extends BsSearchLogCA {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 819 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/cbean/cq/FavoriteLogCQ.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.cbean.cq;
    
    import org.codelibs.fess.es.log.cbean.cq.bs.BsFavoriteLogCQ;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class FavoriteLogCQ extends BsFavoriteLogCQ {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 825 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/log/cbean/cq/SearchLogCQ.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.log.cbean.cq;
    
    import org.codelibs.fess.es.log.cbean.cq.bs.BsSearchLogCQ;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    public class SearchLogCQ extends BsSearchLogCQ {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 819 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.codelibs.fess.app.web.error.ErrorAction;
    import org.codelibs.fess.crawler.util.CharUtil;
    import org.codelibs.fess.es.log.exentity.ClickLog;
    import org.codelibs.fess.helper.PathMappingHelper;
    import org.codelibs.fess.helper.SearchLogHelper;
    import org.codelibs.fess.helper.ViewHelper;
    import org.codelibs.fess.util.ComponentUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

            } else {
                buf.append(ComponentUtil.getSystemHelper().getLogFilePath());
            }
            buf.append(File.separator);
            buf.append("gc-").append(getExecuteType()).append(".log");
            buf.append(":utctime,pid,tags:filecount=5,filesize=64m");
            return jvmOptions(buf.toString());
        }
    
        public ExecJob jvmOptions(final String... options) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/test/resources/before_script.sh

      fi
      if [[ ${error_count} -ge 60 ]] ; then
        echo "Fess is not available."
        cat ${temp_log_file} ./fess-*/logs/*.log
        exit 1
      fi
      sleep 1
    done
    
    pushd /tmp >/dev/null
    git clone https://github.com/codelibs/fess-testdata.git
    popd >/dev/null
    
    cat ${temp_log_file} ./fess-*/logs/*.log
    curl -s "http://localhost:9201/_cat/indices?v"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 863 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java

        // GET /api/admin/joblog/logs
        @Execute
        public JsonResponse<ApiResult> logs(final SearchBody body) {
            validateApi(body, messages -> {});
            final JobLogPager pager = copyBeanToNewBean(body, JobLogPager.class);
            final List<JobLog> list = jobLogService.getJobLogList(pager);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top