- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 3,587 for findall (0.05 sec)
-
src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java
* @return the query builder */ protected QueryBuilder convertPrefixQuery(final QueryContext context, final PrefixQuery prefixQuery, final float boost) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String field = getSearchField(context.getDefaultField(), prefixQuery.getField()); final String text = prefixQuery.getPrefix().text(); if (Constants.DEFAULT_FIELD.equals(field)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
try { System.setProperty(FesenClient.HTTP_ADDRESS, "http://localhost:9200"); assertEquals("http://localhost:9200", System.getProperty(FesenClient.HTTP_ADDRESS)); } finally { if (originalValue != null) { System.setProperty(FesenClient.HTTP_ADDRESS, originalValue); } else { System.clearProperty(FesenClient.HTTP_ADDRESS); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusRequest.java
final int result = writeQuestionSectionWireFormat(dst, dstIndex); questionName.hexCode = tmp; return result; } @Override int readBodyWireFormat(final byte[] src, final int srcIndex) { return 0; } @Override int writeRDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/GeoInfo.java
* @throws InvalidQueryException if geo point format is invalid or parsing fails */ public GeoInfo(final HttpServletRequest request) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String[] geoFields = fessConfig.getQueryGeoFieldsAsArray(); final Map<String, List<QueryBuilder>> geoMap = new HashMap<>(); StreamUtil.stream(request.getParameterMap())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
*/ public SmbComSessionSetupAndX(final CIFSContext tc, final SmbComNegotiateResponse negotiated, final ServerMessageBlock andx, final Object cred) throws SmbException, GeneralSecurityException { super(tc.getConfig(), SMB_COM_SESSION_SETUP_ANDX, andx); this.negotiated = negotiated; this.capabilities = negotiated.getNegotiatedCapabilities(); final ServerData server = negotiated.getServerData();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImpl.java
final List<Pattern> excludeList = getUrlFilterService().getExcludeUrlPatternList(sessionId); if (!includeList.isEmpty()) { boolean match = false; for (final Pattern pattern : includeList) { final Matcher matcher = pattern.matcher(url); if (matcher.matches()) { match = true;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/HankakuKanaToZenkakuKana.java
private static final char HANKAKU_KATAKANA_FIRST_CHAR = HANKAKU_KATAKANA[0]; private static final char HANKAKU_KATAKANA_LAST_CHAR = HANKAKU_KATAKANA[HANKAKU_KATAKANA.length - 1]; @Override public String normalize(final String s, final String field, final String... langs) { if (s.length() == 0) { return s; } if (s.length() == 1) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/DataStoreFactory.java
final DocumentBuilder builder = factory.newDocumentBuilder(); final Document doc = builder.parse(is); final NodeList nodeList = doc.getElementsByTagName("component"); for (int i = 0; i < nodeList.getLength(); i++) { final Node node = nodeList.item(i); final NamedNodeMap attributes = node.getAttributes();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* @param chain the next filter chain to execute after this filter * @return the processed OpenSearch QueryBuilder */ QueryBuilder execute(final QueryContext context, final Query query, final float boost, final FilterChain chain); } /** * Interface for filter chains that process queries through a sequence of filters.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
/** The name of the query. */ public static final String NAME = "sltr"; /** The parse field for the model name. */ public static final ParseField MODEL_NAME = new ParseField("model"); /** The parse field for the featureset name. */ public static final ParseField FEATURESET_NAME = new ParseField("featureset"); /** The parse field for the store name. */ public static final ParseField STORE_NAME = new ParseField("store");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0)