Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for setErrorName (0.46 sec)

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

            return this;
        }
    
        public void setErrorName_Equal(String errorName) {
            setErrorName_Term(errorName, null);
        }
    
        public void setErrorName_Equal(String errorName, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setErrorName_Term(errorName, opLambda);
        }
    
        public void setErrorName_Term(String errorName) {
            setErrorName_Term(errorName, null);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 57.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java

            }
        }
    
        public void setErrorName_Terms() {
            setErrorName_Terms(null);
        }
    
        public void setErrorName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setErrorName_Terms("errorName", opLambda, null);
        }
    
        public void setErrorName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFailureUrlCA> aggsLambda) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

                cb.query().setErrorCount_GreaterEqual(Integer.parseInt(failureUrlPager.errorCountMin));
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorName)) {
                cb.query().setErrorName_Wildcard(failureUrlPager.errorName);
            }
    
        }
    
        public void deleteByConfigId(final String configId) {
            failureUrlBhv.queryDelete(cb -> {
                cb.query().setConfigId_Equal(configId);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

            this.errorLog = value;
        }
    
        public String getErrorName() {
            checkSpecifiedProperty("errorName");
            return convertEmptyToNull(errorName);
        }
    
        public void setErrorName(String value) {
            registerModifiedProperty("errorName");
            this.errorName = value;
        }
    
        public Long getLastAccessTime() {
            checkSpecifiedProperty("lastAccessTime");
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFailureUrlBhv.java

                result.setErrorCount(DfTypeUtil.toInteger(source.get("errorCount")));
                result.setErrorLog(DfTypeUtil.toString(source.get("errorLog")));
                result.setErrorName(DfTypeUtil.toString(source.get("errorName")));
                result.setLastAccessTime(DfTypeUtil.toLong(source.get("lastAccessTime")));
                result.setThreadName(DfTypeUtil.toString(source.get("threadName")));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java

                    "errorLog");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getErrorName(), (et, vl) -> ((FailureUrl) et).setErrorName(DfTypeUtil.toString(vl)),
                    "errorName");
            setupEpg(_epgMap, et -> ((FailureUrl) et).getLastAccessTime(),
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                        failureUrl.setId("E" + i);
                        failureUrl.setUrl("http://test.com/" + i + ".html");
                        failureUrl.setErrorCount(i);
                        failureUrl.setErrorName("TestError" + i);
                        list.add(failureUrl);
                    }
                    return list;
                }
            }, FailureUrlBhv.class.getCanonicalName());
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
Back to top