- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 796 for contexts (0.06 sec)
-
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
context.addFieldLog(field, text); context.addHighlightedQuery(text); return buildDefaultQueryBuilder(fessConfig, context, (f, b) -> QueryBuilders.fuzzyQuery(f, text) .fuzziness(Fuzziness.fromEdits(fuzzyQuery.getMaxEdits())) .boost(b * boost) .maxExpansions(fessConfig.getQueryFuzzyExpansionsAsInteger())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
} /** * Converts a Lucene BooleanQuery to an OpenSearch BoolQueryBuilder. * @param context The query context. * @param booleanQuery The boolean query to convert. * @param boost The boost factor to apply. * @return The converted BoolQueryBuilder. */ protected QueryBuilder convertBooleanQuery(final QueryContext context, final BooleanQuery booleanQuery, final float boost) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.map
cate","is","siblings","n","rneedsContext","rsingleTag","winnow","qualifier","self","rootjQuery","parseHTML","ready","rparentsprev","guaranteedUnique","children","contents","prev","sibling","cur","targets","l","closest","index","prevAll","add","addBack","parents","parentsUntil","nextAll","nextUntil","prevUntil","contentDocument","content","reverse","rnothtmlwhite","Identity","v","Thrower","ex","adoptValue","resolve","reject","noValue","method","promise","fail","then","Callbacks","object","_","fla...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 131.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
} /** * Formats code content with syntax highlighting and line numbers. * * @param prefix the line number prefix pattern * @param style the CSS class name for styling * @param mimetype the MIME type of the content (currently unused) * @param input the code content to format * @return HTML formatted code with line numbers and styling */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
} /** * Retrieves the XML content as an {@link InputStream} using the platform's default encoding. * * @param contents * The content. Must not be {@literal null}. * @return {@link InputStream} */ public static InputStream getContentsAsStream(final String contents) { assertArgumentNotNull("contents", contents); return getContentsAsStream(contents, null); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.20.md
### Runtime log sanitation Logs can now be configured to use runtime protection from leaking sensitive data. [Details for this experimental feature is available in documentation](https://docs.k8s.io/concepts/cluster-administration/system-logs/#log-sanitization). ### Pod resource metrics
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jan 19 21:05:45 UTC 2022 - 409K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String field = getSearchField(context.getDefaultField(), wildcardQuery.getField()); if (Constants.DEFAULT_FIELD.equals(field)) { final String text = wildcardQuery.getTerm().text(); context.addFieldLog(field, text);
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/org/codelibs/fess/query/TermRangeQueryCommand.java
final String origQuery = queryBuf.toString(); context.addFieldLog(Constants.DEFAULT_FIELD, origQuery); context.addHighlightedQuery(origQuery); return buildDefaultQueryBuilder(fessConfig, context, (f, b) -> QueryBuilders.matchPhraseQuery(f, origQuery).boost(b)); } context.addFieldLog(field, termRangeQuery.toString(field));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
return convertKeywordQuery(fessConfig, context, termQuery, boost, field, text); } return convertTextQuery(fessConfig, context, termQuery, boost, field, text); } /** * Converts a term query to a text-based match phrase query. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Boost value for fuzzy content queries. query.boost.fuzzy.content=0.005 # Fuzziness for fuzzy content queries. query.boost.fuzzy.content.fuzziness=AUTO # Number of expansions for fuzzy content queries. query.boost.fuzzy.content.expansions=10 # Prefix length for fuzzy content queries. query.boost.fuzzy.content.prefix_length=0 # Whether to allow transpositions in fuzzy content queries.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)