Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for setExecTime (2.35 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            // Test with null
            searchRenderData.setExecTime(null);
            assertNull(searchRenderData.getExecTime());
    
            // Test with empty string
            searchRenderData.setExecTime("");
            assertEquals("", searchRenderData.getExecTime());
    
            // Test with formatted time string
            searchRenderData.setExecTime("0.123 sec");
            assertEquals("0.123 sec", searchRenderData.getExecTime());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        /**
         * Sets the formatted execution time for the search request.
         *
         * @param execTime The formatted execution time string
         */
        public void setExecTime(final String execTime) {
            this.execTime = execTime;
        }
    
        /**
         * Sets the number of results per page.
         *
         * @param pageSize The page size
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                    buf.append("&hq=").append(LaFunctions.u(q));
                });
                data.setAppendHighlightParams(buf.toString());
            }
    
            queryResponseList.setExecTime(systemHelper.getCurrentTimeAsLong() - startTime);
            final NumberFormat nf = NumberFormat.getInstance(params.getLocale());
            nf.setMaximumIntegerDigits(2);
            nf.setMaximumFractionDigits(2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertEquals(facetResponse, qrList.getFacetResponse());
    
            // Test setters
            qrList.setSearchQuery("test query");
            assertEquals("test query", qrList.getSearchQuery());
    
            qrList.setExecTime(1000L);
            assertEquals(1000L, qrList.getExecTime());
        }
    
        public void test_calculatePageInfo_withOffset() {
            QueryResponseList qrList = new QueryResponseList(null, 10, 20, 5) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        }
    
        /**
         * Sets the total execution time for the search request in milliseconds.
         *
         * @param execTime the execution time in milliseconds
         */
        public void setExecTime(final long execTime) {
            this.execTime = execTime;
        }
    
        /**
         * Gets the facet response containing aggregated search facets and their counts.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top