Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Daphne (0.17 sec)

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

      public void testBuilderReuse() {
        Builder<String, Integer> builder = new Builder<>();
        ImmutableMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).buildOrThrow();
        ImmutableMap<String, Integer> mapTwo = builder.put("three", 3).put("four", 4).buildOrThrow();
    
        assertMapEquals(mapOne, "one", 1, "two", 2);
        assertMapEquals(mapTwo, "one", 1, "two", 2, "three", 3, "four", 4);
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 27 13:27:08 GMT 2024
    - 41.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

      public void testBuilderReuse() {
        Builder<String, Integer> builder = new Builder<>();
        ImmutableMap<String, Integer> mapOne = builder.put("one", 1).put("two", 2).buildOrThrow();
        ImmutableMap<String, Integer> mapTwo = builder.put("three", 3).put("four", 4).buildOrThrow();
    
        assertMapEquals(mapOne, "one", 1, "two", 2);
        assertMapEquals(mapTwo, "one", 1, "two", 2, "three", 3, "four", 4);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 14:39:16 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top