Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for fish (0.07 sec)

  1. android/guava-tests/test/com/google/common/escape/ArrayBasedCharEscaperTest.java

        // Replacements are applied first regardless of whether the character is in
        // the safe range or not ('&' is a safe char while '\t' and '\n' are not).
        assertThat(replacingEscaper.escape("\tFish &\0 Chips\r\n"))
            .isEqualTo("<tab>Fish <and>? Chips?<newline>");
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 18 15:41:04 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

                .add("in", "the", "quick", "jumped", "over", "a")
                .build();
        assertTrue(set.headSet("a") instanceof ImmutableSortedSet);
        assertTrue(set.headSet("fish") instanceof ImmutableSortedSet);
        assertThat(set.headSet("fish")).containsExactly("a", "in", "the").inOrder();
        assertThat(set.headSet("california"))
            .containsExactly("a", "in", "the", "over", "quick", "jumped")
            .inOrder();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she would have called him a fish)--and rapped loudly at the door
    with his knuckles.  It was opened by another footman in livery,
    with a round face, and large eyes like a frog; and both footmen,
    Alice noticed, had powdered hair that curled all over their
    heads.  She felt very curious to know what it was all about, and
    crept a little way out of the wood to listen.
    
      The Fish-Footman began by producing from under his arm a great
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    discount
    
    // discover : Discover Financial Services
    // https://www.iana.org/domains/root/db/discover.html
    discover
    
    // dish : Dish DBS Corporation
    // https://www.iana.org/domains/root/db/dish.html
    dish
    
    // diy : Internet Naming Company LLC
    // https://www.iana.org/domains/root/db/diy.html
    diy
    
    // dnp : Dai Nippon Printing Co., Ltd.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    firenze.it
    firestone
    firewall-gateway.com
    firewall-gateway.de
    firewall-gateway.net
    firewalledreplit.co
    firm.dk
    firm.ht
    firm.in
    firm.nf
    firm.ng
    firm.ro
    firm.ve
    firmdale
    fish
    fishing
    fit
    fitjar.no
    fitness
    fj
    fj.cn
    fjaler.no
    fjell.no
    fl.us
    fla.no
    flakstad.no
    flatanger.no
    fldrv.com
    flekkefjord.no
    flesberg.no
    flickr
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  6. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    firenze.it
    firestone
    firewall-gateway.com
    firewall-gateway.de
    firewall-gateway.net
    firewalledreplit.co
    firm.dk
    firm.ht
    firm.in
    firm.nf
    firm.ng
    firm.ro
    firm.ve
    firmdale
    fish
    fishing
    fit
    fitjar.no
    fitness
    fj
    fj.cn
    fjaler.no
    fjell.no
    fl.us
    fla.no
    flakstad.no
    flatanger.no
    fldrv.com
    flekkefjord.no
    flesberg.no
    flickr
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.23.md

    - Add fish shell completion to kubectl. ([#92989](https://github.com/kubernetes/kubernetes/pull/92989), [@WLun001](https://github.com/WLun001))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingMultiset.java

       * override {@link #equals} to forward to this implementation.
       *
       * @since 7.0
       */
      protected boolean standardEquals(@Nullable Object object) {
        return Multisets.equalsImpl(this, object);
      }
    
      /**
       * A sensible definition of {@link #hashCode} as {@code entrySet().hashCode()} . If you override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ForwardingList.java

       * this implementation.
       *
       * @since 7.0
       */
      protected Iterator<E> standardIterator() {
        return listIterator();
      }
    
      /**
       * A sensible default implementation of {@link #listIterator()}, in terms of {@link
       * #listIterator(int)}. If you override {@link #listIterator(int)}, you may wish to override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java

       * {@link SortedMultiset#tailMultiset}, the {@code size()} and {@code iterator()} methods of
       * {@link SortedMultiset#entrySet}, and {@link SortedMultiset#remove(Object, int)}. In many
       * situations, you may wish to override {@link SortedMultiset#elementSet} to forward to this
       * implementation or a subclass thereof.
       *
       * @since 15.0
       */
      protected class StandardElementSet extends SortedMultisets.NavigableElementSet<E> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.6K bytes
    - Viewed (0)
Back to top