Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 69 for bababa (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. cmd/erasure-metadata_test.go

    		expectedIsLatest    bool
    	}{
    		{
    			fis:            getNFInfo(16, 16, 1603863445, "36a21454-a2ca-11eb-bbaa-93a81c686f21", nil, nil),
    			modTime:        time.Unix(1603863445, 0),
    			expectedErr:    nil,
    			expectedQuorum: 8,
    		},
    		{
    			fis:            getNFInfo(16, 7, 1603863445, "36a21454-a2ca-11eb-bbaa-93a81c686f21", nil, nil),
    			modTime:        time.Unix(1603863445, 0),
    			expectedErr:    InsufficientReadQuorum{},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 20:57:37 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top