Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for 5214 (0.03 sec)

  1. guava/src/com/google/common/net/MediaType.java

       *
       * @since 20.0
       */
      public static final MediaType AAC_AUDIO = createConstant(AUDIO_TYPE, "aac");
    
      /**
       * Vorbis Audio, as defined by <a href="http://tools.ietf.org/html/rfc5215">RFC 5215</a>.
       *
       * @since 20.0
       */
      public static final MediaType VORBIS_AUDIO = createConstant(AUDIO_TYPE, "vorbis");
    
      /**
       * Windows Media Audio. For more information, see <a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/ListsTest.java

      }
    
      private static void assertTransformView(List<Integer> fromList, List<String> toList) {
        /* fromList modifications reflected in toList */
        fromList.set(0, 5);
        assertEquals(asList("5", "2", "3", "4"), toList);
        fromList.add(6);
        assertEquals(asList("5", "2", "3", "4", "6"), toList);
        fromList.remove(Integer.valueOf(2));
        assertEquals(asList("5", "3", "4", "6"), toList);
        fromList.remove(2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        testSortDescending(new float[] {1, 3, 1}, 0, 1, new float[] {1, 3, 1});
        testSortDescending(new float[] {-1, -2, 1, 2}, 1, 3, new float[] {-1, 1, -2, 2});
        testSortDescending(
            new float[] {-1, 1, Float.NaN, -2, 2}, 1, 4, new float[] {-1, Float.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testStringConverterSerialization() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/DoublesTest.java

        testSortDescending(new double[] {-1, -2, 1, 2}, 1, 3, new double[] {-1, 1, -2, 2});
        testSortDescending(
            new double[] {-1, 1, Double.NaN, -2, 2}, 1, 4, new double[] {-1, Double.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testLexicographicalComparatorSerializable() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/FloatsTest.java

        testSortDescending(new float[] {1, 3, 1}, 0, 1, new float[] {1, 3, 1});
        testSortDescending(new float[] {-1, -2, 1, 2}, 1, 3, new float[] {-1, 1, -2, 2});
        testSortDescending(
            new float[] {-1, 1, Float.NaN, -2, 2}, 1, 4, new float[] {-1, Float.NaN, 1, -2, 2});
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializableTester
      public void testStringConverterSerialization() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ListsTest.java

      }
    
      private static void assertTransformView(List<Integer> fromList, List<String> toList) {
        /* fromList modifications reflected in toList */
        fromList.set(0, 5);
        assertEquals(asList("5", "2", "3", "4"), toList);
        fromList.add(6);
        assertEquals(asList("5", "2", "3", "4", "6"), toList);
        fromList.remove(Integer.valueOf(2));
        assertEquals(asList("5", "3", "4", "6"), toList);
        fromList.remove(2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ### Internal
    
    * ➕ Add `pydantic` to PyPI classifiers. PR [#5914](https://github.com/tiangolo/fastapi/pull/5914) by [@yezz123](https://github.com/yezz123).
    * ⬆ Bump black from 22.10.0 to 23.1.0. PR [#5953](https://github.com/tiangolo/fastapi/pull/5953) by [@dependabot[bot]](https://github.com/apps/dependabot).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.32.md

    - go.etcd.io/bbolt: v1.3.9 → v1.3.11
    - go.etcd.io/etcd/api/v3: v3.5.14 → v3.5.16
    - go.etcd.io/etcd/client/pkg/v3: v3.5.14 → v3.5.16
    - go.etcd.io/etcd/client/v2: v2.305.13 → v2.305.16
    - go.etcd.io/etcd/client/v3: v3.5.14 → v3.5.16
    - go.etcd.io/etcd/pkg/v3: v3.5.13 → v3.5.16
    - go.etcd.io/etcd/raft/v3: v3.5.13 → v3.5.16
    - go.etcd.io/etcd/server/v3: v3.5.13 → v3.5.16
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 29 20:17:52 UTC 2024
    - 121.6K bytes
    - Viewed (0)
  9. src/main/webapp/css/font-awesome.min.css

    :before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-v...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.9.md

    *   The stats summary network value now takes into account multiple network interfaces, and not just eth0. ([#52144](https://github.com/kubernetes/kubernetes/pull/52144),[ @andyxning](https://github.com/andyxning))
    *   Base images have been bumped to Debian Stretch (9). ([#52744](https://github.com/kubernetes/kubernetes/pull/52744),[ @rphillips](https://github.com/rphillips))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Nov 16 10:46:27 UTC 2021
    - 313.7K bytes
    - Viewed (0)
Back to top