- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for errorName (0.09 sec)
-
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java
TermQueryBuilder builder = regTermQ("errorName", errorName); if (opLambda != null) { opLambda.callback(builder); } } public void setErrorName_NotEqual(String errorName) { setErrorName_NotTerm(errorName, null); } public void setErrorName_NotTerm(String errorName) { setErrorName_NotTerm(errorName, 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) -
src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java
} String errorName; final Throwable cause = t.getCause(); if (cause != null) { errorName = cause.getClass().getCanonicalName(); } else { errorName = t.getClass().getCanonicalName(); } final FailureUrl failureUrl = storeFailureUrl(crawlerContext, urlQueue, errorName, t); if (failureUrl != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 7.3K bytes - Viewed (0) -
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 -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jun 24 01:20:42 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FailureUrl.java
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) -
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");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
public Integer crudMode; @Required @Size(max = 1000) public String id; @Required 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)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FailureUrlDbm.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp
<label for="errorName" class="col-sm-2 text-sm-right col-form-label"><la:message key="labels.failure_url_search_error_name"/></label> <div class="col-sm-10"> <la:text styleId="errorName" property="errorName"
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsFailureUrlCA.java
public void setErrorName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) { setErrorName_Terms("errorName", opLambda, null); } public void setErrorName_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFailureUrlCA> aggsLambda) { setErrorName_Terms("errorName", opLambda, aggsLambda); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 46.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/SearchForm.java
/** * @author codelibs * @author Keiichi Watanabe */ public class SearchForm { public String url; public String errorCountMin; public String errorCountMax; public String errorName;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 880 bytes - Viewed (0)