- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 357 for Exceptions (0.06 sec)
-
UserService.java
L24:import org.codelibs.fess.app.web.base.login.FessLoginAssist; L25:import org.codelibs.fess.es.user.cbean.UserCB; L26:import org.codelibs.fess.es.user.exbhv.UserBhv; L27:import org.codelibs.fess.es.user.exentity.User; L28:import org.codelibs.fess.exception.FessUserNotFoundException; L29:import org.codelibs.fess.mylasta.direction.FessConfig; L30:import org.codelibs.fess.util.ComponentUtil; L31:import org.dbflute.cbean.result.PagingResultBean; L32:import org.dbflute.optional.OptionalEntity; L33: L34:import...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 4.2K bytes -
WildcardQueryCommand.java
org.apache.logging.log4j.Logger; L23:import org.apache.lucene.search.Query; L24:import org.apache.lucene.search.WildcardQuery; L25:import org.codelibs.fess.Constants; L26:import org.codelibs.fess.entity.QueryContext; L27:import org.codelibs.fess.exception.InvalidQueryException; L28:import org.codelibs.fess.mylasta.direction.FessConfig; L29:import org.codelibs.fess.util.ComponentUtil; L30:import org.lastaflute.core.message.UserMessages; L31:import org.opensearch.index.query.QueryBuilder; L32:import...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.1K bytes -
ParameterUtilTest.java
essConfig; L21:import org.codelibs.fess.mylasta.direction.FessProp; L22:import org.codelibs.fess.unit.UnitFessTestCase; L23: L24:public class ParameterUtilTest extends UnitFessTestCase { L25: L26: @Override L27: public void setUp() throws Exception { L28: super.setUp(); L29: FessProp.propMap.clear(); L30: FessConfig fessConfig = new FessConfig.SimpleImpl() { L31: @Override L32: public String getAppEncryptPropertyPattern() { L33: return...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.1K bytes -
SystemMonitorTarget.java
builder.endObject(); L166: builder.flush(); L167: try (OutputStream out = builder.getOutputStream()) { L168: stats = ((ByteArrayOutputStream) out).toString(Constants.UTF_8); L169: } L170: } catch (final Exception e) { L171: appendException(buf, e).append(','); L172: } L173: buf.append("\"search_engine\":").append(stats).append(','); L174: } L175:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 7.5K bytes -
CacheAction.java
L53: } L54: L55: Map<String, Object> doc = null; L56: try { L57: doc = searchHelper.getDocumentByDocId(form.docId, queryFieldConfig.getCacheResponseFields(), getUserBean()).orElse(null); L58: } catch (final Exception e) { L59: logger.warn("Failed to request: {}", form.docId, e); L60: } L61: if (doc == null) { L62: saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); L63: return redirect(ErrorAction.class);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.4K bytes -
FessUserLocaleProcessProvider.java
wserLangParameterName(); L48: if (StringUtil.isNotBlank(name)) { L49: try { L50: return requestManager.getParameter(name).filter(StringUtil::isNotBlank).map(LocaleUtils::toLocale); L51: } catch (final Exception e) { L52: logger.debug("Failed to parse a value of {}.", name, e); L53: } L54: } L55: return OptionalObject.empty(); L56: } L57: L58: @Override L59: public OptionalThing<Locale> getRequestedLocale(final...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.8K bytes -
SystemHelperTest.java
ors; L29:import java.util.stream.Stream; L30: L31:import org.codelibs.core.io.FileUtil; L32:import org.codelibs.core.lang.StringUtil; L33:import org.codelibs.core.misc.Pair; L34:import org.codelibs.core.misc.Tuple3; L35:import org.codelibs.fess.exception.FessSystemException; L36:import org.codelibs.fess.mylasta.direction.FessConfig; L37:import org.codelibs.fess.unit.UnitFessTestCase; L38:import org.codelibs.fess.util.ComponentUtil; L39:import org.lastaflute.web.response.HtmlResponse; L40: L41:public...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 18.5K bytes -
PingResponse.java
L22:import java.util.Set; L23: L24:import org.codelibs.core.lang.StringUtil; L25:import org.codelibs.fess.Constants; L26:import org.codelibs.fess.util.ComponentUtil; L27:import org.codelibs.fess.util.SearchEngineUtil; L28:import org.lastaflute.di.exception.IORuntimeException; L29:import org.opensearch.action.admin.cluster.health.ClusterHealthResponse; L30:import org.opensearch.cluster.health.ClusterHealthStatus; L31:import org.opensearch.common.xcontent.XContentType; L32: L33:public class PingResponse...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.9K bytes -
OsddHelperTest.java
e("application/opensearchdescription+xml"); L46: osddHelper.init(); L47: assertFalse(osddHelper.hasOpenSearchFile()); L48: L49: try { L50: osddHelper.asStream(); L51: fail(); L52: } catch (final Exception e) { L53: assertEquals("Unsupported Open Search Description Document response.", e.getMessage()); L54: } L55: } L56: L57: public void test_init_osddpath() throws IOException { L58: ComponentUtil.setFessConfig(new F...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.8K bytes -
PrunedTag.java
L21:import java.util.regex.Matcher; L22:import java.util.regex.Pattern; L23: L24:import org.apache.commons.lang3.StringUtils; L25:import org.codelibs.core.lang.StringUtil; L26:import org.codelibs.core.stream.StreamUtil; L27:import org.codelibs.fess.exception.FessSystemException; L28:import org.w3c.dom.Node; L29: L30:public class PrunedTag { L31: private final String tag; L32: private String id; L33: private String css; L34: private String attrName; L35: private String attrValue; L36: L37:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.8K bytes