Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for Kanani (0.29 sec)

  1. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

          return result.readOnly()
        }
    
      /**
       * Returns all values for the query parameter `name` ordered by their appearance in this
       * URL. For example this returns `["banana"]` for `queryParameterValue("b")` on
       * `http://host/?a=apple&b=banana`.
       *
       * | URL                               | `queryParameterValues("a")` | `queryParameterValues("b")` |
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>Example:
       *
       * <pre>{@code
       * static final ListMultimap<Character, String> FIRST_LETTER_MULTIMAP =
       *     Stream.of("banana", "apple", "carrot", "asparagus", "cherry")
       *         .collect(
       *             toMultimap(
       *                  str -> str.charAt(0),
       *                  str -> str.substring(1),
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  3. api/go1.11.txt

    pkg debug/elf, const EM_KVARC = 214
    pkg debug/elf, const EM_KVARC Machine
    pkg debug/elf, const EM_L10M = 180
    pkg debug/elf, const EM_L10M Machine
    pkg debug/elf, const EM_LANAI = 244
    pkg debug/elf, const EM_LANAI Machine
    pkg debug/elf, const EM_LATTICEMICO32 = 138
    pkg debug/elf, const EM_LATTICEMICO32 Machine
    pkg debug/elf, const EM_M16C = 117
    pkg debug/elf, const EM_M16C Machine
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  4. guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java

                .putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'))
                .build();
        CollectorTester.of(collector, equivalence)
            .expectCollects(empty)
            .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry");
      }
    
      public void testEmptyMultimapReads() {
        Multimap<String, Integer> multimap = ImmutableSetMultimap.of();
        assertFalse(multimap.containsKey("foo"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java

                .putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'))
                .build();
        CollectorTester.of(collector, equivalence)
            .expectCollects(empty)
            .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry");
      }
    
      public void testEmptyMultimapReads() {
        Multimap<String, Integer> multimap = ImmutableListMultimap.of();
        assertFalse(multimap.containsKey("foo"));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/bytes/example_test.go

    	fmt.Println(bytes.NewReader([]byte("こんにちは!")).Len())
    	// Output:
    	// 3
    	// 16
    }
    
    func ExampleRepeat() {
    	fmt.Printf("ba%s", bytes.Repeat([]byte("na"), 2))
    	// Output: banana
    }
    
    func ExampleReplace() {
    	fmt.Printf("%s\n", bytes.Replace([]byte("oink oink oink"), []byte("k"), []byte("ky"), 2))
    	fmt.Printf("%s\n", bytes.Replace([]byte("oink oink oink"), []byte("oink"), []byte("moo"), -1))
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    americana.museum americanantiques.museum americanart.museum americanexpress americanfamily amex amfam ami.ibaraki.jp amica amli.no amot.no amscompute.com amsterdam amsterdam.museum amusement.aero an.it analytics anamizu.ishikawa.jp anan.nagano.jp anan.tokushima.jp anani.br ancona.it and.museum andasuolo.no andebu.no ando.nara.jp andoy.no andria-barletta-trani.it andria-trani-barletta.it andriabarlettatrani.it andriatranibarletta.it android andøy.no angry.jp anjo.aichi.jp ann-arbor.mi.us annaka.gunma.jp...
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MultimapsTest.java

        filled.putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'));
        CollectorTester.of(collector, equivalence)
            .expectCollects(empty)
            .expectCollects(filled, "banana", "apple", "carrot", "asparagus", "cherry");
      }
    
      @SuppressWarnings("deprecation")
      public void testUnmodifiableListMultimapShortCircuit() {
        ListMultimap<String, Integer> mod = ArrayListMultimap.create();
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/OrderingTest.java

        Helpers.testComparator(
            comparator,
            ImmutableList.of(
                "applesauce",
                "apricot",
                "artichoke",
                "banality",
                "banana",
                "banquet",
                "tangelo",
                "tangerine"));
        reserializeAndAssert(comparator);
      }
    
      public void testCompound_instance() {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        Helpers.testComparator(
            comparator,
            ImmutableList.of(
                "applesauce",
                "apricot",
                "artichoke",
                "banality",
                "banana",
                "banquet",
                "tangelo",
                "tangerine"));
        reserializeAndAssert(comparator);
      }
    
      public void testCompound_instance() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 42.5K bytes
    - Viewed (0)
Back to top