- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 336 for Exceptions (0.1 sec)
-
FessConfig.java
(NotNull: if not found, exception but basically no way) L2420: */ L2421: String getApiJsonResponseExceptionIncluded(); L2422: L2423: /** L2424: * Is the property for the key 'api.json.response.exception.included' true? <br> L2425: * The value is, e.g. false <br> L2426: * @return The determination, true or false. (if not found, exception but basically no way) L2427: */ L2428: boolean isApiJsonResponseExceptionIncluded(); L2429: L2430: /** L2431: * Get the value for the...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
SearchApiManager.java
org.codelibs.fess.entity.SearchRequestParams.SearchRequestType; L53:import org.codelibs.fess.es.client.SearchEngineClient; L54:import org.codelibs.fess.exception.InvalidAccessTokenException; L55:import org.codelibs.fess.exception.InvalidQueryException; L56:import org.codelibs.fess.exception.ResultOffsetExceededException; L57:import org.codelibs.fess.exception.WebApiException; L58:import org.codelibs.fess.helper.LabelTypeHelper; L59:import org.codelibs.fess.helper.PopularWordHelper; L60:import org.codel...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 50.3K 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 -
FessEnv.java
L56: * @return The value of found property. (NotNull: if not found, exception) L57: * @throws ConfigPropertyNotFoundException When the property is not found. L58: */ L59: String get(String propertyKey); L60: L61: /** L62: * Is the property true? L63: * @param propertyKey The key of the property which is boolean type. (NotNull) L64: * @return The determination, true or false. (if not found, exception) L65: * @throws ConfigPropertyNotFoundException When the property...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K 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 -
AdminPluginAction.java
il; L38:import org.codelibs.fess.util.RenderDataUtil; L39:import org.lastaflute.web.Execute; L40:import org.lastaflute.web.response.HtmlResponse; L41:import org.lastaflute.web.ruts.process.ActionRuntime; L42:import org.lastaflute.web.validation.exception.ValidationErrorException; L43: L44:public class AdminPluginAction extends FessAdminAction { L45: L46: public static final String ROLE = "admin-plugin"; L47: L48: private static final Logger logger = LogManager.getLogger(AdminPluginAction.class);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
AdminUpgradeAction.java
upgradeFrom14_16(); L230: upgradeFromAll(); L231: L232: saveInfo(messages -> messages.addSuccessStartedDataUpdate(GLOBAL)); L233: L234: systemHelper.reloadConfiguration(); L235: } catch (final Exception e) { L236: logger.warn("Failed to upgrade data.", e); L237: saveError(messages -> messages.addErrorsFailedToUpgradeFrom(GLOBAL, VERSION_13_0, e.getLocalizedMessage())); L238: } L239: } else if (VER...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 54K bytes