Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for clearValue (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

        public String remove(Object key) {
            Layout l = layout.get(key);
            if (l != null) {
                l.clearValue();
            }
            return storage.remove(key);
        }
    
        @Override
        public void clear() {
            for (Layout l : layout.values()) {
                l.clearValue();
            }
            storage.clear();
        }
    
        /**
         * Return the comment header.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 09:03:48 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

        public String remove(Object key) {
            Layout l = layout.get(key);
            if (l != null) {
                l.clearValue();
            }
            return storage.remove(key);
        }
    
        @Override
        public void clear() {
            for (Layout l : layout.values()) {
                l.clearValue();
            }
            storage.clear();
        }
    
        /**
         * Return the comment header.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 38.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setTableEntryForTesting(0, entry);
        // don't increment count; this is used during computation
        assertTrue(segment.clearValueForTesting(key, hash, valueRef));
        // no notification sent with clearValue
        assertEquals(0, segment.count);
        assertThat(table.get(0)).isNull();
    
        // clear wrong value reference
        segment.setTableEntryForTesting(0, entry);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:07:52 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setTableEntryForTesting(0, entry);
        // don't increment count; this is used during computation
        assertTrue(segment.clearValueForTesting(key, hash, valueRef));
        // no notification sent with clearValue
        assertEquals(0, segment.count);
        assertThat(table.get(0)).isNull();
    
        // clear wrong value reference
        segment.setTableEntryForTesting(0, entry);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 20:07:52 UTC 2025
    - 35.5K bytes
    - Viewed (0)
Back to top