Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testUpdates (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

                        }));
        assertThat(cache.getIfPresent(key)).isEqualTo("1");
        assertThat(cache.asMap().computeIfPresent(key, (k, v) -> "2")).isEqualTo("2");
      }
    
      public void testUpdates() {
        cache.put(key, "1");
        // simultaneous update for same key, some null, some non-null
        doParallelCacheOp(
            count, n -> cache.asMap().compute(key, (k, v) -> n % 2 == 0 ? v + delimiter + n : null));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/SchedulerTests.java

            updateMap.put("target", "new_target");
            return updateMap;
        }
    
        @Test
        void crudTest() {
            testCreate();
            testRead();
            testUpdate();
            testDelete();
        }
    
        @Test
        void testStartJob_notFound() {
            // Try to start a non-existent job
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  3. compat/maven-embedder/src/test/java/org/apache/maven/cli/props/MavenPropertiesTest.java

            assertNotNull(raw);
            assertEquals(3, (Object) raw.size());
            assertEquals("fruits =                            apple, banana, pear, ", raw.get(0));
        }
    
        @Test
        public void testUpdate() throws Exception {
            MavenProperties p1 = new MavenProperties();
            p1.put(
                    "fruits",
                    List.of("#", "# List of fruits", "#"),
                    List.of(
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Mar 09 14:29:03 GMT 2026
    - 16.3K bytes
    - Click Count (0)
Back to Top