Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for allintitle (0.29 sec)

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

        }
    
        public void test_conditions_occurrence() {
            final String k = "occt";
            assertEquals("allintitle:", getAsQuery(Collections.singletonMap(k, new String[] { "allintitle" })));
            assertEquals("allinurl:", getAsQuery(Collections.singletonMap(k, new String[] { "allinurl" })));
    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/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)
  3. 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)
  4. 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)
  5. 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)
Back to top