Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for errorCount (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java

        }
    
        public void setErrorCount_Equal(Integer errorCount) {
            setErrorCount_Term(errorCount, null);
        }
    
        public void setErrorCount_Equal(Integer errorCount, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setErrorCount_Term(errorCount, opLambda);
        }
    
        public void setErrorCount_Term(Integer errorCount) {
            setErrorCount_Term(errorCount, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        public String url;
    
        @Required
        public String threadName;
    
        public String errorName;
    
        public String errorLog;
    
        @Required
        @ValidateTypeFailure
        public String errorCount;
    
        @Required
        public String lastAccessTime;
    
        @Size(max = 1000)
        public String configId;
    
        public String getCurrentPageNumber() {
            return pageNumber;
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            this.configId = value;
        }
    
        public Integer getErrorCount() {
            checkSpecifiedProperty("errorCount");
            return errorCount;
        }
    
        public void setErrorCount(Integer value) {
            registerModifiedProperty("errorCount");
            this.errorCount = value;
        }
    
        public String getErrorLog() {
            checkSpecifiedProperty("errorLog");
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/exentity/FailureUrl.java

        }
    
        public void setVersionNo(final Long version) {
            asDocMeta().version(version);
        }
    
        @Override
        public String toString() {
            return "FailureUrl [configId=" + configId + ", errorCount=" + errorCount + ", errorLog=" + errorLog + ", errorName=" + errorName
                    + ", lastAccessTime=" + lastAccessTime + ", threadName=" + threadName + ", url=" + url + ", docMeta=" + docMeta + "]";
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java

        }
    
        public void setErrorCount_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            setErrorCount_Avg("errorCount", opLambda);
        }
    
        public void setErrorCount_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            AvgAggregationBuilder builder = regAvgA(name, "errorCount");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

                false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnErrorCount = cci("errorCount", "errorCount", null, null, Integer.class, "errorCount", null, false,
                false, false, "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

        private List<Integer> pageNumberList;
    
        private int pageSize;
    
        private int currentPageNumber;
    
        public String id;
    
        public String threadName;
    
        public String errorCount;
    
        public String lastAccessTime;
    
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals("name", fieldSortBuilderList.get(1).getFieldName());
        }
    
        public void test_getExcludedUrlList() {
            final AtomicInteger errorCount = new AtomicInteger(0);
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            final FailureUrlCB cb = new FailureUrlCB();
            ComponentUtil.register(new FailureUrlBhv() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

        }
        return buffer.readUtf8()
      }
    
      private fun String.mapExpectingErrors(): String {
        val buffer = Buffer()
        var errorCount = 0
        for (codePoint in codePoints()) {
          if (!table.map(codePoint, buffer)) errorCount++
        }
        assertThat(errorCount).isGreaterThan(0)
        return buffer.readUtf8()
      }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top