Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,070 for PUT (0.03 sec)

  1. src/mdo/reader.vm

            entities.put("ne", "\u2260");
            entities.put("equiv", "\u2261");
            entities.put("le", "\u2264");
            entities.put("ge", "\u2265");
            entities.put("sub", "\u2282");
            entities.put("sup", "\u2283");
            entities.put("nsub", "\u2284");
            entities.put("sube", "\u2286");
            entities.put("supe", "\u2287");
            entities.put("oplus", "\u2295");
    Registered: 2024-06-12 09:55
    - Last Modified: 2023-12-15 06:33
    - 42.1K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java

      public void testPut_supportedPresent() {
        assertEquals("put(present, value) should return the old value", v0(), getMap().put(k0(), v3()));
        expectReplacement(entry(k0(), v3()));
      }
    
      @MapFeature.Require(SUPPORTS_PUT)
      public void testPut_supportedNotPresent() {
        assertNull("put(notPresent, value) should return null", put(e3()));
        expectAdded(e3());
      }
    
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-21 16:49
    - 9.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java

        Map<String, Integer> unfiltered = createUnfiltered();
        Map<String, Integer> filtered = Maps.filterValues(unfiltered, EVEN);
        filtered.put("a", 2);
        unfiltered.put("b", 4);
        unfiltered.put("c", 5);
        assertEquals(ImmutableMap.of("a", 2, "b", 4), filtered);
    
        try {
          filtered.put("yyy", 3);
          fail();
        } catch (IllegalArgumentException expected) {
        }
        assertEquals(ImmutableMap.of("a", 2, "b", 4), filtered);
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-19 20:34
    - 7.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

                .build();
    
        // Add more than two elements to increment size removals.
        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.
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-08-05 17:21
    - 15.1K bytes
    - Viewed (0)
  5. src/mdo/reader-stax.vm

            entities.put("ne", "\u2260");
            entities.put("equiv", "\u2261");
            entities.put("le", "\u2264");
            entities.put("ge", "\u2265");
            entities.put("sub", "\u2282");
            entities.put("sup", "\u2283");
            entities.put("nsub", "\u2284");
            entities.put("sube", "\u2286");
            entities.put("supe", "\u2287");
            entities.put("oplus", "\u2295");
    Registered: 2024-06-12 09:55
    - Last Modified: 2024-03-25 10:50
    - 38.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

        map.put(1, "a");
        map.put(4, "b");
        map.put(3, "d");
        map.put(2, "c");
        testHasMapEntriesInOrder(map, 1, "a", 4, "b", 3, "d", 2, "c");
      }
    
      public void testInsertionOrderAfterPutKeyTwice() {
        Map<Integer, String> map = CompactLinkedHashMap.create();
        map.put(1, "a");
        map.put(4, "b");
        map.put(3, "d");
        map.put(2, "c");
        map.put(1, "e");
    Registered: 2024-06-12 16:38
    - Last Modified: 2022-02-09 21:08
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java

            map.put("ト", new String[] { "to" });
    
            map.put("ナ", new String[] { "na" });
            map.put("ニ", new String[] { "ni" });
            map.put("ヌ", new String[] { "nu" });
            map.put("ネ", new String[] { "ne" });
            map.put("ノ", new String[] { "no" });
    
            map.put("ハ", new String[] { "ha" });
            map.put("ヒ", new String[] { "hi" });
            map.put("フ", new String[] { "hu", "fu" });
    Registered: 2024-06-12 15:38
    - Last Modified: 2024-02-22 01:36
    - 9.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/HashBiMapTest.java

        map.put("foo", 1);
        map.put("bar", 2);
        map.put("quux", 3);
    
        map.remove("bar");
        assertThat(map.entrySet())
            .containsExactly(Maps.immutableEntry("foo", 1), Maps.immutableEntry("quux", 3))
            .inOrder();
      }
    
      public void testInsertionOrderAfterRemoveLast() {
        BiMap<String, Integer> map = HashBiMap.create();
        map.put("foo", 1);
        map.put("bar", 2);
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-19 20:34
    - 8.4K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

          V v9,
          K k10,
          V v10) {
        return new Builder<K, V>(Ordering.natural())
            .put(k1, v1)
            .put(k2, v2)
            .put(k3, v3)
            .put(k4, v4)
            .put(k5, v5)
            .put(k6, v6)
            .put(k7, v7)
            .put(k8, v8)
            .put(k9, v9)
            .put(k10, v10)
            .build();
      }
    
      // Unsafe, see ImmutableSortedMapFauxverideShim.
    Registered: 2024-06-12 16:38
    - Last Modified: 2024-02-27 19:19
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                    params.put("ID", e.getId());
                    params.put("Query ID", e.getQueryId());
                    params.put("Doc ID", e.getDocId());
                    params.put("User Session ID", e.getUserSessionId());
                    params.put("URL", e.getUrl());
                    params.put("URL ID", e.getUrlId());
                    params.put("Order", toNumberString(e.getOrder()));
    Registered: 2024-06-12 13:08
    - Last Modified: 2024-02-22 01:37
    - 28.4K bytes
    - Viewed (0)
Back to top