Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getErrorCount (0.34 sec)

  1. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrResult.java

            this(errorCount, null);
        }
        public AntlrResult(int errorCount, Exception exception) {
            this.errorCount = errorCount;
            this.exception = exception;
        }
    
        public int getErrorCount() {
            return errorCount;
        }
    
        public Exception getException() {
            return exception;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            return convertEmptyToNull(configId);
        }
    
        public void setConfigId(String value) {
            registerModifiedProperty("configId");
            this.configId = value;
        }
    
        public Integer getErrorCount() {
            checkSpecifiedProperty("errorCount");
            return errorCount;
        }
    
        public void setErrorCount(Integer value) {
            registerModifiedProperty("errorCount");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

                if (crawlingConfig != null) {
                    cb.query().setConfigId_Equal(crawlingConfig.getConfigId());
                }
            }).map(entity -> {
                entity.setErrorCount(entity.getErrorCount() + 1);
                return entity;
            }).orElseGet(() -> {
                final FailureUrl entity = new FailureUrl();
                entity.setErrorCount(1);
                entity.setUrl(url);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

        {
            setupEpg(_epgMap, et -> ((FailureUrl) et).getConfigId(), (et, vl) -> ((FailureUrl) et).setConfigId(DfTypeUtil.toString(vl)),
                    "configId");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorCount(), (et, vl) -> ((FailureUrl) et).setErrorCount(DfTypeUtil.toInteger(vl)),
                    "errorCount");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrTask.java

            evaluate(result);
        }
    
        private void evaluate(AntlrResult result) {
            int errorCount = result.getErrorCount();
            if (errorCount < 0) {
                throw new AntlrSourceGenerationException("There were errors during grammar generation", result.getException());
            } else if (errorCount == 1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
Back to top