Search Options

Results per page
Sort
Preferred Languages
Advance

Results 681 - 690 of 1,553 for Examples (0.07 sec)

  1. guava-testlib/src/com/google/common/collect/testing/TestUnhashableCollectionGenerator.java

    @ElementTypesAreNonnullByDefault
    public abstract class TestUnhashableCollectionGenerator<T extends Collection<UnhashableObject>>
        implements TestCollectionGenerator<UnhashableObject> {
      @Override
      public SampleElements<UnhashableObject> samples() {
        return new Unhashables();
      }
    
      @Override
      public T create(Object... elements) {
        UnhashableObject[] array = createArray(elements.length);
        int i = 0;
        for (Object e : elements) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/test/resources/poms/validation/raw-model/ok-ci-friendly-all-expressions.xml

      xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <groupId>com.example.group</groupId>
      <artifactId>valid-version-sha1</artifactId>
      <version>${revision}${changelist}${sha1}</version>
    
      <description>
        This will test if the validation for the ci friendly versions
        is working correct.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. docs/em/docs/deployment/https.md

    /// tip
    
    ๐Ÿ‘‰ ๐Ÿ†” ๐Ÿ“› ๐Ÿ• ๐ŸŒŒ โญ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”, โœ‹๏ธ ๐ŸŒ ๐Ÿช€ ๐Ÿ”› ๐Ÿ†” &amp; ๐Ÿ“ข ๐Ÿ“ข, โšซ๏ธ ๐Ÿ’ธ ๐Ÿ’ฌ โšซ๏ธ ๐Ÿ“ฅ.
    
    ///
    
    ### ๐Ÿ“
    
    ๐Ÿ”œ โžก๏ธ ๐ŸŽฏ ๐Ÿ”› ๐ŸŒ โ˜‘ ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐Ÿ•.
    
    ๐Ÿฅ‡, ๐Ÿ–ฅ ๐Ÿ”œ โœ… โฎ๏ธ **๐Ÿ“ ๐Ÿ’ฝ** โšซ๏ธโ” **๐Ÿ“ข ๐Ÿ†”**, ๐Ÿ‘‰ ๐Ÿ’ผ, `someapp.example.com`.
    
    ๐Ÿ“ ๐Ÿ’ฝ ๐Ÿ”œ ๐Ÿ’ฌ ๐Ÿ–ฅ โš™๏ธ ๐ŸŽฏ **๐Ÿ“ข ๐Ÿ“ข**. ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ“ข ๐Ÿ“ข ๐Ÿ“ข โš™๏ธ ๐Ÿ‘† ๐Ÿ’ฝ, ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ”— ๐Ÿ“ ๐Ÿ’ฝ.
    
    <img src="/img/deployment/https/https01.svg">
    
    ### ๐Ÿค ๐Ÿค โ–ถ๏ธ
    
    ๐Ÿ–ฅ ๐Ÿ”œ โคด๏ธ ๐Ÿ”— โฎ๏ธ ๐Ÿ‘ˆ ๐Ÿ“ข ๐Ÿ“ข ๐Ÿ”› **โ›ด 4๏ธโƒฃ4๏ธโƒฃ3๏ธโƒฃ** (๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” โ›ด).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/body-nested-models.md

        "tax": 3.2,
        "tags": [
            "rock",
            "metal",
            "bar"
        ],
        "images": [
            {
                "url": "http://example.com/baz.jpg",
                "name": "The Foo live"
            },
            {
                "url": "http://example.com/dave.jpg",
                "name": "The Baz"
            }
        ]
    }
    ```
    
    /// info
    
    ่ฏทๆณจๆ„ `images` ้”ฎ็Žฐๅœจๅ…ทๆœ‰ไธ€็ป„ image ๅฏน่ฑกๆ˜ฏๅฆ‚ไฝ•ๅ‘็”Ÿ็š„ใ€‚
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/TestEnumMultisetGenerator.java

     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public abstract class TestEnumMultisetGenerator implements TestMultisetGenerator<AnEnum> {
      @Override
      public SampleElements<AnEnum> samples() {
        return new Enums();
      }
    
      @Override
      public Multiset<AnEnum> create(Object... elements) {
        AnEnum[] array = new AnEnum[elements.length];
        int i = 0;
        for (Object e : elements) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. docs/ja/docs/tutorial/cors.md

    ไปฅไธ‹ใฎๅผ•ๆ•ฐใŒใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใพใ™:
    
    * `allow_origins` - ใ‚ชใƒชใ‚ธใƒณ้–“ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’่จฑๅฏใ™ใ‚‹ใ‚ชใƒชใ‚ธใƒณใฎใƒชใ‚นใƒˆใ€‚ไพ‹ใˆใฐใ€`['https://example.org', 'https://www.example.org']`ใ€‚`['*']`ใ‚’ไฝฟ็”จใ—ใฆไปปๆ„ใฎใ‚ชใƒชใ‚ธใƒณใ‚’่จฑๅฏใงใใพใ™ใ€‚
    * `allow_origin_regex` - ใ‚ชใƒชใ‚ธใƒณ้–“ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’่จฑๅฏใ™ใ‚‹ใ‚ชใƒชใ‚ธใƒณใฎๆญฃ่ฆ่กจ็พๆ–‡ๅญ—ๅˆ—ใ€‚ไพ‹ใˆใฐใ€`'https://.*\.example\.org'`ใ€‚
    * `allow_methods` - ใ‚ชใƒชใ‚ธใƒณ้–“ใƒชใ‚ฏใ‚จใ‚นใƒˆใง่จฑๅฏใ™ใ‚‹HTTPใƒกใ‚ฝใƒƒใƒ‰ใฎใƒชใ‚นใƒˆใ€‚ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใฏ `['GET']` ใงใ™ใ€‚`['*']`ใ‚’ไฝฟ็”จใ—ใฆใ™ในใฆใฎๆจ™ๆบ–ใƒกใ‚ฝใƒƒใƒ‰ใ‚’่จฑๅฏใงใใพใ™ใ€‚
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

     * supplementary code points, use ICU4J UCharacter and UnicodeSet (freeze() after building). For
     * basic text processing based on UnicodeSet use the ICU4J UnicodeSetSpanner.
     *
     * <p>Example usages:
     *
     * <pre>
     *   String trimmed = {@link #whitespace() whitespace()}.{@link #trimFrom trimFrom}(userInput);
     *   if ({@link #ascii() ascii()}.{@link #matchesAllOf matchesAllOf}(s)) { ... }</pre>
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java

     * code point. An additional safe range is provided that determines whether code points without
     * specific replacements are to be considered safe and left unescaped or should be escaped in a
     * general way.
     *
     * <p>A good example of usage of this class is for HTML escaping where the replacement array
     * contains information about the named HTML entities such as {@code &amp;} and {@code &quot;} while
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. docs/en/docs/img/deployment/https/https02.drawio

                    </mxCell>
                    <mxCell id="29" value="&lt;font face=&quot;Roboto&quot; data-font-src=&quot;https://fonts.googleapis.com/css?family=Roboto&quot; style=&quot;font-size: 24px&quot;&gt;https://someapp.example.com&lt;/font&gt;" style="rounded=0;whiteSpace=wrap;html=1;fontStyle=1;strokeWidth=4;" parent="33" vertex="1">
                        <mxGeometry x="60" y="27" width="380" height="250" as="geometry"/>
                    </mxCell>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/Cache.java

       * value. Otherwise, a call that passes one {@code loader} may return the result of another call
       * with a differently behaving {@code loader}. For example, a call that requests a short timeout
       * for an RPC may wait for a similar call that requests a long timeout, or a call by an
       * unprivileged user may return a resource accessible only to a privileged user making a similar
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top