Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for DEPRECATION (0.04 sec)

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

        List<String> toRemove = asList("a", "b", "b");
        assertTrue(Multisets.removeOccurrences(multiset, toRemove));
        assertThat(multiset).containsExactly("a", "c").inOrder();
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      public void testUnmodifiableMultisetShortCircuit() {
        Multiset<String> mod = HashMultiset.create();
        Multiset<String> unmod = unmodifiableMultiset(mod);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/ThrowablesTest.java

    import junit.framework.TestCase;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit test for {@link Throwables}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible
    @SuppressWarnings("deprecation") // tests of numerous deprecated methods
    @NullUnmarked
    public class ThrowablesTest extends TestCase {
      // We're testing that the method is in fact equivalent to throwing the exception directly.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.21.md

        - [Server Binaries](#server-binaries-14)
        - [Node Binaries](#node-binaries-14)
      - [Changelog since v1.20.0](#changelog-since-v1200)
      - [What's New (Major Themes)](#whats-new-major-themes)
        - [Deprecation of PodSecurityPolicy](#deprecation-of-podsecuritypolicy)
        - [Kubernetes API Reference Documentation](#kubernetes-api-reference-documentation)
        - [Kustomize Updates in Kubectl](#kustomize-updates-in-kubectl)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/BooleansTest.java

        List<Boolean> list = Booleans.asList(true, false);
        assertThat(list.get(0)).isSameInstanceAs(true);
        assertThat(list.get(1)).isSameInstanceAs(false);
        @SuppressWarnings("deprecation")
        Boolean anotherTrue = new Boolean(true);
        @SuppressWarnings("deprecation")
        Boolean anotherFalse = new Boolean(false);
        list.set(0, anotherTrue);
        assertThat(list.get(0)).isSameInstanceAs(true);
        list.set(1, anotherFalse);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/SetsTest.java

        @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
        Set<Integer> set = Sets.newSetFromMap(new LinkedHashMap<Integer, Boolean>());
        set.addAll(SOME_COLLECTION);
        Set<Integer> copy = SerializableTester.reserializeAndAssert(set);
        assertThat(copy).containsExactly(0, 1).inOrder();
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 45.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.23.md

        - [Node Binaries](#node-binaries-17)
      - [Changelog since v1.22.0](#changelog-since-v1220)
      - [What's New (Major Themes)](#whats-new-major-themes)
        - [Deprecation of FlexVolume](#deprecation-of-flexvolume)
        - [Deprecation of klog specific flags](#deprecation-of-klog-specific-flags)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.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-14)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-15)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/base/CharMatcherTest.java

        reallyTestMatchThenNoMatch(matcher.precomputed().negate(), s);
      }
    
      // intentionally testing apply() and test() methods
      @SuppressWarnings({
        "deprecation",
        "InlineMeInliner",
      })
      private void reallyTestOneCharMatch(CharMatcher matcher, String s) {
        assertTrue(matcher.matches(s.charAt(0)));
        assertTrue(matcher.apply(s.charAt(0)));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/BloomFilterTest.java

            BloomFilter.create(Funnels.unencodedCharsFunnel(), Integer.MAX_VALUE / 2, 0.30);
        unused = BloomFilter.create(Funnels.unencodedCharsFunnel(), 45L * Integer.MAX_VALUE, 0.99);
      }
    
      @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method
      private static void checkSanity(BloomFilter<Object> bf) {
        assertFalse(bf.mightContain(new Object()));
        assertFalse(bf.apply(new Object()));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 22K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

        - [Node Binaries](#node-binaries-15)
      - [Changelog since v1.19.0](#changelog-since-v1190)
      - [What's New (Major Themes)](#whats-new-major-themes)
        - [Dockershim deprecation](#dockershim-deprecation)
        - [External credential provider for client-go](#external-credential-provider-for-client-go)
        - [CronJob controller v2 is available through feature gate](#cronjob-controller-v2-is-available-through-feature-gate)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top