Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 231 for CAT (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

    1. }
    2.  
    3. public void testForArrayWithPosition() {
    4. String[] array = {"foo", "bar", "cat"};
    5. Iterator<String> iterator = Iterators.forArrayWithPosition(array, 1);
    6. assertTrue(iterator.hasNext());
    7. assertEquals("bar", iterator.next());
    8. assertTrue(iterator.hasNext());
    9. assertEquals("cat", iterator.next());
    10. assertFalse(iterator.hasNext());
    11. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. README.md

    1. ## Test using MinIO Client `mc`
    2.  
    3. `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)
  3. android/guava-tests/test/com/google/common/base/CharMatcherTest.java

    1. doTestTrimFrom("x-x-", "x-x");
    2. doTestTrimFrom("x-xx", "x-xx");
    3. doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x");
    4. // additional testing using the doc example
    5. assertEquals("cat", anyOf("ab").trimFrom("abacatbab"));
    6. }
    7.  
    8. private void doTestTrimFrom(String in, String out) {
    9. // Try a few different matchers which all match '-' and not 'x'
    10. 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)
  4. go.sum

    1. cloud.google.com/go/compute/metadata v0.5.2 h1:UxK4uu/Tn+I3p2dYWTfiX4wva7aYlKixAHn3fyqngqo=
    2. cloud.google.com/go/compute/metadata v0.5.2/go.mod h1:C66sj2AluDcIqakBq/M8lw8/ybHgOZqin2obFxa/E5k=
    3. dario.cat/mergo v1.0.1 h1:Ra4+bf83h2ztPIQYNP99R6m+Y7KfnARDfID+a+vLl4s=
    4. dario.cat/mergo v1.0.1/go.mod h1:uNxQE+84aUszobStD9th8a29P2fMDhsBdgRYvZOxGmk=
    5. 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)
  5. docs/em/docs/tutorial/sql-databases.md

    1. ⏮️ 🐜, 👆 🛎 🎓 👈 🎨 🏓 🗄 💽, 🔠 🔢 🎓 🎨 🏓, ⏮️ 📛 &amp; 🆎.
    2.  
    3. 🖼 🎓 `Pet` 💪 🎨 🗄 🏓 `pets`.
    4.  
    5. &amp; 🔠 *👐* 🎚 👈 🎓 🎨 💽.
    6.  
    7. 🖼 🎚 `orion_cat` (👐 `Pet`) 💪 ✔️ 🔢 `orion_cat.type`, 🏓 `type`. &amp; 💲 👈 🔢 💪, `"cat"`.
    8.  
    9. 👫 🐜 ✔️ 🧰 🔗 ⚖️ 🔗 🖖 🏓 ⚖️ 👨‍💼.
    10.  
    11. 👉 🌌, 👆 💪 ✔️ 🔢 `orion_cat.owner` &amp; 👨‍💼 🔜 🔌 💽 👉 🐶 👨‍💼, ⚪️➡️ 🏓 *👨‍💼*.
    12.  
    13. , `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)
  6. guava-tests/test/com/google/common/base/CharMatcherTest.java

    1. doTestTrimFrom("x-x-", "x-x");
    2. doTestTrimFrom("x-xx", "x-xx");
    3. doTestTrimFrom("x-x--xx---x----x", "x-x--xx---x----x");
    4. // additional testing using the doc example
    5. assertEquals("cat", anyOf("ab").trimFrom("abacatbab"));
    6. }
    7.  
    8. private void doTestTrimFrom(String in, String out) {
    9. // Try a few different matchers which all match '-' and not 'x'
    10. 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)
  7. src/cmd/api/main_test.go

    1. log.Fatal(err)
    2. }
    3. s := string(bs)
    4.  
    5. // Diagnose common mistakes people make,
    6. // since there is no apifmt to format these files.
    7. // The missing final newline is important for the
    8. // final release step of cat next/*.txt >go1.X.txt.
    9. // If the files don't end in full lines, the concatenation goes awry.
    10. if strings.Contains(s, "\r") {
    11. log.Printf("%s: contains CRLFs", filename)
    12. exitCode = 1
    13. }
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

    1. * the beginning and from the end of the string. For example:
    2. *
    3. * <pre>{@code
    4. * CharMatcher.anyOf("ab").trimFrom("abacatbab")
    5. * }</pre>
    6. *
    7. * ... returns {@code "cat"}.
    8. *
    9. * <p>Note that:
    10. *
    11. * <pre>{@code
    12. * CharMatcher.inRange('\0', ' ').trimFrom(str)
    13. * }</pre>
    14. *
    15. * ... is equivalent to {@link String#trim()}.
    16. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/sql-databases.md

    1. 使用 ORM,您通常会在 SQL 数据库中创建一个代表映射的类,该类的每个属性代表一个列,具有名称和类型。
    2.  
    3. 例如,一个类`Pet`可以表示一个 SQL `pets`
    4.  
    5. 该类的每个*实例对象都代表数据库中的一行数据。*
    6.  
    7. 又例如,一个对象`orion_cat``Pet`的一个实例)可以有一个属性`orion_cat.type`, 对标数据库中的`type`列。并且该属性的值可以是其它,例如`"cat"`
    8.  
    9. 这些 ORM 还具有在表或实体之间建立关系的工具(比如创建多表关系)。
    10.  
    11. 这样,您还可以拥有一个属性`orion_cat.owner`,它包含该宠物所有者的数据,这些数据取自另外一个表。
    12.  
    13. 因此,`orion_cat.owner.name`可能是该宠物主人的姓名(来自表`owners`中的列`name`)。
    14.  
    15. 它可能有一个像`"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)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    1. nl.ca
    2. ns.ca
    3. nt.ca
    4. nu.ca
    5. on.ca
    6. pe.ca
    7. qc.ca
    8. sk.ca
    9. yk.ca
    10. // gc.ca: https://en.wikipedia.org/wiki/.gc.ca
    11. // see also: http://registry.gc.ca/en/SubdomainFAQ
    12. gc.ca
    13.  
    14. // cat : https://en.wikipedia.org/wiki/.cat
    15. cat
    16.  
    17. // cc : https://en.wikipedia.org/wiki/.cc
    18. cc
    19.  
    20. // cd : https://en.wikipedia.org/wiki/.cd
    21. // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
    22. cd
    23. 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)
Back to top