Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for Stuart (0.14 sec)

  1. src/main/resources/fess_label.properties

    labels.wizard_button_register_again=Create again
    labels.wizard_button_register_next=Create and Next
    labels.wizard_start_crawling_title=Start Crawling
    labels.wizard_start_crawler_title=Crawler
    labels.wizard_start_crawling_desc=To click "Start Crawling" button, you can start a crawling now.
    labels.wizard_button_start_crawling=Start Crawling
    labels.wizard_button_finish=Skip
    labels.search_list_configuration=Search
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  2. src/main/resources/fess_label_en.properties

    labels.wizard_button_register_again=Create again
    labels.wizard_button_register_next=Create and Next
    labels.wizard_start_crawling_title=Start Crawling
    labels.wizard_start_crawler_title=Crawler
    labels.wizard_start_crawling_desc=To click "Start Crawling" button, you can start a crawling now.
    labels.wizard_button_start_crawling=Start Crawling
    labels.wizard_button_finish=Skip
    labels.search_list_configuration=Search
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    errors.login_error=Username or Password is not correct.
    errors.sso_login_error=Failed to process SSO login.
    errors.could_not_find_log_file=Could not find {0}.
    errors.failed_to_start_crawl_process=Failed to start a crawl process.
    errors.invalid_design_jsp_file_name=Invalid JSP file.
    errors.design_jsp_file_does_not_exist=JSP file does not exist.
    errors.design_file_name_is_not_found=The file name is not specified.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            MonitorThread mt = null;
            try {
                currentProcess = pb.start();
    
                // monitoring
                mt = new MonitorThread(currentProcess, executionTimeout);
                mt.start();
    
                final InputStreamThread it = new InputStreamThread(currentProcess.getInputStream(), commandOutputEncoding, maxOutputLine);
                it.start();
    
                currentProcess.waitFor();
                it.join(5000);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java

                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Name_Asc();
                cb.fetchFirst(fessConfig.getPageScheduledJobMaxFetchSizeAsInteger());
            });
        }
    
        public void start(final LaCron cron) {
            scheduledJobBhv.selectCursor(cb -> {
                cb.query().setAvailable_Equal(Constants.T);
                cb.query().addOrderBy_SortOrder_Asc();
                cb.query().addOrderBy_Name_Asc();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                pb.redirectErrorStream(true);
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Thumbnail Command: {}", cmdList);
                }
    
                final Process p = pb.start();
    
                final InputStreamThread ist = new InputStreamThread(p.getInputStream(), Charset.defaultCharset(), 0, s -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug(s);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ko.properties

    labels.wizard_crawling_config_path = 탐색 경로
    labels.wizard_button_register_again = 연속 작성
    labels.wizard_button_register_next = 작성
    labels.wizard_start_crawling_title = 크롤링 시작
    labels.wizard_start_crawler_title = 크롤러
    labels.wizard_start_crawling_desc = "탐색 시작"버튼을 클릭하여 이제 크롤링을 시작할 수 있습니다.
    labels.wizard_button_start_crawling = 크롤링 시작
    labels.wizard_button_finish = 건너 뛰기
    labels.search_list_configuration = 검색
    labels.search_list_button_delete = 삭제
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

            protected SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean) {
                int start = params.getStartPosition();
                int size = params.getPageSize();
                SearchResultBuilder builder = SearchResult.create();
                for (int i = start; i < start + size && i < allRecordCount; i++) {
                    Map<String, Object> doc = new HashMap<>();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/ScheduledJob.java

        }
    
        public boolean isRunning() {
            return ComponentUtil.getJobManager().findJobByUniqueOf(LaJobUnique.of(getId())).map(LaScheduledJob::isExecutingNow).orElse(false);
        }
    
        public void start() {
            ComponentUtil.getJobManager().findJobByUniqueOf(LaJobUnique.of(getId())).ifPresent(job -> {
                job.launchNow();
            }).orElse(() -> {
                throw new JobNotFoundException(this);
            });
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_fr.properties

    errors.login_error=Le nom d'utilisateur ou le mot de passe n'est pas correct.
    errors.sso_login_error=Échec du traitement de la connexion SSO.
    errors.could_not_find_log_file=Impossible de trouver {0}.
    errors.failed_to_start_crawl_process=Impossible de démarrer un processus d'exploration.
    errors.invalid_design_jsp_file_name=Fichier JSP invalide.
    errors.design_jsp_file_does_not_exist=Le fichier JSP n'existe pas.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
Back to top