Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for as_nq (0.01 sec)

  1. src/main/webapp/WEB-INF/view/advance.jsp

    						key="labels.advance_search_not_queries"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<input class="form-control" type="text" id="as_nq" name="as.nq" value="${f:h(fe:join(as.nq))}">
    				</div>
    			</div>
    			<div class="mb-3 row">
    				<label for="numSearchOption" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. 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)
  3. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						key="labels.advance_search_not_queries"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<input class="form-control" type="text" id="as_nq" name="as.nq" value="${f:h(fe:join(as.nq))}">
    				</div>
    			</div>
    			<div class="mb-3 row">
    				<label for="numSearchOption" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. 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)
  5. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                            .ifPresent(q -> {
                                appendQuery(queryBuf, q);
                            })));
            stream(conditions.get(SearchRequestParams.AS_NQ))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength).forEach(eq -> {
                        final String nq =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top