Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for calling (0.18 sec)

  1. src/main/resources/fess_indices/fess_config.crawling_info/crawling_info.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 246 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            dataCrawlingThreadStatusList.clear();
    
            // put cralwing info
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
    
            final long execTime = systemHelper.getCurrentTimeAsLong() - startTime;
            crawlingInfoHelper.putToInfoMap(Constants.DATA_CRAWLING_EXEC_TIME, Long.toString(execTime));
            if (logger.isInfoEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  3. src/main/assemblies/files/fess

        echo "   --prop=val"
        echo "   --prop val     set fess property (i.e. -Des.<prop>=<val>)"
    }
    
    # Parse any long getopt options and put them into properties before calling getopt below
    # Be dash compatible to make sure running under ubuntu works
    ARGV=""
    while [ $# -gt 0 ]
    do
        case $1 in
          --help) ARGV="$ARGV -h"; shift;;
          --*=*) properties="$properties -Dfess.${1#--}"
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_crawling_info_param.json

    {
      "fess_config.crawling_info_param" : {
        "aliases" : { },
        "mappings" : {
          "crawling_info_param" : {
            "properties" : {
              "crawlingInfoId" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "key" : {
                "type" : "keyword"
              },
              "value" : {
                "type" : "keyword"
              }
            }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 775 bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_crawling_info.json

    {
      "fess_config.crawling_info" : {
        "aliases" : { },
        "mappings" : {
          "crawling_info" : {
            "properties" : {
              "createdTime" : {
                "type" : "long"
              },
              "expiredTime" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              },
              "sessionId" : {
                "type" : "keyword"
              }
            }
          }
        },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 756 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsbhv/BsCrawlingInfoBhv.java

            return asEsIndexType();
        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.crawling_info";
        }
    
        @Override
        public String asEsIndexType() {
            return "crawling_info";
        }
    
        @Override
        public String asEsSearchType() {
            return "crawling_info";
        }
    
        @Override
        public CrawlingInfoDbm asDBMeta() {
            return CrawlingInfoDbm.getInstance();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_design_file_is_unsupported_type = "{errors.design_file_is_unsupported_type}";
    
        /** The key of the message: Failed to create a crawling config. */
        public static final String ERRORS_failed_to_create_crawling_config_at_wizard = "{errors.failed_to_create_crawling_config_at_wizard}";
    
        /** The key of the message: This feature is disabled. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfoParam.java

        @Override
        public CrawlingInfoParamDbm asDBMeta() {
            return CrawlingInfoParamDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "crawling_info_param";
        }
    
        // ===================================================================================
        //                                                                              Source
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_ja.properties

    success.update_crawler_params = パラメータを更新しました。
    success.delete_doc_from_index = インデックスから文書を削除するプロセスを開始しました。
    success.crawling_info_delete_all = セッションデータを削除しました。
    success.start_crawl_process = クロールプロセスを開始しました。
    success.upload_design_file = {0} を更新しました。
    success.update_design_jsp_file = {0} を更新しました。
    success.create_crawling_config_at_wizard = クロール設定 {0} を作成しました。
    success.failure_url_delete_all = 障害URLを削除しました。
    success.delete_file = {0} ファイルを削除しました。
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                    fileConfigService.store(fConfig);
                }
                return configName;
            } catch (final Exception e) {
                logger.warn("Failed to create crawling config: {}", form.crawlingConfigPath, e);
                throwValidationError(messages -> messages.addErrorsFailedToCreateCrawlingConfigAtWizard(GLOBAL),
                        () -> asHtml(path_AdminWizard_AdminWizardConfigJsp));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top