Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 303 for number2 (0.04 sec)

  1. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

        }
    
        // Test evaluate method with numeric values
        public void test_evaluate_withNumericValues() {
            String template = "Result: ${number1} + ${number2} = ${sum}";
            Map<String, Object> paramMap = new HashMap<>();
            paramMap.put("number1", 10);
            paramMap.put("number2", 20);
            paramMap.put("sum", 30);
    
            Object result = scriptEngine.evaluate(template, paramMap);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         */
        public long getCurrentEndRecordNumber() {
            return currentEndRecordNumber;
        }
    
        /**
         * Gets a list of page numbers for pagination display.
         * Typically returns a range of page numbers around the current page.
         *
         * @return a list of page numbers as strings
         */
        public List<String> getPageNumberList() {
            return pageNumberList;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        /**
         * Gets the starting record number for the current page.
         *
         * @return The starting record number
         */
        public long getCurrentStartRecordNumber() {
            return currentStartRecordNumber;
        }
    
        /**
         * Gets the ending record number for the current page.
         *
         * @return The ending record number
         */
        public long getCurrentEndRecordNumber() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            private final List<E> parent;
    
            /** The total number of pages available. */
            protected int allPageCount;
    
            /** The total number of records across all pages. */
            protected int allRecordCount;
    
            /** The number of records per page. */
            protected int pageSize;
    
            /** The current page number (1-based). */
            protected int currentPageNumber;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        }
    
        /**
         * Formats a number using the specified pattern and user's locale.
         *
         * @param value the number to format
         * @param pattern the number format pattern
         * @return formatted number string
         */
        public static String formatNumber(final long value, final String pattern) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/BloomFilterTest.java

                BloomFilterStrategies.MURMUR128_MITZ_32);
    
        // Insert "numInsertions" even numbers into the BF.
        for (int i = 0; i < numInsertions * 2; i += 2) {
          bf.put(Integer.toString(i));
        }
        assertApproximateElementCountGuess(bf, numInsertions);
    
        // Assert that the BF "might" have all of the even numbers.
        for (int i = 0; i < numInsertions * 2; i += 2) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

                BloomFilterStrategies.MURMUR128_MITZ_32);
    
        // Insert "numInsertions" even numbers into the BF.
        for (int i = 0; i < numInsertions * 2; i += 2) {
          bf.put(Integer.toString(i));
        }
        assertApproximateElementCountGuess(bf, numInsertions);
    
        // Assert that the BF "might" have all of the even numbers.
        for (int i = 0; i < numInsertions * 2; i += 2) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * The starting record number for the current page of search results.
             */
            protected long startRecordNumber;
            /**
             * The ending record number for the current page of search results.
             */
            protected long endRecordNumber;
            /**
             * The list of page numbers for pagination.
             */
            protected List<String> pageNumbers;
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

     * @param valueCount the number of values per cache entry. Must be positive.
     * @param maxSize the maximum number of bytes this cache should use to store.
     */
    class DiskLruCache(
      fileSystem: FileSystem,
      /** Returns the directory where this cache stores its data. */
      val directory: Path,
      private val appVersion: Int,
      internal val valueCount: Int,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Hashing.java

       *
       * <ul>
       *   <li>You want to assign the same fraction of inputs to each bucket.
       *   <li>When you reduce the number of buckets, you can accept that the most recently added
       *       buckets will be removed first. More concretely, if you are dividing traffic among tasks,
       *       you can decrease the number of tasks from 15 and 10, killing off the final 5 tasks, and
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
Back to top