- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 204 for Exceptions (0.1 sec)
-
littleAdjustmentMap.dfprop
- - - - - - - - - - - - - - - L62: # o classificationUndefinedHandlingType: (NotRequired - Default LOGGING) L63: # The handling type when undefined classification is found. L64: # L65: # EXCEPTION - throws exception when found L66: # LOGGING - logging only when found (exception if ReplaceSchema) L67: # ALLOWED - no action L68: # L69: #; classificationUndefinedHandlingType = LOGGING L70: # - - - - - - - - - -/ L71: L72: # /- - - - - - - - - - - - - - - - - -...github.com/codelibs/fess/dbflute_fess/dfprop/li...Sat Jul 25 06:04:16 UTC 2015 8.8K bytes -
AbstractDataStoreTest.java
L20: L21:import org.codelibs.fess.Constants; L22:import org.codelibs.fess.ds.callback.IndexUpdateCallback; L23:import org.codelibs.fess.entity.DataStoreParams; L24:import org.codelibs.fess.es.config.exentity.DataConfig; L25:import org.codelibs.fess.exception.JobProcessingException; L26:import org.codelibs.fess.script.AbstractScriptEngine; L27:import org.codelibs.fess.script.ScriptEngineFactory; L28:import org.codelibs.fess.unit.UnitFessTestCase; L29:import org.codelibs.fess.util.ComponentUtil; L30:import...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.1K bytes -
AdminLogAction.java
il; L33:import org.codelibs.fess.annotation.Secured; L34:import org.codelibs.fess.app.web.base.FessAdminAction; L35:import org.codelibs.fess.exception.FessSystemException; L36:import org.codelibs.fess.helper.SystemHelper; L37:import org.codelibs.fess.util.ComponentUtil; L38:import org.codelibs.fess.util.RenderDataUtil; L39:import org.lastaflute.di.exception.IORuntimeException; L40:import org.lastaflute.web.Execute; L41:import org.lastaflute.web.response.ActionResponse; L42:import org.lastaflute....github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.7K bytes -
ApiAdminUserAction.java
BAL); L73: }); L74: return null; L75: }); L76: try { L77: userService.store(entity); L78: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L79: } catch (final Exception e) { L80: logger.warn("Failed to process a request.", e); L81: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L82: } L83: return asJson(new...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 5.8K bytes -
ApiAdminRelatedqueryAction.java
-> {}); L82: body.crudMode = CrudMode.CREATE; L83: final RelatedQuery relatedQuery = getRelatedQuery(body).map(entity -> { L84: try { L85: relatedQueryService.store(entity); L86: } catch (final Exception e) { L87: logger.warn("Failed to process a request.", e); L88: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L89: } L90: return...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.6K bytes -
FessActionDefTest.java
void test_nonActionExtendsAction() throws Exception { L37: policeStoryOfJavaClassChase(new NonActionExtendsActionPolice()); L38: assertTrue(true); L39: } L40: L41: public void test_nonWebHasWebReference() throws Exception { L42: policeStoryOfJavaClassChase(new NonWebHasWebReferencePolice()); L43: assertTrue(true); L44: } L45: L46: public void test_webPackageNinjaReferencePolice() throws Exception { L47: policeStoryOfJavaClassChase(new WebPackageNinjaReferencePolice()...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes -
ScheduledJobBhv.java
} L44: return indexName; L45: } L46: L47: @Override L48: public OptionalEntity<ScheduledJob> selectByPK(final String id) { L49: Exception lastException = null; L50: for (int i = 0; i < 30; i++) { L51: try { L52: return super.selectByPK(id); L53: } catch (final Exception e) { L54: if (logger.isDebugEnabled()) { L55: logger.debug("Failed to select a job by {}", id, e); L56: } L57:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.2K bytes -
UpgradeUtil.java
org.codelibs.fess.util; L17: L18:import java.io.File; L19:import java.util.Map; L20:import java.util.function.Consumer; L21: L22:import org.apache.logging.log4j.LogManager; L23:import org.apache.logging.log4j.Logger; L24:import org.codelibs.core.exception.ResourceNotFoundRuntimeException; L25:import org.codelibs.core.io.FileUtil; L26:import org.codelibs.curl.CurlResponse; L27:import org.codelibs.fess.mylasta.direction.FessConfig; L28:import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.1K bytes -
CurlResponse.java
{ L95: return encoding; L96: } L97: L98: public void setEncoding(final String encoding) { L99: this.encoding = encoding; L100: } L101: L102: public void setContentException(final Exception e) { L103: contentException = e; L104: } L105: L106: public Exception getContentException() { L107: return contentException; L108: } L109: L110: public void setHeaders(final Map<String, List<String>> headers) { L111: if (headers != null) { L112: ...github.com/codelibs/curl4j/src/main/java/org/co...Mon Nov 14 21:05:19 UTC 2022 4K bytes -
ScriptExecutorJob.java
j.Logger; L20:import org.codelibs.core.timer.TimeoutTask; L21:import org.codelibs.fess.Constants; L22:import org.codelibs.fess.es.config.exentity.JobLog; L23:import org.codelibs.fess.es.config.exentity.ScheduledJob; L24:import org.codelibs.fess.exception.ScheduledJobException; L25:import org.codelibs.fess.helper.JobHelper; L26:import org.codelibs.fess.helper.SystemHelper; L27:import org.codelibs.fess.job.JobExecutor; L28:import org.codelibs.fess.util.ComponentUtil; L29:import org.lastaflute.job.JobManager;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.3K bytes