Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 117 for begini (0.07 seconds)

  1. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            // The constants should match standard HTTP status codes
            // HTTP_STATUS_NOT_FOUND = 404
            // HTTP_STATUS_OK = 200
    
            // This test verifies that the constants are being used in the code
            // The actual verification happens at compile time
            assertTrue("HTTP status code constants should be defined", true);
        }
    
        /**
         * Test getAnchorSet with null input
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         * Indicates whether this is a create, read, update, or delete operation.
         */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /**
         * The unique identifier of the failure URL record being edited.
         * This is a required field for identifying which failure record to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The URL that failed during crawling.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

    /**
     * Manager class for chat sessions.
     * Sessions are stored in memory with automatic expiration.
     *
     * <p><b>Note:</b> Sessions are stored in a local in-memory ConcurrentHashMap.
     * In multi-instance deployments (e.g., behind a load balancer), sessions are
     * not shared between instances. Use sticky sessions or an external session
     * store if session affinity across instances is required.</p>
     *
     * @author FessProject
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

            /** Temporary file for storing updates */
            protected File newFile;
    
            /** Writer for writing to the temporary file */
            protected Writer writer;
    
            /** The item being updated */
            protected ProtwordsItem item;
    
            /**
             * Constructor for ProtwordsUpdater.
             * @param newItem the item to be updated
             */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

            /** The temporary file to write changes to. */
            protected File newFile;
    
            /** The writer for the temporary file. */
            protected Writer writer;
    
            /** The synonym item being added or updated. */
            protected SynonymItem item;
    
            /**
             * Constructs a new updater for a synonym item.
             *
             * @param newItem The item to be added or updated.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

     * Supports both BoolQueryBuilder and DisMaxQueryBuilder as underlying implementations.
     */
    public class DefaultQueryBuilder implements QueryBuilder {
    
        /** The underlying query builder being wrapped. */
        private final QueryBuilder queryBuilder;
    
        /** The type of the underlying query builder. */
        private final QueryType queryType;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/plugins/form-validator/file.js

    urn c.imageRatioNotAccepted;return!1},a.formUtils.addAsyncValidator({name:"dimension",validatorFunction:function(b,d,e,g,h){if(c){var i=e.get(0).files||[],j=this;e.attr("data-validation").indexOf("mime")===-1?(alert("You should validate file type being jpg, gif or png on input "+e[0].name),b(!1)):i.length>1?(alert("Validating image dimensions does not support inputs allowing multiple files"),b(!1)):0===i.length?b(!0):f(i[0],function(c){var d=!1;e.valAttr("dimension")&&(d=a.formUtils.checkImageDi...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 4.6K bytes
    - Click Count (0)
  8. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    ### Existing properties in existing classes
    
    This is out of scope for this ADR.  Migrating an existing property to lazy types is being handled in a different way.
    
    ### Conventions
    
    Once a new property has been introduced, you need to consider what its conventions will be.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

        public void init() {
            createFilterChain();
        }
    
        /**
         * Parses the given query string and returns a Lucene Query object.
         * The query is processed through the filter chain before being parsed.
         *
         * @param query the query string to parse
         * @return the parsed Query object
         * @throws QueryParseException if the query cannot be parsed
         */
        public Query parse(final String query) {
    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)
  10. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         *   <li>Cleanup of old documents after successful crawling</li>
         * </ul>
         */
        protected static class DataCrawlingThread extends Thread {
    
            /** Configuration for the data store being crawled */
            private final DataConfig dataConfig;
    
            /** Callback for handling document indexing operations */
            private final IndexUpdateCallback indexUpdateCallback;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19K bytes
    - Click Count (0)
Back to Top