Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for testCopyOf_concurrentlyMutating (0.24 seconds)

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

    cpovirk <******@****.***> 1747161777 -0700
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

      }
    
      public void testCopyOf_iteratorNull() {
        assertThrows(NullPointerException.class, () -> ImmutableList.copyOf((Iterator<String>) null));
      }
    
      public void testCopyOf_concurrentlyMutating() {
        List<String> sample = Lists.newArrayList("a", "b", "c");
        for (int delta : new int[] {-1, 0, 1}) {
          for (int i = 0; i < sample.size(); i++) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/collect/ImmutableListTest.java

      }
    
      public void testCopyOf_iteratorNull() {
        assertThrows(NullPointerException.class, () -> ImmutableList.copyOf((Iterator<String>) null));
      }
    
      public void testCopyOf_concurrentlyMutating() {
        List<String> sample = Lists.newArrayList("a", "b", "c");
        for (int delta : new int[] {-1, 0, 1}) {
          for (int i = 0; i < sample.size(); i++) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 23.8K bytes
    - Click Count (0)
Back to Top