- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for fo (0.03 sec)
-
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
// The following test vectors are specified in RFC 4648 itself testEncodingWithSeparators(base64(), "", ""); testEncodingWithSeparators(base64(), "f", "Zg=="); testEncodingWithSeparators(base64(), "fo", "Zm8="); testEncodingWithSeparators(base64(), "foo", "Zm9v"); testEncodingWithSeparators(base64(), "foob", "Zm9vYg=="); testEncodingWithSeparators(base64(), "fooba", "Zm9vYmE=");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 16:27:30 UTC 2024 - 24.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
// The following test vectors are specified in RFC 4648 itself testEncodingWithSeparators(base64(), "", ""); testEncodingWithSeparators(base64(), "f", "Zg=="); testEncodingWithSeparators(base64(), "fo", "Zm8="); testEncodingWithSeparators(base64(), "foo", "Zm9v"); testEncodingWithSeparators(base64(), "foob", "Zm9vYg=="); testEncodingWithSeparators(base64(), "fooba", "Zm9vYmE=");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 16:27:30 UTC 2024 - 24.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/AsciiTest.java
assertEquals("fo...", Ascii.truncate("foobar", 5, "...")); assertEquals("foobar", Ascii.truncate("foobar", 6, "...")); assertEquals("...", Ascii.truncate("foobar", 3, "...")); assertEquals("foobar", Ascii.truncate("foobar", 10, "…")); assertEquals("foo…", Ascii.truncate("foobar", 4, "…")); assertEquals("fo--", Ascii.truncate("foobar", 4, "--"));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 5.4K bytes - Viewed (0) -
docs/language_names.yml
cy: Cymraeg da: dansk de: Deutsch dv: Dhivehi dz: རྫོང་ཁ ee: Eʋegbe el: Ελληνικά en: English eo: Esperanto es: español et: eesti eu: euskara fa: فارسی ff: Fulfulde fi: suomi fj: Vakaviti fo: føroyskt fr: français fy: Frysk ga: Gaeilge gd: Gàidhlig gl: galego gu: ગુજરાતી gv: Gaelg ha: هَوُسَ he: עברית hi: हिन्दी ho: Hiri Motu hr: Hrvatski ht: Kreyòl ayisyen hu: magyar
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jan 22 19:42:53 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/sepa.js
],["BR",29,"F08F05F10U01A01"],["CH",21,"F05A12"],["CR",21,"F03F14"],["CY",28,"F03F05A16"],["CZ",24,"F04F06F10"],["DE",22,"F08F10"],["DK",18,"F04F09F01"],["DO",28,"U04F20"],["EE",20,"F02F02F11F01"],["ES",24,"F04F04F01F01F10"],["FI",18,"F06F07F01"],["FO",18,"F04F09F01"],["FR",27,"F05F05A11F02"],["GB",22,"U04F06F08"],["GE",22,"U02F16"],["GI",23,"U04A15"],["GL",18,"F04F09F01"],["GR",27,"F03F04A16"],["GT",28,"A04A20"],["HR",21,"F07F10"],["HU",28,"F03F04F01F15F01"],["IE",22,"U04F06F08"],["IL",23,"F03F...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 3.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/PredicatesTest.java
Predicate<CharSequence> isFoobar = Predicates.containsPattern("^Fo.*o.*bar$"); assertTrue(isFoobar.apply("Foxyzoabcbar")); assertFalse(isFoobar.apply("Foobarx")); } @GwtIncompatible // Predicates.containsPattern public void testContains_apply() { Predicate<CharSequence> isFoobar = Predicates.contains(Pattern.compile("^Fo.*o.*bar$")); assertTrue(isFoobar.apply("Foxyzoabcbar"));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 32.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/KatakanaToAlphabetConverter.java
map.put("フョ", new String[] { "fyo" }); map.put("ファ", new String[] { "fa" }); map.put("フィ", new String[] { "fi" }); map.put("フェ", new String[] { "fe" }); map.put("フォ", new String[] { "fo" }); map.put("ミャ", new String[] { "mya" }); map.put("ミュ", new String[] { "myu" }); map.put("ミョ", new String[] { "myo" }); map.put("リャ", new String[] { "rya" });
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
tests/test_path.py
response = client.get("/path/param-minlength/fo") assert response.status_code == 422 assert response.json() == IsDict( { "detail": [ { "type": "string_too_short", "loc": ["path", "item_id"], "msg": "String should have at least 3 characters", "input": "fo", "ctx": {"min_length": 3},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 34.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Ascii.java
* * <p>Examples: * * <pre>{@code * Ascii.truncate("foobar", 7, "..."); // returns "foobar" * Ascii.truncate("foobar", 5, "..."); // returns "fo..." * }</pre> * * <p><b>Note:</b> This method <i>may</i> work with certain non-ASCII text but is not safe for use * with arbitrary Unicode text. It is mostly intended for use with text that is known to be safe
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
guava/src/com/google/common/base/Ascii.java
* * <p>Examples: * * <pre>{@code * Ascii.truncate("foobar", 7, "..."); // returns "foobar" * Ascii.truncate("foobar", 5, "..."); // returns "fo..." * }</pre> * * <p><b>Note:</b> This method <i>may</i> work with certain non-ASCII text but is not safe for use * with arbitrary Unicode text. It is mostly intended for use with text that is known to be safe
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0)