Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for errorCount (0.03 sec)

  1. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 57.5K bytes
    - Viewed (0)
  3. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 46.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        /**
         * The number of times this URL has failed.
         * This is a required field that tracks repeated failures for the same URL.
         */
        @Required
        @ValidateTypeFailure
        public String errorCount;
    
        /**
         * The timestamp of the last access attempt for this URL.
         * This is a required field indicating when the failure last occurred.
         */
        @Required
        public String lastAccessTime;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/kotlin/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 Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_config.failure_url/failure_url.json

          },
          "threadName": {
            "type": "keyword"
          },
          "errorName": {
            "type": "keyword"
          },
          "errorLog": {
            "type": "keyword"
          },
          "errorCount": {
            "type": "integer"
          },
          "lastAccessTime": {
            "type": "long"
          },
          "configId": {
            "type": "keyword"
          }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 417 bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl_details.jsp

                                            <tr>
                                                <th><la:message key="labels.failure_url_error_count"/></th>
                                                <td>${f:h(errorCount)}<la:hidden property="errorCount"/></td>
                                            </tr>
                                            <tr>
                                                <th><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.8K bytes
    - Viewed (0)
Back to top