Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 508 for resets (0.52 sec)

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

        public String versionNo;
    
        /**
         * Default constructor for BoostDocPager.
         */
        public BoostDocPager() {
            // Default constructor
        }
    
        /**
         * Clears all search criteria and resets pagination settings.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/StemmerOverridePager.java

        public String id;
    
        /**
         * Default constructor.
         */
        public StemmerOverridePager() {
            // Default constructor
        }
    
        /**
         * Clears all pagination state and resets to default values.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
            existPrePage = false;
            existNextPage = false;
            pageSize = getDefaultPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Resets the search criteria and pagination state.
         *
         * @param form the search form to reset
         * @return HTML response for the failure URL list page with cleared search
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            failureUrlPager.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Resets the search criteria and displays the default list.
         *
         * @param form the search form
         * @return HTML response for the reset list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            saveToken();
            jobLogPager.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/testers/NavigableSetNavigationTester.java

        sort(values, navigableSet.comparator());
    
        // some tests assume SEVERAL == 3
        if (values.size() >= 1) {
          a = values.get(0);
          if (values.size() >= 3) {
            b = values.get(1);
            c = values.get(2);
          }
        }
      }
    
      /** Resets the contents of navigableSet to have elements a, c, for the navigation tests. */
      protected void resetWithHole() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/MD4.java

        @Override
        public Object clone() {
            return new MD4(this);
        }
    
        // JCE methods
        //...........................................................................
    
        /**
         * Resets this object disregarding any temporary data present at the
         * time of the invocation of this call.
         */
        @Override
        public void engineReset() {
            // initial values of MD4 i.e. A, B, C, D
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Resets the search criteria and displays all path mappings.
         *
         * @param form the search form to be reset
         * @return HTML response for the path mapping list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            pathMapPager.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

            final NdrBuffer nb = new NdrBuffer(buf, start);
            nb.index = idx;
            nb.deferred = deferred;
            return nb;
        }
    
        /**
         * Resets the buffer position to the start.
         */
        public void reset() {
            this.index = start;
            length = 0;
            deferred = this;
        }
    
        /**
         * Returns the current index position in the buffer.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/AdminRelatedqueryAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Resets the search criteria and displays all related query items.
         *
         * @param form the search form to reset
         * @return HTML response with the reset related query list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse reset(final SearchForm form) {
            relatedQueryPager.clear();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  10. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java

        /**
         * If this is an accumulating log, it will "drain" this instance. It returns the accumulated log entries, and
         * also "resets" this instance to empty (initial) state.
         */
        @Nonnull
        default List<Entry> drain() {
            return List.of();
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jan 31 20:56:58 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top