Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 153 for pagination (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Displays a paginated list of synonym items.
         *
         * @param pageNumber the optional page number for pagination
         * @param form the search form containing search criteria
         * @return HTML response with the synonym items list
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  2. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * applying any search filters specified in the pager. The results are sorted
         * by sort order and name.</p>
         *
         * @param dataConfigPager the pager containing search criteria and pagination settings
         * @return a list of DataConfig entities matching the search criteria
         * @throws IllegalArgumentException if dataConfigPager is null
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Display a paginated list of stemmer override items.
         * Sets the current page number and shows the list with pagination.
         *
         * @param pageNumber Optional page number to display (0-based)
         * @param form The search form containing filter criteria
         * @return HTML response showing the stemmer override list
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.5K bytes
    - Viewed (0)
  4. docs/en/data/topic_repos.yml

      html_url: https://github.com/benavlabs/FastAPI-boilerplate
      stars: 1432
      owner_login: benavlabs
      owner_html_url: https://github.com/benavlabs
    - name: fastapi-pagination
      html_url: https://github.com/uriyyo/fastapi-pagination
      stars: 1428
      owner_login: uriyyo
      owner_html_url: https://github.com/uriyyo
    - name: awesome-python-resources
      html_url: https://github.com/DjangoEx/awesome-python-resources
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:57:41 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/BadWordService.java

         */
        public BadWordService() {
            // Default constructor
        }
    
        /**
         * Gets a paginated list of bad words.
         * @param badWordPager The pager with search criteria and pagination settings.
         * @return List of bad words matching the criteria.
         */
        public List<BadWord> getBadWordList(final BadWordPager badWordPager) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            @Override
            public ApiResult result() {
                return new ApiResult(this);
            }
        }
    
        /**
         * Represents an API response for search results, including document list, pagination, and facet information.
         */
        public static class ApiDocsResponse extends ApiResponse {
            /**
             * The ID of the search query.
             */
            protected String queryId;
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            webAuthPager.clear();
            return asHtml(path_AdminWebauth_AdminWebauthJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        /**
         * Sets up pagination data for the web authentication search results.
         * Registers web authentication items and determines if the create link should be displayed.
         *
         * @param data the render data to populate with search results
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    						<la:message key="labels.facet_label_reset" />
    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    </div>
    <div class="row">
    	<nav id="subfooter" class="mx-auto">
    		<ul class="pagination justify-content-center">
    			<c:if test="${existPrevPage}">
    				<li class="page-item"><la:link styleClass="page-link" aria-label="Previous"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            assertEquals("test1", item.get().getInput());
        }
    
        public void test_selectList_normal() {
            // Load data first
            protwordsFile.reload(null);
    
            // Test normal pagination
            PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 3);
            assertEquals(3, list.size());
            assertEquals("test1", list.get(0).getInput());
            assertEquals("test2", list.get(1).getInput());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        /** System line separator character sequence. */
        public static final String LINE_SEPARATOR = System.lineSeparator();
    
        /** Default page number for admin interface pagination. */
        public static final int DEFAULT_ADMIN_PAGE_NUMBER = 1;
    
        /** String constant representing boolean true value. */
        public static final String TRUE = "true";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top