Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for Levin (0.14 sec)

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

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2012-05-11 18:08
    - 989 bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestCollectionGenerator.java

    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Collection;
    
    /**
     * Creates collections, containing sample elements, to be tested.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-04-21 02:27
    - 945 bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/DerivedComparable.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * Simple derived class to verify that we handle generics correctly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public class DerivedComparable extends BaseComparable {
      public DerivedComparable(String s) {
        super(s);
      }
    
      private static final long serialVersionUID = 0;
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-04-21 02:27
    - 989 bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/TestCollectionGenerator.java

    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Collection;
    
    /**
     * Creates collections, containing sample elements, to be tested.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2016-09-15 13:47
    - 945 bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestListGenerator.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.List;
    
    /**
     * Creates sets, containing sample elements, to be tested.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public interface TestListGenerator<E> extends TestCollectionGenerator<E> {
      @Override
      List<E> create(Object... elements);
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-04-21 02:27
    - 963 bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/TestSetGenerator.java

     */
    
    package com.google.common.collect.testing;
    
    import com.google.common.annotations.GwtCompatible;
    import java.util.Set;
    
    /**
     * Creates sets, containing sample elements, to be tested.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public interface TestSetGenerator<E> extends TestCollectionGenerator<E> {
      @Override
      Set<E> create(Object... elements);
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-04-21 02:27
    - 960 bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/OpenJdk6Tests.java

    /**
     * Suite of tests for OpenJdk 6 tests. The existence of this class is a hack because the
     * suitebuilder won't pick up the suites directly in the other classes because they don't extend
     * TestCase. Ergh.
     *
     * @author Kevin Bourrillion
     */
    public class OpenJdk6Tests extends TestCase {
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(OpenJdk6SetTests.suite());
        suite.addTest(OpenJdk6ListTests.suite());
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-12-04 17:37
    - 1.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java

    import com.google.common.annotations.J2ktIncompatible;
    import javax.annotation.CheckForNull;
    
    /**
     * Unchecked version of {@link java.util.concurrent.TimeoutException}.
     *
     * @author Kevin Bourrillion
     * @since 1.0
     */
    @J2ktIncompatible
    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public class UncheckedTimeoutException extends RuntimeException {
      public UncheckedTimeoutException() {}
    
    Java
    - Registered: 2023-07-21 12:43
    - Last Modified: 2023-04-04 09:45
    - 1.4K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/TestCollidingSetGenerator.java

    import com.google.common.collect.testing.SampleElements.Colliders;
    import java.util.List;
    
    /**
     * A generator using sample elements whose hash codes all collide badly.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    public abstract class TestCollidingSetGenerator implements TestSetGenerator<Object> {
      @Override
      public SampleElements<Object> samples() {
        return new Colliders();
      }
    
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-04-21 02:27
    - 1.3K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/collect/testing/MinimalCollectionTest.java

    import com.google.common.collect.testing.features.CollectionSize;
    import java.util.Collection;
    import junit.framework.Test;
    import junit.framework.TestCase;
    
    /**
     * Unit test for {@link MinimalCollection}.
     *
     * @author Kevin Bourrillion
     */
    public class MinimalCollectionTest extends TestCase {
      public static Test suite() {
        return CollectionTestSuiteBuilder.using(
                new TestStringCollectionGenerator() {
                  @Override
    Java
    - Registered: 2023-09-29 12:43
    - Last Modified: 2017-12-04 17:37
    - 1.7K bytes
    - Viewed (0)
Back to top