Search Options

Results per page
Sort
Preferred Languages
Advance

Results 471 - 480 of 1,201 for integers (0.04 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

      }
    
      public static final class ExceptionWithoutThrowableConstructor extends Exception {
        public ExceptionWithoutThrowableConstructor(String s) {
          super(s);
        }
      }
    
      public static final class ExceptionWithWrongTypesConstructor extends Exception {
        public ExceptionWithWrongTypesConstructor(Integer i, String s) {
          super(s);
        }
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/ACETest.java

                assertEquals(0, Integer.numberOfTrailingZeros(ACE.FILE_READ_DATA), "FILE_READ_DATA should be at bit position 0");
                assertEquals(1, Integer.numberOfTrailingZeros(ACE.FILE_WRITE_DATA), "FILE_WRITE_DATA should be at bit position 1");
                assertEquals(28, Integer.numberOfTrailingZeros(ACE.GENERIC_ALL), "GENERIC_ALL should be at bit position 28");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/ndr/NdrSmall.java

    /**
     * Represents an NDR small integer (1 byte unsigned) for DCE/RPC communication.
     * This class encapsulates a single byte value (0-255) in NDR format.
     */
    public class NdrSmall extends NdrObject {
    
        /**
         * The small integer value (0-255)
         */
        public int value;
    
        /**
         * Constructs an NdrSmall with the specified value
         * @param value the small integer value (will be masked to 0-255 range)
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

         * @return The active thread count.
         */
        public Integer getActiveThreadCount() {
            return activeThreadCount;
        }
    
        /**
         * Sets the active thread count.
         * @param activeThreadCount The active thread count.
         */
        public void setActiveThreadCount(final Integer activeThreadCount) {
            this.activeThreadCount = activeThreadCount;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 3);
            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 7);
            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 11);
            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 15);
            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 19);
            SMBUtil.writeInt4(Integer.MAX_VALUE, buffer, bufferIndex + 23);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/ConverterTest.java

        assertSame(Converter.identity(), Converter.identity());
      }
    
      public void testFrom() {
        Function<String, Integer> forward =
            new Function<String, Integer>() {
              @Override
              public Integer apply(String input) {
                return Integer.parseInt(input);
              }
            };
        Function<Object, String> backward = toStringFunction();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/graph/DefaultNetworkImplementationsTest.java

    @RunWith(Parameterized.class)
    @NullUnmarked
    public final class DefaultNetworkImplementationsTest {
      private MutableNetwork<Integer, String> network;
      private NetworkForTest<Integer, String> networkForTest;
      private static final Integer N1 = 1;
      private static final Integer N2 = 2;
      private static final Integer NODE_NOT_IN_GRAPH = 1000;
      private static final String E11 = "1-1";
      private static final String E11_A = "1-1a";
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top