Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,096 for segfault (0.18 sec)

  1. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor.
         */
        public JobLogPager() {
            // Default constructor
        }
    
        /** Default page size for pagination */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ForwardingDeque.java

     * behavior of {@link #offer} which can lead to unexpected behavior. In this case, you should
     * override {@code offer} as well.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingDeque}.
     *
     * @author Kurt Alfred Kluever
     * @since 12.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/DuplicateHostPager.java

        /**
         * Creates a new DuplicateHostPager with default values.
         * Initializes pagination settings and clears all search parameters.
         */
        public DuplicateHostPager() {
            // Default constructor with explicit documentation
        }
    
        /**
         * Clears all paging state and search/filter parameters.
         * Resets the pager to its initial state with default values.
         */
        public void clear() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java

            queryCommand = new WildcardQueryCommand();
            queryCommand.register();
        }
    
        public void test_convertWildcardQuery_defaultField() throws Exception {
            // Test with default field
            QueryContext queryContext = new QueryContext("test*", false);
            WildcardQuery wildcardQuery = new WildcardQuery(new Term(Constants.DEFAULT_FIELD, "test*"));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #    o objectTypeTargetList: (NotRequired - Default 'map:{TABLE;VIEW}')
            #    o tableExceptList: (NotRequired - Default list:{})
            #    o tableTargetList: (NotRequired - Default list:{})
            #    o columnExceptMap: (NotRequired - Default map:{})
            #    o isSuppressCommonColumn: (NotRequired - Default false)
            #    o isSuppressProcedure: (NotRequired - Default false)
            #
            #; additionalSchemaMap = map:{
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

     */
    public class PathMapPager implements Serializable {
    
        /**
         * Default constructor.
         */
        public PathMapPager() {
            // Default constructor
        }
    
        private static final long serialVersionUID = 1L;
    
        /** Default page size. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** Default current page number. */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingDeque.java

     * override {@code offer} as well, either providing your own implementation, or delegating to the
     * provided {@code standardOffer} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingBlockingDeque}.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

     *
     * <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>
     *
     */
    public class QueryParser {
    
        /**
         * Default constructor.
         */
        public QueryParser() {
            // Default constructor
        }
    
        /** The default field to search in when no field is specified in the query */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

        /**
         * Default constructor for file authentication pager.
         * Creates a new instance with default values.
         */
        public FileAuthPager() {
            // Default constructor
        }
    
        /** The default number of records to display per page. */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /** The default current page number (1-based). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10000)
        public String appValue;
    
        /**
         * Default label value to use when no specific label is selected.
         * This affects which documents are included in search results by default.
         */
        @Size(max = 1000)
        public String defaultLabelValue;
    
        /**
         * Default sort order for search results.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top