Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 156 for _clear (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/webapp/js/admin/bootstrap.min.js

    activate(i)}else{if(this._activeTarget&&t<this._offsets[0]&&this._offsets[0]>0)return this._activeTarget=null,void this._clear();for(var o=this._offsets.length;o--;)this._activeTarget!==this._targets[o]&&t>=this._offsets[o]&&("undefined"==typeof this._offsets[o+1]||t<this._offsets[o+1])&&this._activate(this._targets[o])}},e._activate=function(t){this._activeTarget=t,this._clear();var e=this._selector.split(",").map((function(e){return e+'[data-target="'+t+'"],'+e+'[href="'+t+'"]'})),n=o.default(...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 61.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

         */
        public ReqHeaderPager() {
            // Default constructor - initialization handled by field defaults and clear() method
        }
    
        /**
         * Clears all pager data and resets to default values.
         * This method resets pagination state and clears all request header fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/util/DocList.java

         */
        public DocList() {
            super();
        }
    
        /**
         * Clears all documents from the list and resets metrics.
         * Removes all documents and resets content size and processing time to zero.
         */
        @Override
        public void clear() {
            super.clear();
            contentSize = 0;
            processingTime = 0;
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/entity/ChatSession.java

                return messages != null ? messages.size() : 0;
            }
        }
    
        /**
         * Clears all messages in this session and updates the last accessed timestamp.
         */
        public void clearMessages() {
            synchronized (messagesLock) {
                if (messages != null) {
                    messages.clear();
                }
            }
            this.lastAccessedAt = LocalDateTime.now();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        /** The created time of the key match. */
        public String createdTime;
    
        /** The version number of the key match. */
        public String versionNo;
    
        /**
         * Clears the pager fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

         */
        public String versionNo;
    
        /**
         * Search criteria: configuration description.
         */
        public String description;
    
        /**
         * Clears all pager data and search criteria.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            // Test with null regex
            cmdList.clear();
            execJob.testAddFessCustomSystemProperties(cmdList, null);
            assertEquals(0, cmdList.size());
    
            // Test with empty regex
            cmdList.clear();
            execJob.testAddFessCustomSystemProperties(cmdList, "");
            assertEquals(0, cmdList.size());
    
            // Clean up
            System.clearProperty("custom.prop.one");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        public String createdTime;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Clears all pagination state and filter parameters.
         * Resets pagination counters to default values and clears all filter fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java

        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID of the Kuromoji dictionary. */
        public String id;
    
        /**
         * Clears the pager fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

        public RelatedQueryPager() {
            // Default constructor - fields will be initialized to default values
        }
    
        /**
         * Clears all pager data and resets to default values.
         * Resets pagination state and clears all related query fields.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.2K bytes
    - Click Count (0)
Back to Top