- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 231 for CAT (0.04 sec)
-
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
- }
- public void testForArrayWithPosition() {
- String[] array = {"foo", "bar", "cat"};
- Iterator<String> iterator = Iterators.forArrayWithPosition(array, 1);
- assertTrue(iterator.hasNext());
- assertEquals("bar", iterator.next());
- assertTrue(iterator.hasNext());
- assertEquals("cat", iterator.next());
- assertFalse(iterator.hasNext());
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
README.md
- ## Test using MinIO Client `mc`
- `mc` provides a modern alternative to UNIX commands like ls, cat, cp, mirror, diff etc. It supports filesystems and Amazon S3 compatible cloud storage services. Follow the MinIO Client [Quickstart Guide](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart) for further instructions.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:34:11 UTC 2024 - 18.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
- doTestTrimFrom("x-x-", "x-x");
- doTestTrimFrom("x-xx", "x-xx");
- doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x");
- // additional testing using the doc example
- assertEquals("cat", anyOf("ab").trimFrom("abacatbab"));
- }
- private void doTestTrimFrom(String in, String out) {
- // Try a few different matchers which all match '-' and not 'x'
- assertEquals(out, is('-').trimFrom(in));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 18:32:41 UTC 2024 - 30.1K bytes - Viewed (0) -
go.sum
- cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo=
- cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k=
- dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s=
- dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
- github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 h1:He8afgbRMd7mFxO99hRNu+6tazq8nFF9lIwo9JFroBk=
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 06:23:25 UTC 2024 - 62.2K bytes - Viewed (0) -
docs/em/docs/tutorial/sql-databases.md
- ⏮️ 🐜, 👆 🛎 ✍ 🎓 👈 🎨 🏓 🗄 💽, 🔠 🔢 🎓 🎨 🏓, ⏮️ 📛 & 🆎.
- 🖼 🎓 `Pet` 💪 🎨 🗄 🏓 `pets`.
- & 🔠 *👐* 🎚 👈 🎓 🎨 ⏭ 💽.
- 🖼 🎚 `orion_cat` (👐 `Pet`) 💪 ✔️ 🔢 `orion_cat.type`, 🏓 `type`. & 💲 👈 🔢 💪, ✅ `"cat"`.
- 👫 🐜 ✔️ 🧰 ⚒ 🔗 ⚖️ 🔗 🖖 🏓 ⚖️ 👨💼.
- 👉 🌌, 👆 💪 ✔️ 🔢 `orion_cat.owner` & 👨💼 🔜 🔌 💽 👉 🐶 👨💼, ✊ ⚪️➡️ 🏓 *👨💼*.
- , `orion_cat.owner.name` 💪 📛 (⚪️➡️ `name` 🏓 `owners` 🏓) 👉 🐶 👨💼.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/CharMatcherTest.java
- doTestTrimFrom("x-x-", "x-x");
- doTestTrimFrom("x-xx", "x-xx");
- doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x");
- // additional testing using the doc example
- assertEquals("cat", anyOf("ab").trimFrom("abacatbab"));
- }
- private void doTestTrimFrom(String in, String out) {
- // Try a few different matchers which all match '-' and not 'x'
- assertEquals(out, is('-').trimFrom(in));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 18:32:41 UTC 2024 - 30.1K bytes - Viewed (0) -
src/cmd/api/main_test.go
- log.Fatal(err)
- }
- s := string(bs)
- // Diagnose common mistakes people make,
- // since there is no apifmt to format these files.
- // The missing final newline is important for the
- // final release step of cat next/*.txt >go1.X.txt.
- // If the files don't end in full lines, the concatenation goes awry.
- if strings.Contains(s, "\r") {
- log.Printf("%s: contains CRLFs", filename)
- exitCode = 1
- }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 31.4K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
- * the beginning and from the end of the string. For example:
- *
- * <pre>{@code
- * CharMatcher.anyOf("ab").trimFrom("abacatbab")
- * }</pre>
- *
- * ... returns {@code "cat"}.
- *
- * <p>Note that:
- *
- * <pre>{@code
- * CharMatcher.inRange('\0', ' ').trimFrom(str)
- * }</pre>
- *
- * ... is equivalent to {@link String#trim()}.
- */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0) -
docs/zh/docs/tutorial/sql-databases.md
- 使用 ORM,您通常会在 SQL 数据库中创建一个代表映射的类,该类的每个属性代表一个列,具有名称和类型。
- 例如,一个类`Pet`可以表示一个 SQL 表`pets`。
- 该类的每个*实例对象都代表数据库中的一行数据。*
- 又例如,一个对象`orion_cat`(`Pet`的一个实例)可以有一个属性`orion_cat.type`, 对标数据库中的`type`列。并且该属性的值可以是其它,例如`"cat"`。
- 这些 ORM 还具有在表或实体之间建立关系的工具(比如创建多表关系)。
- 这样,您还可以拥有一个属性`orion_cat.owner`,它包含该宠物所有者的数据,这些数据取自另外一个表。
- 因此,`orion_cat.owner.name`可能是该宠物主人的姓名(来自表`owners`中的列`name`)。
- 它可能有一个像`"Arquilian"`(一种业务逻辑)。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 27.1K bytes - Viewed (0) -
okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
- nl.ca
- ns.ca
- nt.ca
- nu.ca
- on.ca
- pe.ca
- qc.ca
- sk.ca
- yk.ca
- // gc.ca: https://en.wikipedia.org/wiki/.gc.ca
- // see also: http://registry.gc.ca/en/SubdomainFAQ
- gc.ca
- // cat : https://en.wikipedia.org/wiki/.cat
- cat
- // cc : https://en.wikipedia.org/wiki/.cc
- cc
- // cd : https://en.wikipedia.org/wiki/.cd
- // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
- cd
- gov.cd
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 240.3K bytes - Viewed (0)