Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for bababa (0.11 sec)

  1. src/regexp/example_test.go

    	fmt.Println(a.Split("banana", -1))
    	fmt.Println(a.Split("banana", 0))
    	fmt.Println(a.Split("banana", 1))
    	fmt.Println(a.Split("banana", 2))
    	zp := regexp.MustCompile(`z+`)
    	fmt.Println(zp.Split("pizza", -1))
    	fmt.Println(zp.Split("pizza", 0))
    	fmt.Println(zp.Split("pizza", 1))
    	fmt.Println(zp.Split("pizza", 2))
    	// Output:
    	// [b n n ]
    	// []
    	// [banana]
    	// [b nana]
    	// [pi a]
    	// []
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray_test.go

    			"aaa*",
    		},
    	},
    
    	{
    		"abc",
    		"abc",
    		[]string{
    			"a",
    			"b",
    			"c",
    			"ab",
    			"bc",
    			"abc",
    			"a.c",
    			"a(b|c)",
    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. docs/language_names.yml

    gd: Gàidhlig
    gl: galego
    gu: ગુજરાતી
    gv: Gaelg
    ha: هَوُسَ
    he: עברית
    hi: हिन्दी
    ho: Hiri Motu
    hr: Hrvatski
    ht: Kreyòl ayisyen
    hu: magyar
    hy: Հայերեն
    hz: Otjiherero
    ia: Interlingua
    id: Bahasa Indonesia
    ie: Interlingue
    ig: Asụsụ Igbo
    ii: ꆈꌠ꒿ Nuosuhxop
    ik: Iñupiaq
    io: Ido
    is: Íslenska
    it: italiano
    iu: ᐃᓄᒃᑎᑐᑦ
    ja: 日本語
    jv: basa Jawa
    ka: ქართული
    kg: Kikongo
    ki: Gĩkũyũ
    kj: Kuanyama
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/JabbaInstallationSupplierTest.groovy

            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
            directories[0].location == expectedLocation
            directories[0].source == "Jabba"
        }
    
        def "supplies multiple installations for multiple paths"() {
            given:
            def expectedLocation1 = candidates.createDir("jdk/11.0.6.hs-adpt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/strings/strings_test.go

    	{"", "", "<>", -1, "<>"},
    	{"banana", "a", "<>", -1, "b<>n<>n<>"},
    	{"banana", "a", "<>", 1, "b<>nana"},
    	{"banana", "a", "<>", 1000, "b<>n<>n<>"},
    	{"banana", "an", "<>", -1, "b<><>a"},
    	{"banana", "ana", "<>", -1, "b<>na"},
    	{"banana", "", "<>", -1, "<>b<>a<>n<>a<>n<>a<>"},
    	{"banana", "", "<>", 10, "<>b<>a<>n<>a<>n<>a<>"},
    	{"banana", "", "<>", 6, "<>b<>a<>n<>a<>n<>a"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/TablesTransformValuesColumnMapTest.java

      }
    
      @Override
      protected Map<String, Map<Integer, Character>> makePopulatedMap() {
        Table<Integer, String, String> table = HashBasedTable.create();
        table.put(1, "foo", "apple");
        table.put(1, "bar", "banana");
        table.put(3, "foo", "cat");
        return Tables.transformValues(table, FIRST_CHARACTER).columnMap();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Comparators.java

       * are broken arbitrarily.
       *
       * <p>For example:
       *
       * <pre>{@code
       * Stream.of("foo", "quux", "banana", "elephant")
       *     .collect(greatest(2, comparingInt(String::length)))
       * // returns {"elephant", "banana"}
       * }</pre>
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/MapsCollectionTest.java

                        NavigableMap<String, String> map = new SafeTreeMap<>();
                        putEntries(map, entries);
                        map.put("banana", "toast");
                        map.put("eggplant", "spam");
                        return Maps.filterKeys(map, FILTER_KEYS);
                      }
                    })
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import_test_pass.cc

          llvm::sys::fs::createTemporaryFile("text", "vocab", fd, filename);
      if (error_code) return signalPassFailure();
    
      llvm::ToolOutputFile temp_file(filename, fd);
      temp_file.os() << "apple\n";
      temp_file.os() << "banana\n";
      temp_file.os() << "grape";
      temp_file.os().flush();
    
      // Replace filename constant ops to use the temporary file.
      MLIRContext* context = &getContext();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Comparators.java

       * are broken arbitrarily.
       *
       * <p>For example:
       *
       * <pre>{@code
       * Stream.of("foo", "quux", "banana", "elephant")
       *     .collect(greatest(2, comparingInt(String::length)))
       * // returns {"elephant", "banana"}
       * }</pre>
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top