Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Dunning (0.18 sec)

  1. src/main/java/org/codelibs/fess/util/InputStreamThread.java

            br = new BufferedReader(new InputStreamReader(is, charset));
        }
    
        @Override
        public void run() {
            boolean running = true;
            while (running) {
                try {
                    final String line = br.readLine();
                    if (line == null) {
                        running = false;
                    } else {
                        if (logger.isDebugEnabled()) {
                            logger.debug(line);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler.jsp

                                                        <td class="text-center"><c:if test="${data.running}">
    																	<span class="badge bg-success"><la:message
                                                                                key="labels.scheduledjob_running"/></span>
                                                        </c:if> <c:if test="${!data.running}">
                                                            <c:if test="${data.available}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 6.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

                assertTrue(scheduler.containsKey("running"));
                isRunning = (Boolean) scheduler.get("running");
            }
            if (300 <= count) {
                logger.info("Time out: Failed to start crawler)");
                fail(); // Time Out
            }
    
            logger.info("Crawler is running");
            count = 0;
            isRunning = true;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/EditBody.java

     */
    package org.codelibs.fess.app.web.api.admin.scheduler;
    
    import org.codelibs.fess.app.web.admin.scheduler.EditForm;
    
    public class EditBody extends EditForm {
        public Boolean running;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 808 bytes
    - Viewed (0)
  5. src/packaging/rpm/init.d/fess

        fi
        if [ -n "$pidfile" ] && [ ! -e "$pidfile" ]; then
            touch "$pidfile" && chown "$FESS_USER":"$FESS_GROUP" "$pidfile"
        fi
    
        echo -n $"Starting $prog: "
        # if not running, start it up here, usually something like "daemon $exec"
        daemon --user $FESS_USER --pidfile="$pidfile" $exec -d
        retval=$?
        pid=`ps aux | grep "^${FESS_USER}" | grep "${PROC_NAME}" | sed 's/[\t ]\+/\t/g' | cut -f2`
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/exec/Crawler.java

        private static final String WEB_FS_CRAWLING_PROCESS = "WebFsCrawler";
    
        private static final String DATA_CRAWLING_PROCESS = "DataStoreCrawler";
    
        private static AtomicBoolean running = new AtomicBoolean(false);
    
        private static Queue<String> errors = new ConcurrentLinkedQueue<>();
    
        @Resource
        protected SearchEngineClient searchEngineClient;
    
        @Resource
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  7. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                            <c:when test="${data.jobStatus == 'running'}">
    																		<span class="badge bg-success"><la:message
                                                                                    key="labels.joblog_status_running"/></span>
                                                            </c:when>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 11.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        protected EditBody createEditBody(final ScheduledJob entity) {
            final EditBody body = new EditBody();
            copyBeanToBean(entity, body, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
            body.running = entity.isRunning();
            return body;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_message.properties

    errors.invalid_str_is_included="{1}" in "{0}" is invalid.
    errors.blank_password=Password is required.
    errors.invalid_confirm_password=Confirm Password does not match.
    errors.cannot_delete_doc_because_of_running=Crawler is running. The document cannot be deleted.
    errors.failed_to_delete_doc_in_admin=Failed to delete document.
    errors.failed_to_send_testmail=Failed to send the test mail.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final String SEARCHER = "searcher";
    
        public static final String ON = "on";
    
        public static final String READY = "ready";
    
        public static final String RUNNING = "running";
    
        public static final String DONE = "done";
    
        public static final String OK = "ok";
    
        public static final String FAIL = "fail";
    
        public static final String STOP = "stop";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
Back to top