Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 37 of 37 for underline (0.15 seconds)

  1. src/main/java/org/codelibs/fess/util/DocMap.java

     *
     */
    public class DocMap implements Map<String, Object> {
    
        /** The key used for language field identification */
        private static final String LANG_KEY = "lang";
    
        /** The underlying map that this DocMap wraps */
        private final Map<String, Object> parent;
    
        /**
         * Constructor that creates a DocMap wrapping the given parent map.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

    /**
     * A query parser that processes search queries and converts them to Lucene Query objects.
     * This class provides a flexible architecture using a chain of filters to process and transform
     * queries before they are parsed by the underlying Lucene query parser.
     *
     * <p>The parser supports configuration of default field, analyzer, wildcard settings,
     * and default operator. It also allows adding custom filters to modify query behavior.</p>
     *
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 10.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

        }
    
        @Test
        public void test_constructor_withNullMessageCode() {
            // Setup
            final String message = "Invalid query with null message code";
            final Exception cause = new RuntimeException("Underlying error");
    
            // Execute
            final InvalidQueryException exception = new InvalidQueryException(null, message, cause);
    
            // Verify
            assertNotNull(exception);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  4. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    Most properties should have a convention set, so (1) can be treated as a rare case where a value must be provided by a user.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/util/QueryResponseList.java

     * functionality such as page navigation, record counts, and query execution times.
     */
    public class QueryResponseList implements List<Map<String, Object>> {
    
        /** The underlying list that contains the actual search result documents. */
        protected final List<Map<String, Object>> parent;
    
        /** The starting position of the current page in the overall result set. */
        protected final int start;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
  6. architecture/standards/0010-gradle-properties-naming.md

    Since the naming of the properties no longer suggests they are experimental, we want to ensure users are aware if the current property stops having an effect.
    Since the underlying feature is incubating, its actual behavior can still change or be removed in the minor releases.
    
    These properties CAN be supplemented with command-line options and they SHOULD follow the shared naming scheme described above.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

            return OptionalThing.of(pipeline);
        }
    
        /**
         * Refreshes the crawling configuration cache by invalidating all cached entries.
         * This forces the next access to reload configurations from the underlying services.
         */
        public void refresh() {
            crawlingConfigCache.invalidateAll();
        }
    
        /**
         * Stores a crawling configuration in the session-based storage with a unique identifier.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.5K bytes
    - Click Count (1)
Back to Top