Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 1,134 for isInteger (0.05 sec)

  1. src/main/resources/CLMessages.properties

    ECL0011=argument[{0}] is null or empty array.
    ECL0012=argument[{0}] is null or empty collection.
    ECL0013=argument[{0}] is null or empty map.
    ECL0014=argument[{0}] which is null the index of array is negative integer.
    ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}].
    ECL0016=key[{0}] is not included in this BeanMap : {1}.
    ECL0017=Exception occurred, because {0}
    ECL0041={0}''s creation failure, because {1}
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/pac/PacSignatureTest.java

    import java.nio.ByteBuffer;
    import java.nio.ByteOrder;
    
    import org.junit.jupiter.api.Test;
    
    /**
     * Tests for the PacSignature class.
     */
    class PacSignatureTest {
    
        /**
         * Helper method to write integer in little-endian format.
         */
        private void writeLittleEndianInt(ByteArrayOutputStream baos, int value) {
            ByteBuffer buffer = ByteBuffer.allocate(4);
            buffer.order(ByteOrder.LITTLE_ENDIAN);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java

            assertEquals(1, boostdocpager.getCurrentPageNumber());
            boostdocpager.setCurrentPageNumber(999);
            assertEquals(999, boostdocpager.getCurrentPageNumber());
            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            boostdocpager.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, boostdocpager.getPageNumberList());
            assertEquals(1, boostdocpager.getDefaultCurrentPageNumber());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java

            assertEquals(1, crawlinginfopage.getCurrentPageNumber());
            crawlinginfopage.setCurrentPageNumber(999);
            assertEquals(999, crawlinginfopage.getCurrentPageNumber());
            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            crawlinginfopage.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, crawlinginfopage.getPageNumberList());
            assertEquals(25, crawlinginfopage.getDefaultPageSize());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/app/pager/DuplicateHostPagerTest.java

            assertEquals(1, duplicatehostpager.getCurrentPageNumber());
            duplicatehostpager.setCurrentPageNumber(999);
            assertEquals(999, duplicatehostpager.getCurrentPageNumber());
            List<Integer> pageNumberList = new ArrayList<Integer>(1);
            duplicatehostpager.setPageNumberList(pageNumberList);
            assertEquals(pageNumberList, duplicatehostpager.getPageNumberList());
            assertEquals(25, duplicatehostpager.getDefaultPageSize());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/math/QuantilesAlgorithmTest.java

      }
    
      public void testMultipleQuantile() {
        ImmutableSet<Integer> indexes = ImmutableSet.of(50, 90, 99);
        Map<Integer, Double> referenceQuantiles =
            REFERENCE_ALGORITHM.multipleQuantiles(indexes, 100, dataset.clone());
        assertThat(referenceQuantiles.keySet()).isEqualTo(indexes);
        for (QuantilesAlgorithm algorithm : NON_REFERENCE_ALGORITHMS) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMax)) {
                cb.query().setErrorCount_LessEqual(Integer.parseInt(failureUrlPager.errorCountMax));
            }
            if (StringUtil.isNotBlank(failureUrlPager.errorCountMin)) {
                cb.query().setErrorCount_GreaterEqual(Integer.parseInt(failureUrlPager.errorCountMin));
            }
    
            if (StringUtil.isNotBlank(failureUrlPager.errorName)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            }
        }
    
        /**
         * Retrieves an integer value from system properties with a default fallback.
         *
         * @param key the property key to look up
         * @param defaultValue the default value if the property is not found or invalid
         * @return the integer value or default value
         */
        protected Integer getDefaultInteger(final String key, final Integer defaultValue) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt

       * ```
       * Point ::= SEQUENCE {
       *   x [0] INTEGER OPTIONAL,
       *   y [1] INTEGER OPTIONAL
       * }
       * ```
       *
       * You may also specify a tag class like [DerHeader.TAG_CLASS_APPLICATION]. The default tag class
       * is [DerHeader.TAG_CLASS_CONTEXT_SPECIFIC].
       *
       * ```
       * Point ::= SEQUENCE {
       *   x [APPLICATION 0] INTEGER OPTIONAL,
       *   y [APPLICATION 1] INTEGER OPTIONAL
       * }
       * ```
       */
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/TestLockingTest.java

                    if (args[ai].equals("-t")) {
                        ai++;
                        t.numThreads = Integer.parseInt(args[ai]);
                    } else if (args[ai].equals("-i")) {
                        ai++;
                        t.numIter = Integer.parseInt(args[ai]);
                    } else if (args[ai].equals("-d")) {
                        ai++;
                        t.delay = Long.parseLong(args[ai]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
Back to top