Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for 56 (0.18 sec)

  1. guava-tests/test/com/google/common/cache/CacheStatsTest.java

        assertEquals(60, sum.missCount());
        assertEquals(60.0 / 124, sum.missRate());
        assertEquals(56, sum.loadSuccessCount());
        assertEquals(52, sum.loadExceptionCount());
        assertEquals(52.0 / 108, sum.loadExceptionRate());
        assertEquals(56 + 52, sum.loadCount());
        assertEquals(48, sum.totalLoadTime());
        assertEquals(48.0 / (56 + 52), sum.averageLoadPenalty());
        assertEquals(44, sum.evictionCount());
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Sun Jun 30 14:58:49 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/NtlmFlags.java

        /**
         * Request explicit key exchange
         */
        public static final int NTLMSSP_NEGOTIATE_KEY_EXCH = 0x40000000;
    
        /**
         * Indicates that 56-bit encryption is supported.
         */
        public static final int NTLMSSP_NEGOTIATE_56 = 0x80000000;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

        private void deskey( byte[] keyBlock, boolean encrypting, int[] KnL ) {
    
            int i, j, l, m, n;
            int[] pc1m = new int[56];
            int[] pcr  = new int[56];
            int[] kn   = new int[32];
    
            for ( j = 0; j < 56; ++j )  {
                l       = pc1[j];
                m       = l & 07;
                pc1m[j] = ( (keyBlock[l >>> 3] & bytebit[m]) != 0 )? 1: 0;
            }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/MD4.java

         *
         * @return the array of bytes for the resulting hash value.
         */
        public byte[] engineDigest () {
            // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512
            int bufferNdx = (int)(count % BLOCK_LENGTH);
            int padLen = (bufferNdx < 56) ? (56 - bufferNdx) : (120 - bufferNdx);
    
            // padding is alwas binary 1 followed by binary 0s
            byte[] tail = new byte[padLen + 8];
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        cache.put(3, 20);
        cache.put(6, 2);
        cache.put(98, 45);
        cache.put(56, 76);
        cache.put(23, 84);
    
        // Replace the two present elements.
        cache.put(23, 20);
        cache.put(56, 49);
        cache.put(23, 2);
        cache.put(56, 4);
    
        // Expire the two present elements.
        fakeTicker.advance(1001, 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)
  6. android/guava-tests/test/com/google/common/cache/CacheStatsTest.java

        assertEquals(60, sum.missCount());
        assertEquals(60.0 / 124, sum.missRate());
        assertEquals(56, sum.loadSuccessCount());
        assertEquals(52, sum.loadExceptionCount());
        assertEquals(52.0 / 108, sum.loadExceptionRate());
        assertEquals(56 + 52, sum.loadCount());
        assertEquals(48, sum.totalLoadTime());
        assertEquals(48.0 / (56 + 52), sum.averageLoadPenalty());
        assertEquals(44, sum.evictionCount());
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Sun Jun 30 14:58:49 GMT 2019
    - 4.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

        cache.put(98, 45);
        cache.put(56, 76);
        cache.put(23, 84);
    
        // Replace the two present elements.
        cache.put(23, 20);
        cache.put(56, 49);
        cache.put(23, 2);
        cache.put(56, 4);
    
        // Expire the two present elements.
        fakeTicker.advance(1001, TimeUnit.MILLISECONDS);
    
        cache.getIfPresent(23);
        cache.getIfPresent(56);
    
        // Add two elements and invalidate them.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 15K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/converter/TimeConverterTest.java

            final TimeConverter converter = new TimeConverter("HH:mm:ss");
            final java.sql.Time result = (java.sql.Time) converter.getAsObject("12:34:56");
            System.out.println(result);
            assertThat(converter.getAsString(result), is("12:34:56"));
        }
    
        /**
         * @throws Exception
         */
        public void testIsTarget() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/converter/TimestampConverterTest.java

            final java.sql.Timestamp result = (java.sql.Timestamp) converter.getAsObject("2008/12/31 12:34:56");
            System.out.println(result);
            assertThat(converter.getAsString(result), is("2008/12/31 12:34:56"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testIsTarget() throws Exception {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Fingerprint2011.java

        // For lengths over 64 bytes we hash the end first, and then as we
        // loop we keep 56 bytes of state: v, w, x, y, and z.
        long x = load64(bytes, offset);
        long y = load64(bytes, offset + length - 16) ^ K1;
        long z = load64(bytes, offset + length - 56) ^ K0;
        long[] v = new long[2];
        long[] w = new long[2];
        weakHashLength32WithSeeds(bytes, offset + length - 64, length, y, v);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Dec 28 17:50:25 GMT 2021
    - 6.5K bytes
    - Viewed (0)
Back to top