Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for subListCopy (0.37 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

            verify(reference.getElements());
          } catch (AssertionError cause) {
            throw new AssertionError("failed with stimuli " + subListCopy(stimuli, i + 1), cause);
          }
        }
      }
    
      private static List<Object> subListCopy(Object[] source, int size) {
        Object[] copy = new Object[size];
        arraycopy(source, 0, copy, 0, size);
        return asList(copy);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

            verify(reference.getElements());
          } catch (AssertionError cause) {
            throw new AssertionError("failed with stimuli " + subListCopy(stimuli, i + 1), cause);
          }
        }
      }
    
      private static List<Object> subListCopy(Object[] source, int size) {
        Object[] copy = new Object[size];
        arraycopy(source, 0, copy, 0, size);
        return asList(copy);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed May 14 19:40:47 UTC 2025
    - 21.4K bytes
    - Viewed (0)
Back to top