Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for remainders (0.04 sec)

  1. src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java

                this.offset = 0;
            }
    
            @Override
            public int align(int a) {
                // Simulate alignment by advancing offset
                int remainder = offset % a;
                if (remainder != 0) {
                    offset += (a - remainder);
                }
                return 0; // Return dummy value
            }
    
            @Override
            public void enc_ndr_long(int v) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 60.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

       * }
       *
       * ... returns {@code "rodor"}.
       *
       * <p>The default implementation uses {@link #indexIn(CharSequence)} to find the first matching
       * character, then iterates the remainder of the sequence calling {@link #matches(char)} for each
       * character.
       *
       * @param sequence the character sequence to replace matching characters in
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
Back to top