- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 1,205 for Exceptions (0.08 sec)
-
IntervalControlHelperTest.java
L23:import org.codelibs.fess.unit.UnitFessTestCase; L24: L25:public class IntervalControlHelperTest extends UnitFessTestCase { L26: L27: private IntervalControlHelper intervalControlHelper; L28: L29: @Override L30: public void setUp() throws Exception { L31: super.setUp(); L32: intervalControlHelper = new IntervalControlHelper(); L33: } L34: L35: public void test_noRule() { L36: assertEquals(0, intervalControlHelper.getDelay()); L37: } L38: L39: public void test_0000()...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.2K bytes -
HotThreadMonitorTarget.java
() -> StringEscapeUtils.escapeJson(e.getValue().getHotThreads())); L57: return tempBuf.toString(); L58: }).collect(Collectors.joining(",")); L59: buf.append(hotThreads).append(','); L60: } catch (final Exception e) { L61: appendException(buf, e).append(','); L62: } L63: L64: appendTimestamp(buf); L65: buf.append('}'); L66: L67: if (logger.isInfoEnabled()) { L68: logger.info(buf.toString()); L69: }...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.1K bytes -
SearchEngineUtil.java
java.io.OutputStream; L21:import java.util.function.Function; L22: L23:import org.apache.logging.log4j.LogManager; L24:import org.apache.logging.log4j.Logger; L25:import org.codelibs.fess.es.client.SearchEngineClient; L26:import org.lastaflute.di.exception.IORuntimeException; L27:import org.opensearch.core.xcontent.MediaType; L28:import org.opensearch.core.xcontent.ToXContent; L29:import org.opensearch.core.xcontent.XContentBuilder; L30:import org.opensearch.core.xcontent.XContentHelper; L31:import...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.9K bytes -
PathMapping.java
StringUtil.EMPTY; L67: pathMapperFunc = pathMappingHelper.createPathMatcher(matcher, replacement); L68: } L69: try { L70: return pathMapperFunc.apply(input, matcher); L71: } catch (final Exception e) { L72: logger.warn("Failed to apply {} to {}.", regexPattern.pattern(), input, e); L73: } L74: } L75: return input; L76: } L77: L78: public boolean hasUAMathcer() { L79: return StringUtil.i...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.3K bytes -
ThreadFactoryBuilder.java
Thread#setDaemon daemon} threads L36: * <li>a {@linkplain ThreadFactoryBuilder#setNameFormat naming format} L37: * <li>a {@linkplain Thread#setPriority thread priority} L38: * <li>an {@linkplain Thread#setUncaughtExceptionHandler uncaught exception handler} L39: * <li>a {@linkplain ThreadFactory#newThread backing thread factory} L40: * </ul> L41: * L42: * <p>If no backing thread factory is provided, a default backing thread factory is used as if by L43: * calling {@code setThreadFactory(}{@link...github.com/google/guava/guava/src/com/google/co...Mon Oct 14 22:50:54 UTC 2024 7.9K bytes -
AdminDictStemmeroverrideAction.java
org.lastaflute.web.response.HtmlResponse; L42:import org.lastaflute.web.response.render.RenderData; L43:import org.lastaflute.web.ruts.process.ActionRuntime; L44:import org.lastaflute.web.validation.VaErrorHook; L45:import org.lastaflute.web.validation.exception.ValidationErrorException; L46: L47:import jakarta.annotation.Resource; L48: L49:/** L50: * @author shinsuke L51: */ L52:public class AdminDictStemmeroverrideAction extends FessAdminAction { L53: L54: public static final String ROLE = "admin-dict";...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 18.6K bytes -
PropertyDescImpl.java
org.codelibs.core.convert.TimeConversionUtil; L41:import org.codelibs.core.convert.TimestampConversionUtil; L42:import org.codelibs.core.exception.BeanMethodSetAccessibleFailureException; L43:import org.codelibs.core.exception.ClIllegalArgumentException; L44:import org.codelibs.core.exception.IllegalPropertyRuntimeException; L45:import org.codelibs.core.exception.ParseRuntimeException; L46:import org.codelibs.core.lang.ConstructorUtil; L47:import org.codelibs.core.lang.FieldUtil; L48:import org.c...github.com/codelibs/corelib/src/main/java/org/c...Thu Mar 07 01:59:08 UTC 2024 15.3K bytes -
ApiAdminStatsAction.java
L183: engineObj.numberOfInFlightFetch = response.getNumberOfInFlightFetch(); L184: engineObj.status = response.getStatus().name().toLowerCase(Locale.ROOT); L185: } catch (final Exception e) { L186: engineObj.status = "red"; L187: engineObj.exception = e.getMessage(); L188: } L189: return engineObj; L190: } L191: L192: public static class FsObj { L193: public short percent; L194: public long used; L195: public...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 12.1K bytes -
SpnegoAuthenticator.java
org.codelibs.fess.app.web.base.login.ActionResponseCredential; L27:import org.codelibs.fess.app.web.base.login.FessLoginAssist.LoginCredentialResolver; L28:import org.codelibs.fess.app.web.base.login.SpnegoCredential; L29:import org.codelibs.fess.exception.SsoLoginException; L30:import org.codelibs.fess.mylasta.action.FessUserBean; L31:import org.codelibs.fess.mylasta.direction.FessConfig; L32:import org.codelibs.fess.sso.SsoAuthenticator; L33:import org.codelibs.fess.sso.SsoResponseType; L34:import...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 11.2K bytes -
CharMatcherTest.java
'q')); L171: doTestNull(forPredicate(Predicates.equalTo('c'))); L172: } L173: L174: private void doTestEmpty(CharMatcher matcher) throws Exception { L175: reallyTestEmpty(matcher); L176: reallyTestEmpty(matcher.negate()); L177: reallyTestEmpty(matcher.precomputed()); L178: } L179: L180: private void reallyTestEmpty(CharMatcher matcher) throws Exception { L181: assertEquals(-1, matcher.indexIn("")); L182: assertEquals(-1, matcher.indexIn("", 0)); L183: try { L184: matcher.indexIn("",...github.com/google/guava/guava-tests/test/com/go...Wed Feb 21 18:32:41 UTC 2024 30.1K bytes