Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for bababa (0.2 sec)

  1. 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)
  2. 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)
  3. src/index/suffixarray/example_test.go

    // license that can be found in the LICENSE file.
    
    package suffixarray_test
    
    import (
    	"fmt"
    	"index/suffixarray"
    )
    
    func ExampleIndex_Lookup() {
    	index := suffixarray.New([]byte("banana"))
    	offsets := index.Lookup([]byte("ana"), -1)
    	for _, off := range offsets {
    		fmt.Println(off)
    	}
    
    	// Unordered output:
    	// 1
    	// 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 21 01:10:22 UTC 2016
    - 433 bytes
    - Viewed (0)
  4. 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)
  5. src/strings/search_test.go

    func TestFinderNext(t *testing.T) {
    	testCases := []struct {
    		pat, text string
    		index     int
    	}{
    		{"", "", 0},
    		{"", "abc", 0},
    		{"abc", "", -1},
    		{"abc", "abc", 0},
    		{"d", "abcdefg", 3},
    		{"nan", "banana", 2},
    		{"pan", "anpanman", 2},
    		{"nnaaman", "anpanmanam", -1},
    		{"abcd", "abc", -1},
    		{"abcd", "bcd", -1},
    		{"bcd", "abcd", 1},
    		{"abc", "acca", -1},
    		{"aa", "aaa", 0},
    		{"baa", "aaaaa", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 01 21:52:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. android/guava-tests/test/com/google/common/collect/TablesTransformValuesRowMapTest.java

      }
    
      @Override
      protected Map<String, Map<Integer, Character>> makePopulatedMap() {
        Table<String, Integer, String> table = HashBasedTable.create();
        table.put("foo", 1, "apple");
        table.put("bar", 1, "banana");
        table.put("foo", 3, "cat");
        return Tables.transformValues(table, TableCollectionTest.FIRST_CHARACTER).rowMap();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. android/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)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            executedAndNotSkipped getComponentTasks("main")
    
            when:
            buildFile << """
                model {
                    flavors {
                        orange
                        banana
                    }
                }
            """
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. docs/az/docs/fastapi-people.md

    Burada **Ən yaxşı əməkdaşlar** var. 👷
    
    Bu istifadəçilərin ən çox *birləşdirilmiş* [Pull Request-ləri var](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    
    Onlar mənbə kodu, sənədləmə, tərcümələr və s. barədə əmək göstərmişlər. 📦
    
    {% if people %}
    <div class="user-list user-list-center">
    {% for user in people.top_contributors[:50] %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top