Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 57 (0.2 sec)

  1. guava-tests/test/com/google/common/math/MathTesting.java

        longValues.add(Integer.MAX_VALUE + 1L, Long.MAX_VALUE - 1L, Long.MAX_VALUE);
    
        // Now add values near 2^N for lots of values of N.
        for (int exponent : asList(32, 33, 39, 40, 41, 47, 48, 49, 55, 56, 57)) {
          long x = 1L << exponent;
          longValues.add(x, x + 1, x - 1);
        }
        longValues.add(194368031998L).add(194368031999L); // sqrt(2^75) rounded up and down
        POSITIVE_LONG_CANDIDATES = longValues.build();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                    char c = data[i];
                    if( c < 48 || c > 57 ) {
                        return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                    }
                    int b = 0x00;
                    while( c != '.' ) {
                        if( c < 48 || c > 57 ) {
                            return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 30.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

        longValues.add(Integer.MAX_VALUE + 1L, Long.MAX_VALUE - 1L, Long.MAX_VALUE);
    
        // Now add values near 2^N for lots of values of N.
        for (int exponent : asList(32, 33, 39, 40, 41, 47, 48, 49, 55, 56, 57)) {
          long x = 1L << exponent;
          longValues.add(x, x + 1, x - 1);
        }
        longValues.add(194368031998L).add(194368031999L); // sqrt(2^75) rounded up and down
        POSITIVE_LONG_CANDIDATES = longValues.build();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            for ( int i = 0; i < data.length; i++ ) {
                char c = data[ i ];
                if ( c < 48 || c > 57 ) {
                    return doNameQuery(name, svr);
                }
                int b = 0x00;
                while ( c != '.' ) {
                    if ( c < 48 || c > 57 ) {
                        return doNameQuery(name, svr);
                    }
                    b = b * 10 + c - '0';
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

            if ( log.isDebugEnabled() ) {
                log.debug("Opening " + this.name);
                log.debug("Flags are " + Hexdump.toHexString(getFlags(), 4));
            }
    
            SMBUtil.writeInt2(57, dst, dstIndex);
            dst[ dstIndex + 2 ] = this.securityFlags;
            dst[ dstIndex + 3 ] = this.requestedOplockLevel;
            dstIndex += 4;
    
            SMBUtil.writeInt4(this.impersonationLevel, dst, dstIndex);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 09:52:11 GMT 2019
    - 14.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        fakeTicker.advance(501, TimeUnit.MILLISECONDS);
    
        int sum = 0;
        for (Entry<Integer, Integer> current : cache.asMap().entrySet()) {
          sum += current.getKey() + current.getValue();
        }
        assertEquals(57, sum);
      }
    
      public void testAsMapValues_iteratorRemove() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(1000, TimeUnit.MILLISECONDS)
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 15K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        fakeTicker.advance(501, TimeUnit.MILLISECONDS);
    
        int sum = 0;
        for (Entry<Integer, Integer> current : cache.asMap().entrySet()) {
          sum += current.getKey() + current.getValue();
        }
        assertEquals(57, sum);
      }
    
      public void testAsMapValues_iteratorRemove() {
        Cache<Integer, Integer> cache =
            CacheBuilder.newBuilder()
                .expireAfterWrite(1000, TimeUnit.MILLISECONDS)
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Aug 05 17:21:46 GMT 2022
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/DES.java

            0x000008, 0x000004, 0x000002, 0x000001
        };
        private static byte[] pc1 = {
            (byte)56, (byte)48, (byte)40, (byte)32, (byte)24, (byte)16, (byte) 8,
            (byte) 0, (byte)57, (byte)49, (byte)41, (byte)33, (byte)25, (byte)17,
            (byte) 9, (byte) 1, (byte)58, (byte)50, (byte)42, (byte)34, (byte)26,
            (byte)18, (byte)10, (byte) 2, (byte)59, (byte)51, (byte)43, (byte)35,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
Back to top