Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ListGenerators (0.06 sec)

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

    import org.jspecify.annotations.NullMarked;
    
    /**
     * Common generators of different types of lists.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    @NullMarked
    public final class ListGenerators {
    
      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

    import org.jspecify.annotations.NullMarked;
    
    /**
     * Common generators of different types of lists.
     *
     * @author Hayward Chan
     */
    @GwtCompatible
    @NullMarked
    public final class ListGenerators {
    
      private ListGenerators() {}
    
      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.BuilderAddAllListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.BuilderReversedListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListHeadSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListMiddleSubListGenerator;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableListTest.java

    import com.google.common.collect.testing.google.ListGenerators.BuilderAddAllListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.BuilderReversedListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListHeadSubListGenerator;
    import com.google.common.collect.testing.google.ListGenerators.ImmutableListMiddleSubListGenerator;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ListsTest.java

    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.features.ListFeature;
    import com.google.common.collect.testing.google.ListGenerators.CharactersOfCharSequenceGenerator;
    import com.google.common.collect.testing.google.ListGenerators.CharactersOfStringGenerator;
    import com.google.common.testing.NullPointerTester;
    import com.google.common.testing.SerializableTester;
    import java.io.Serializable;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.4K bytes
    - Viewed (0)
Back to top