- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for allintitle (0.03 sec)
-
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
} // Test constructor with allintitle prefix public void test_constructor_allintitlePrefix() { queryContext = new QueryContext("allintitle:test query", false); assertEquals("test query", queryContext.getQueryString()); assertEquals("title", queryContext.getDefaultField()); } // Test constructor with allintitle prefix and empty remainder
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
* Checks if a value represents an occurrence-based search modifier. * Currently supports "allintitle" and "allinurl" modifiers. * * @param value the value to check * @return true if the value is an occurrence modifier, false otherwise */ protected boolean isOccurrence(final String value) { return "allintitle".equals(value) || "allinurl".equals(value); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
protected static final String ALLINURL_FIELD_PREFIX = "allinurl:"; /** Prefix for queries that search only in title fields. */ protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:"; /** The OpenSearch query builder used for executing the search. */ protected QueryBuilder queryBuilder; /** List of sort builders to apply to the search query. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/QueryHelperTest.java
Map.of("title", List.of("*")), // Set.of(), // buildQuery("allintitle:")); assertQueryContext(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.6K bytes - Viewed (0)