- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for as_oq (0.01 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
} /** The parameter for negative query. */ public static final String AS_NQ = "nq"; /** The parameter for OR query. */ public static final String AS_OQ = "oq"; /** The parameter for exact phrase query. */ public static final String AS_EPQ = "epq"; /** The parameter for query. */ public static final String AS_Q = "q"; /** The parameter for filetype. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
</div> </div> <div class="mb-3 row"> <label for="as_oq" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message key="labels.advance_search_should_queries" /></label> <div class="col-lg-5 col-md-8 col-sm-7 col-6"> <input class="form-control" type="text" id="as_oq" name="as.oq" value="${f:h(fe:join(as.oq))}"> </div> </div> <div class="mb-3 row">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
</div> </div> <div class="mb-3 row"> <label for="as_oq" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message key="labels.advance_search_should_queries" /></label> <div class="col-lg-5 col-md-8 col-sm-7 col-6"> <input class="form-control" type="text" id="as_oq" name="as.oq" value="${f:h(fe:join(as.oq))}"> </div> </div> <div class="mb-3 row">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
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/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
// Test with OR query testParams.conditions.put(SearchRequestParams.AS_OQ, new String[] { "option1 option2" }); assertTrue(searchRequestParams.hasConditionQuery()); } public void test_hasConditionQuery_withNegativeQuery() { // Test with negative query testParams.conditions.put(SearchRequestParams.AS_NQ, new String[] { "exclude this" }); assertTrue(searchRequestParams.hasConditionQuery());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0)