Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nq (0.28 sec)

  1. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

            assertEquals("(aaa OR bbb)", getAsQuery("111", Collections.singletonMap(k, new String[] { "aaa bbb" })));
        }
    
        public void test_conditions_eq() {
            final String k = "nq";
            assertEquals("", getAsQuery(Collections.singletonMap(k, new String[] { "" })));
            assertEquals("NOT aaa", getAsQuery(Collections.singletonMap(k, new String[] { "aaa" })));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                        final String nq =
                                split(eq, " ").get(s -> s.filter(StringUtil::isNotBlank).map(q -> "NOT " + q).collect(Collectors.joining(" ")));
                        queryBuf.append(' ').append(nq);
                    }));
            stream(conditions.get(SearchRequestParams.AS_FILETYPE))
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. 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
    						key="labels.index_num"
    					/></label>
    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/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
    						key="labels.index_num"
    					/></label>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /**
         * Default constructor.
         */
        protected SearchRequestParams() {
            // Default constructor
        }
    
        /** 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";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/Constants.java

        /** Query parameter name for optional query. */
        public static final String OPTION_QUERY_OQ = "oq";
    
        /** Query parameter name for negative query. */
        public static final String OPTION_QUERY_NQ = "nq";
    
        // ============================================================
        // Job and Process Constants
        // ============================================================
    
        /** Scheduled job identifier. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top