Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 34 for errorCount (0.15 sec)

  1. src/main/config/es/fess_config_failure_url.json

    {
      "fess_config.failure_url" : {
        "aliases" : { },
        "mappings" : {
          "failure_url" : {
            "properties" : {
              "configId" : {
                "type" : "keyword"
              },
              "errorCount" : {
                "type" : "integer"
              },
              "errorLog" : {
                "type" : "keyword"
              },
              "errorName" : {
                "type" : "keyword"
              },
              "lastAccessTime" : {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 963 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        public String id;
    
        /** Name of the thread that encountered the failure. */
        public String threadName;
    
        /** Number of errors encountered for this URL. */
        public String errorCount;
    
        /** Last time this URL was accessed. */
        public String lastAccessTime;
    
        /**
         * Clears all pager data and resets to default values.
         * This method resets pagination state and search filters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java

            try {
                final RESULT result = entityType.newInstance();
                result.setConfigId(DfTypeUtil.toString(source.get("configId")));
                result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount")));
                result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
                result.setErrorName(DfTypeUtil.toString(source.get("errorName")));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                        errorCount.incrementAndGet();
                    } finally {
                        latch.countDown();
                    }
                }).start();
            }
    
            latch.await();
    
            assertEquals("All threads should succeed", threadCount, successCount.get());
            assertEquals("No threads should have errors", 0, errorCount.get());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        // reset count
                        errorCount = 0;
                    } catch (final Exception e) {
                        if (errorCount > maxErrorCount) {
                            throw e;
                        }
                        errorCount++;
                        logger.warn("Failed to access data. Retry to access it {} times.", errorCount, e);
                    } finally {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

            final int threadCount = 10;
            final java.util.concurrent.CountDownLatch latch = new java.util.concurrent.CountDownLatch(threadCount);
            final java.util.concurrent.atomic.AtomicInteger errorCount = new java.util.concurrent.atomic.AtomicInteger(0);
    
            for (int i = 0; i < threadCount; i++) {
                final int threadId = i;
                new Thread(() -> {
                    try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFailureUrlCB.java

                doColumn("_id");
            }
    
            public void columnConfigId() {
                doColumn("configId");
            }
    
            public void columnErrorCount() {
                doColumn("errorCount");
            }
    
            public void columnErrorLog() {
                doColumn("errorLog");
            }
    
            public void columnErrorName() {
                doColumn("errorName");
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_en.properties

    labels.configParameter=Config Parameter
    labels.content=Content
    labels.csvFileEncoding=CSV Encoding
    labels.defaultLabelValue=Default Label
    labels.designFileName=File Name
    labels.incrementalCrawling=Check Last Modified
    labels.errorCount=Error Count
    labels.errorLog=Error Log
    labels.errorName=Error Name
    labels.expiredTime=Expired Time
    labels.expires=Expires
    labels.failureCountThreshold=Failure Count
    labels.fileConfigName=File Crawl Config Name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_zh_TW.properties

    labels.configId=配置ID
    labels.configParameter=配置參數
    labels.content=內容
    labels.csvFileEncoding=CSV編碼
    labels.defaultLabelValue=預設標籤
    labels.designFileName=檔案名稱
    labels.incrementalCrawling=檢查上次修改時間
    labels.errorCount=錯誤數
    labels.errorLog=錯誤日誌
    labels.errorName=錯誤名稱
    labels.expiredTime=有效期
    labels.expires=過期
    labels.failureCountThreshold=失敗次數
    labels.fileConfigName=檔案爬網配置名稱
    labels.fileName=檔案名稱
    labels.handlerName=處理程式名稱
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_de.properties

    labels.configParameter=Konfigurationsparameter
    labels.content=Inhalt
    labels.csvFileEncoding=CSV-Kodierung
    labels.defaultLabelValue=Standard-Label
    labels.designFileName=Dateiname
    labels.incrementalCrawling=Letzte Änderung prüfen
    labels.errorCount=Fehleranzahl
    labels.errorLog=Fehlerprotokoll
    labels.errorName=Fehlername
    labels.expiredTime=Ablaufzeit
    labels.expires=Läuft ab
    labels.failureCountThreshold=Fehleranzahlschwelle
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
Back to top