- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 350 for Exceptions (0.08 sec)
-
AdminSchedulerAction.java
getScheduledJob(form).ifPresent(entity -> { L228: try { L229: scheduledJobService.store(entity); L230: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L231: } catch (final Exception e) { L232: logger.warn("Failed to process a request.", e); L233: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L234: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 18.1K bytes -
ThumbnailGenerator.java
outManager; L29:import org.codelibs.core.timer.TimeoutTask; L30:import org.codelibs.fess.Constants; L31:import org.codelibs.fess.crawler.client.FesenClient; L32:import org.codelibs.fess.es.client.SearchEngineClient; L33:import org.codelibs.fess.exception.ContainerNotAvailableException; L34:import org.codelibs.fess.timer.SystemMonitorTarget; L35:import org.codelibs.fess.util.ComponentUtil; L36:import org.codelibs.fess.util.SystemUtil; L37:import org.kohsuke.args4j.CmdLineException; L38:import org...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 8.2K bytes -
ApiAdminFileauthAction.java
L89: L90: body.crudMode = CrudMode.CREATE; L91: final FileAuthentication fileAuth = getFileAuthentication(body).map(entity -> { L92: try { L93: fileAuthService.store(entity); L94: } catch (final Exception e) { L95: logger.warn("Failed to process a request.", e); L96: throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e))); L97: } L98: return...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.8K bytes -
SsoAction.java
org.codelibs.fess.app.web.login.LoginAction; L24:import org.codelibs.fess.exception.SsoMessageException; L25:import org.codelibs.fess.sso.SsoManager; L26:import org.codelibs.fess.sso.SsoResponseType; L27:import org.codelibs.fess.util.ComponentUtil; L28:import org.dbflute.optional.OptionalThing; L29:import org.lastaflute.web.Execute; L30:import org.lastaflute.web.login.credential.LoginCredential; L31:import org.lastaflute.web.login.exception.LoginFailureException; L32:import org.lastaflute.web.response.ActionResponse;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.1K bytes -
ProtocolHelper.java
java.util.List; L30:import java.util.jar.JarEntry; L31:import java.util.jar.JarFile; L32: L33:import org.apache.logging.log4j.LogManager; L34:import org.apache.logging.log4j.Logger; L35:import org.codelibs.core.exception.ClassNotFoundRuntimeException; L36:import org.codelibs.core.exception.NoSuchFieldRuntimeException; L37:import org.codelibs.core.lang.ClassUtil; L38:import org.codelibs.core.lang.StringUtil; L39:import org.codelibs.fess.mylasta.direction.FessConfig; L40:import org.codelibs.fess.util.ComponentUtil;...github.com/codelibs/fess/src/main/java/org/code...Wed Jun 19 01:34:15 UTC 2024 7.4K bytes -
SynonymFileTest.java
opensearch and dictionaryManager L39: synonymFile = new SynonymFile("1", file1.getAbsolutePath(), new Date()); L40: } L41: L42: @Override L43: public void tearDown() throws Exception { L44: file1.delete(); L45: } L46: */ L47: L48: @Override L49: public void setUp() throws Exception { L50: super.setUp(); L51: synonymFile = new SynonymFile("1", "dummy", new Date()); L52: List<SynonymItem> itemList = new ArrayList<>(); L53: itemList.add(new...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9K bytes -
IOIntegrationTest.java
extends CurlRequest { L43: L44: MockCurlRequest(Curl.Method method, String url) { L45: super(method, url); L46: } L47: L48: @Override L49: public void connect(Consumer<HttpURLConnection> actionListener, Consumer<Exception> exceptionListener) { L50: try { L51: actionListener.accept(new MockHttpURLConnection(new URL(url))); L52: } catch (MalformedURLException e) { L53: exceptionListener.accept(e); L54: }...github.com/codelibs/curl4j/src/test/java/org/co...Mon Nov 14 21:05:19 UTC 2022 3.4K bytes -
SambaHelper.java
SID sid) { L61: final int type = sid.getType(); L62: if (logger.isDebugEnabled()) { L63: try { L64: logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); L65: } catch (final Exception e) { L66: // ignore L67: } L68: } L69: final Integer id = fessConfig.getAvailableSmbSidType(type); L70: if (id != null) { L71: return createSearchRole(id, sid.getAccountName()); L72: ...github.com/codelibs/fess/src/main/java/org/code...Thu Jun 27 10:58:21 UTC 2024 3.3K bytes -
ImplementedInvokerAssistant.java
javax.sql.DataSource; L19: L20:import org.dbflute.bhv.core.InvokerAssistant; L21:import org.dbflute.bhv.core.context.ResourceParameter; L22:import org.dbflute.bhv.core.supplement.SequenceCacheHandler; L23:import org.dbflute.bhv.exception.BehaviorExceptionThrower; L24:import org.dbflute.bhv.exception.SQLExceptionHandlerFactory; L25:import org.dbflute.cbean.cipher.GearedCipherManager; L26:import org.dbflute.cbean.sqlclause.SqlClauseCreator; L27:import org.dbflute.dbmeta.DBMetaProvider; L28:import org.dbflute.dbway.DBDef;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.2K bytes -
ExecJob.java
.TimeoutManager; L33:import org.codelibs.core.timer.TimeoutTask; L34:import org.codelibs.fess.Constants; L35:import org.codelibs.fess.es.config.exentity.ScheduledJob; L36:import org.codelibs.fess.util.ComponentUtil; L37:import org.lastaflute.di.exception.IORuntimeException; L38:import org.lastaflute.job.LaJobRuntime; L39: L40:public abstract class ExecJob { L41: L42: private static final Logger logger = LogManager.getLogger(ExecJob.class); L43: L44: protected JobExecutor jobExecutor; L45: L46:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 7.7K bytes