Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for 55 (0.02 sec)

  1. guava-tests/test/com/google/common/collect/TreeMultimapNaturalTest.java

        multimap.put("a", 1);
        multimap.put("a", 11);
        multimap.put("b", 2);
        multimap.put("c", 3);
        multimap.put("d", 4);
        multimap.put("e", 5);
        multimap.put("e", 55);
    
        multimap.keySet().tailSet("d").clear();
        assertEquals(ImmutableSet.of("a", "b", "c"), multimap.keySet());
        assertEquals(4, multimap.size());
        assertEquals(4, multimap.values().size());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

            .addEqualityGroup(
                ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4, 5, 5),
                ImmutableMap.builder().put(1, 1).put(2, 2).put(3, 3).put(4, 4).put(5, 5).buildOrThrow(),
                ImmutableMap.ofEntries(entry(1, 1), entry(2, 2), entry(3, 3), entry(4, 4), entry(5, 5)),
                map(1, 1, 2, 2, 3, 3, 4, 4, 5, 5))
            .testEquals();
      }
    
      public void testOfEntriesNull() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 36.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MD4.java

            D = GG(D, A, B, C, X[ 4],  5);
            C = GG(C, D, A, B, X[ 8],  9);
            B = GG(B, C, D, A, X[12], 13);
            A = GG(A, B, C, D, X[ 1],  3);
            D = GG(D, A, B, C, X[ 5],  5);
            C = GG(C, D, A, B, X[ 9],  9);
            B = GG(B, C, D, A, X[13], 13);
            A = GG(A, B, C, D, X[ 2],  3);
            D = GG(D, A, B, C, X[ 6],  5);
            C = GG(C, D, A, B, X[10],  9);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg debug/elf, const R_390_RELATIVE = 12
    pkg debug/elf, const R_390_RELATIVE R_390
    pkg debug/elf, const R_390_TLS_DTPMOD = 54
    pkg debug/elf, const R_390_TLS_DTPMOD R_390
    pkg debug/elf, const R_390_TLS_DTPOFF = 55
    pkg debug/elf, const R_390_TLS_DTPOFF R_390
    pkg debug/elf, const R_390_TLS_GD32 = 40
    pkg debug/elf, const R_390_TLS_GD32 R_390
    pkg debug/elf, const R_390_TLS_GD64 = 41
    pkg debug/elf, const R_390_TLS_GD64 R_390
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/util/DES.java

            (byte)40, (byte)51, (byte)30, (byte)36, (byte)46, (byte)54,
            (byte)29, (byte)39, (byte)50, (byte)44, (byte)32, (byte)47,
            (byte)43, (byte)48, (byte)38, (byte)55, (byte)33, (byte)52,
            (byte)45, (byte)41, (byte)49, (byte)35, (byte)28, (byte)31,
        };
    
        private static int[] SP1 = {
            0x01010400, 0x00000000, 0x00010000, 0x01010404,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 21.4K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https06.drawio

                        <mxGeometry relative="1" as="geometry">
                            <mxPoint x="300" y="350" as="sourcePoint"/>
                            <mxPoint x="55" y="330" as="targetPoint"/>
                            <Array as="points">
                                <mxPoint x="160" y="340"/>
                                <mxPoint x="160" y="340"/>
                            </Array>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.closedOpen(1, 1), integers()));
        assertEquals(ImmutableSet.of(), ContiguousSet.closedOpen(1, 1));
        assertEquals(ImmutableSet.of(), ContiguousSet.create(Range.openClosed(5, 5), integers()));
        assertEquals(
            ImmutableSet.of(), ContiguousSet.create(Range.lessThan(Integer.MIN_VALUE), integers()));
        assertEquals(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 15 17:36:06 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/RangeTest.java

        assertTrue(Range.closed(3, 5).isConnected(Range.closed(5, 6)));
        assertTrue(Range.closed(5, 6).isConnected(Range.closed(3, 5)));
        assertTrue(Range.closed(3, 5).isConnected(Range.openClosed(5, 5)));
        assertTrue(Range.open(3, 5).isConnected(Range.closed(5, 6)));
        assertTrue(Range.closed(3, 7).isConnected(Range.open(6, 8)));
        assertTrue(Range.open(3, 7).isConnected(Range.closed(5, 6)));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/QuantilesTest.java

        int otherIndex = (Integer.MAX_VALUE - 1) / 3; // this divides exactly
        // For the otherIndex calculation, we have q=Integer.MAX_VALUE, k=(Integer.MAX_VALUE-1)/3, and
        // N=16. Therefore k*(N-1)/q = 5-5/Integer.MAX_VALUE, which has floor 4 and fractional part
        // (1-5/Integer.MAX_VALUE).
        double otherValue = 16.0 * 5.0 / Integer.MAX_VALUE + 25.0 * (1.0 - 5.0 / Integer.MAX_VALUE);
        assertThat(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       *
       * The simplest way to maintain a rate of QPS is to keep the timestamp of the last granted
       * request, and ensure that (1/QPS) seconds have elapsed since then. For example, for a rate of
       * QPS=5 (5 tokens per second), if we ensure that a request isn't granted earlier than 200ms after
       * the last one, then we achieve the intended rate. If a request comes and the last request was
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top