Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for CANCEL (0.15 sec)

  1. src/main/java/org/codelibs/fess/job/PythonJob.java

                resultBuf.append(e.getMessage()).append("\n");
            } finally {
                if (timeoutTask != null && !timeoutTask.isCanceled()) {
                    timeoutTask.cancel();
                }
            }
    
            return resultBuf.toString();
    
        }
    
        protected void executePython() {
            final List<String> cmdList = new ArrayList<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                logger.error("ThumbnailGenerator does not work correctly.", t);
                exitCode = Constants.EXIT_FAIL;
            } finally {
                if (systemMonitorTask != null) {
                    systemMonitorTask.cancel();
                }
                destroyContainer();
            }
    
            System.exit(exitCode);
        }
    
        private static void destroyContainer() {
            TimeoutManager.getInstance().stop();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/role/admin_role_details.jsp

                                                                data-dismiss="modal">
                                                            <la:message key="labels.crud_button_cancel"/>
                                                        </button>
                                                        <button type="submit" class="btn btn-outline-light"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_ja.properties

    labels.crawling_info_session_id=セッションID
    labels.crawling_info_created_time=作成
    labels.crawling_info_delete_all_link=すべて削除
    labels.crawling_info_delete_all_confirmation=本当にすべてを削除しますか?
    labels.crawling_info_delete_all_cancel=キャンセル
    labels.crawling_info_thread_dump=スレッドダンプ
    labels.crawling_info_CrawlerStartTime=クローラーの開始時間
    labels.crawling_info_CrawlerEndTime=クローラーの終了時間
    labels.crawling_info_CrawlerExecTime=クローラーの実行時間
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  5. src/main/resources/fess_label_ru.properties

    labels.crawling_info_created_time=Created
    labels.crawling_info_delete_all_link=Delete All
    labels.crawling_info_delete_all_confirmation=Вы действительно желаете все удалить?
    labels.crawling_info_delete_all_cancel=Cancel
    labels.crawling_info_CrawlerStartTime=Время старта сканера
    labels.crawling_info_CrawlerEndTime=Время остановки сканера
    labels.crawling_info_CrawlerExecTime=Время выполнения сканера
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/wizard/admin_wizard_config.jsp

                                    <button type="submit" class="btn btn-outline-secondary" name="index"
                                            value="<la:message key="labels.wizard_button_cancel"/>">
                                        <la:message key="labels.wizard_button_cancel"/>
                                    </button>
                                    <button type="submit" class="btn btn-primary"
                                            name="crawlingConfig"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                                                    data-dismiss="modal">
                                                                <la:message key="labels.crud_button_cancel"/>
                                                            </button>
                                                            <button type="submit" class="btn btn-outline-light"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

                    commandThread.interrupt();
                }
                if (systemMonitorTask != null) {
                    systemMonitorTask.cancel();
                }
                if (hotThreadMonitorTask != null) {
                    hotThreadMonitorTask.cancel();
                }
                destroyContainer();
            }
    
            if (exitCode != Constants.EXIT_OK) {
                System.exit(exitCode);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  9. src/main/resources/fess_label_de.properties

    labels.crawling_info_created_time=Erstellt
    labels.crawling_info_delete_all_link=Alle löschen
    labels.crawling_info_delete_all_confirmation=Möchten Sie wirklich alle löschen?
    labels.crawling_info_delete_all_cancel=Abbrechen
    labels.crawling_info_thread_dump=Thread-Dump
    labels.crawling_info_CrawlerStartTime=Crawler Startzeit
    labels.crawling_info_CrawlerEndTime=Crawler Endzeit
    labels.crawling_info_CrawlerExecTime=Crawler Ausführungsdauer
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                logger.error("Suggest creator does not work correctly.", t);
                exitCode = Constants.EXIT_FAIL;
            } finally {
                if (systemMonitorTask != null) {
                    systemMonitorTask.cancel();
                }
                destroyContainer();
            }
    
            logger.info("Finished SuggestCreator.");
            System.exit(exitCode);
        }
    
        private static void destroyContainer() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top