Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 17 for allRecordCountRelation (0.09 seconds)

  1. src/main/java/org/codelibs/fess/util/QueryResponseList.java

                final long queryTime, final boolean partialResults, final FacetResponse facetResponse, final int start, final int pageSize,
                final int offset) {
            this(documentList, start, pageSize, offset);
            this.allRecordCount = allRecordCount;
            this.allRecordCountRelation = allRecordCountRelation;
            this.queryTime = queryTime;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 14.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

             *
             * @param allRecordCountRelation The record count relation (e.g., "eq", "gte")
             * @return This builder instance for method chaining
             */
            public SearchResultBuilder allRecordCountRelation(final String allRecordCountRelation) {
                this.allRecordCountRelation = allRecordCountRelation;
                return this;
            }
    
            /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java

         */
        @Test
        public void test_basicSearchResultCreation() {
            final SearchResult result = SearchResult.create()
                    .allRecordCount(100)
                    .allRecordCountRelation(Relation.EQUAL_TO.toString())
                    .queryTime(123)
                    .partialResults(false)
                    .build();
    
            assertNotNull(result);
            assertEquals(100, result.getAllRecordCount());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        /**
         * Sets the relation type for the record count (e.g., "eq", "gte").
         *
         * @param allRecordCountRelation The record count relation
         */
        public void setAllRecordCountRelation(final String allRecordCountRelation) {
            this.allRecordCountRelation = allRecordCountRelation;
        }
    
        /**
         * Sets the total number of pages based on record count and page size.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                final String allRecordCountRelation, final long queryTime, final boolean partialResults, final FacetResponse facetResponse,
                final int start, final int pageSize, final int offset) {
            return new QueryResponseList(documentList, allRecordCount, allRecordCountRelation, queryTime, partialResults, facetResponse, start,
                    pageSize, offset);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 25 02:13:14 GMT 2025
    - 28K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

                RenderDataUtil.register(data, "currentPageNumber", currentPageNumber);
                RenderDataUtil.register(data, "allRecordCount", allRecordCount);
                RenderDataUtil.register(data, "allRecordCountRelation", allRecordCountRelation);
                RenderDataUtil.register(data, "allPageCount", allPageCount);
                RenderDataUtil.register(data, "existNextPage", existNextPage);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14K bytes
    - Click Count (0)
  7. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                        <div id="subheader" class="row top10">
                                            <div class="col-12">
                                                <c:if test="${allRecordCountRelation=='EQUAL_TO'}">
                                                    <la:message key="labels.search_result_status"
                                                                arg0="${f:h(q)}" arg1="${f:h(allRecordCount)}"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 20.1K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    <div id="subheader" class="row">
    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (1)
  9. src/main/webapp/WEB-INF/view/searchResults.jsp

    <div id="subheader" class="row">
    	<div class="col">
    		<p>
    			<c:if test="${allRecordCountRelation=='EQUAL_TO'}">
    				<la:message key="labels.search_result_status"
    					arg0="${displayQuery}" arg1="${fe:formatNumber(allRecordCount,'###,###')}"
    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if><c:if test="${allRecordCountRelation!='EQUAL_TO'}">
    				<la:message key="labels.search_result_status_over"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 12.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList.allRecordCount = 0;
            qrList.allRecordCountRelation = null;
            qrList.queryTime = 0;
            qrList.partialResults = false;
            qrList.facetResponse = null;
    
            String toStringResult = qrList.toString();
            assertTrue(toStringResult.contains("QueryResponseList"));
            assertTrue(toStringResult.contains("allRecordCountRelation=null"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
Back to Top