Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 75 for deprecations (0.56 sec)

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

        assertEquals(-1, Iterators.indexOf(iterator, equalTo("bob")));
        assertFalse(iterator.hasNext());
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testUnmodifiableIteratorShortCircuit() {
        Iterator<String> mod = Lists.newArrayList("a", "b", "c").iterator();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Suppress("deprecation")
    @Timeout(30)
    @Tag("Slow")
    class MockWebServerTest {
      @RegisterExtension
      var platform = PlatformRule()
    
      private val server = MockWebServer()
    
      @BeforeEach
      fun setUp() {
        server.start()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 03 22:38:00 UTC 2025
    - 28K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/RangeTest.java

        // separate above
        assertEquals(Range.closed(4, 12), range.span(Range.closed(10, 12)));
        assertEquals(Range.atLeast(4), range.span(Range.atLeast(10)));
      }
    
      @SuppressWarnings({"InlineMeInliner", "deprecation"}) // intentional test of depecated method
      public void testPredicateMethods() {
        Range<Integer> predicate = Range.closed(2, 3);
    
        assertFalse(predicate.apply(1));
        assertTrue(predicate.apply(2));
    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. CHANGELOG/CHANGELOG-1.28.md

      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind-15)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-4)
        - [Feature](#feature-12)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test-1)
        - [Bug or Regression](#bug-or-regression-14)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Oct 23 20:13:20 UTC 2024
    - 456.9K bytes
    - Viewed (1)
  5. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

    import java.util.concurrent.atomic.AtomicReferenceArray;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * @author Charles Fry
     */
    @SuppressWarnings("deprecation") // many tests of deprecated methods
    @NullUnmarked
    public class MapMakerInternalMapTest extends TestCase {
    
      static final int SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5;
    
      private static <K, V>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

    import java.util.concurrent.atomic.AtomicReferenceArray;
    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * @author Charles Fry
     */
    @SuppressWarnings("deprecation") // many tests of deprecated methods
    @NullUnmarked
    public class MapMakerInternalMapTest extends TestCase {
    
      static final int SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5;
    
      private static <K, V>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/IterablesTest.java

        Iterator<String> expectedIterator = list.iterator();
        iterable.forEach(s -> assertEquals(expectedIterator.next(), s));
        assertFalse(expectedIterator.hasNext());
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testUnmodifiableIterableShortCircuit() {
        List<String> list = newArrayList("a", "b", "c");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.26.md

      - [Urgent Upgrade Notes](#urgent-upgrade-notes)
        - [(No, really, you MUST read this before you upgrade)](#no-really-you-must-read-this-before-you-upgrade)
      - [Changes by Kind](#changes-by-kind-15)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-8)
        - [Feature](#feature-15)
        - [Documentation](#documentation)
        - [Bug or Regression](#bug-or-regression-15)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

        - [Node Binaries](#node-binaries-14)
        - [Container Images](#container-images-14)
      - [Changelog since v1.29.0](#changelog-since-v1290)
      - [Changes by Kind](#changes-by-kind-14)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-5)
        - [Feature](#feature-9)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-12)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/IterablesTest.java

        iterator.next();
        assertThrows(UnsupportedOperationException.class, () -> iterator.remove());
        assertEquals("[a, b, c]", iterable.toString());
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testUnmodifiableIterableShortCircuit() {
        List<String> list = newArrayList("a", "b", "c");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top