Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1321 - 1330 of 1,460 for example2 (0.14 sec)

  1. docs/em/docs/python-types.md

    # ๐Ÿ ๐Ÿ†Ž ๐ŸŽถ
    
    ๐Ÿ โœ”๏ธ ๐Ÿ•โ€๐Ÿฆบ ๐Ÿ“ฆ "๐Ÿ†Ž ๐Ÿ”‘".
    
    ๐Ÿ‘ซ **"๐Ÿ†Ž ๐Ÿ”‘"** ๐ŸŽ โ• ๐Ÿ‘ˆ โœ” ๐Ÿ“ฃ <abbr title="for example: str, int, float, bool">๐Ÿ†Ž</abbr> ๐Ÿ”ข.
    
    ๐Ÿ“ฃ ๐Ÿ†Ž ๐Ÿ‘† ๐Ÿ”ข, ๐Ÿ‘จโ€๐ŸŽจ &amp; ๐Ÿงฐ ๐Ÿ’ช ๐Ÿค ๐Ÿ‘† ๐Ÿ‘ ๐Ÿ•โ€๐Ÿฆบ.
    
    ๐Ÿ‘‰ **โฉ ๐Ÿ”ฐ / โ†—๏ธ** ๐Ÿ”ƒ ๐Ÿ ๐Ÿ†Ž ๐Ÿ”‘. โšซ๏ธ ๐Ÿ“” ๐Ÿ•ด ๐Ÿ’ฏ ๐Ÿ’ช โš™๏ธ ๐Ÿ‘ซ โฎ๏ธ **FastAPI**... โ” ๐Ÿค™ ๐Ÿ“ถ ๐Ÿฅ.
    
    **FastAPI** ๐ŸŒ โš“๏ธ ๐Ÿ”› ๐Ÿ‘ซ ๐Ÿ†Ž ๐Ÿ”‘, ๐Ÿ‘ซ ๐Ÿค โšซ๏ธ ๐Ÿ“š ๐Ÿ“ˆ &amp; ๐Ÿ’ฐ.
    
    โœ‹๏ธ ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ™… โš™๏ธ **FastAPI**, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’ฐ โšช๏ธโžก๏ธ ๐Ÿซ ๐Ÿ– ๐Ÿ”ƒ ๐Ÿ‘ซ.
    
    /// note
    
    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ ๐Ÿ•ด, &amp; ๐Ÿ‘† โช ๐Ÿ’ญ ๐ŸŒ ๐Ÿ”ƒ ๐Ÿ†Ž ๐Ÿ”‘, ๐Ÿšถ โญ ๐Ÿ“ƒ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. cmd/metrics-v3-types.go

    	s = strings.ReplaceAll(s, SlashSeparator, "_")
    	s = strings.ReplaceAll(s, "-", "_")
    	return "minio_" + s
    }
    
    // isDescendantOf returns true if it is a descendant of (or the same as)
    // `ancestor`.
    //
    // For example:
    //
    //	 	/a, /a/b, /a/b/c are all descendants of /a.
    //		/abc or /abd/a are not descendants of /ab.
    func (cp collectorPath) isDescendantOf(arg string) bool {
    	descendant := string(cp)
    	if descendant == arg {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jul 30 22:28:46 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. cmd/object-api-interface.go

    type BucketOptions struct {
    	Deleted    bool // true only when site replication is enabled
    	Cached     bool // true only when we are requesting a cached response instead of hitting the disk for example ListBuckets() call.
    	NoMetadata bool
    }
    
    // SetReplicaStatus sets replica status and timestamp for delete operations in ObjectOptions
    func (o *ObjectOptions) SetReplicaStatus(st replication.StatusType) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 22 21:57:20 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. docs/bucket/replication/DESIGN.md

    ### Internal metadata for replication
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableList.java

        int size = size();
        for (int i = 0; i < size; i++) {
          dst[offset + i] = get(i);
        }
        return offset + size;
      }
    
      /**
       * Returns a view of this immutable list in reverse order. For example, {@code ImmutableList.of(1,
       * 2, 3).reverse()} is equivalent to {@code ImmutableList.of(3, 2, 1)}.
       *
       * @return a view of this immutable list in reverse order
       * @since 7.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 16 19:14:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/security/simple-oauth2.md

    ### Obtenha seus prรณprios dados de usuรกrio
    
    Agora use a operaรงรฃo `GET` com o caminho `/users/me`.
    
    Vocรช obterรก os dados do seu usuรกrio, como:
    
    ```JSON
    {
      "username": "johndoe",
      "email": "johndoe@example.com",
      "full_name": "John Doe",
      "disabled": false,
      "hashed_password": "fakehashedsecret"
    }
    ```
    
    <img src="/img/tutorial/security/image06.png">
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 12:17:45 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/graph/AbstractGraphTest.java

     * created for testing should have Integer node and String edge objects.
     *
     * <p>Test cases that should be handled similarly in any graph implementation are included in this
     * class. For example, testing that {@code nodes()} method returns the set of the nodes in the
     * graph. The following test cases are left for the subclasses to handle:
     *
     * <ul>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

     * returned.
     *
     * <p>All default instances returned by {@link #get} are generics-safe. Clients won't get type
     * errors for using {@code get(Comparator.class)} as a {@code Comparator<Foo>}, for example.
     * Immutable empty instances are returned for collection types; {@code ""} for string; {@code 0} for
     * number types; reasonable default instance for other stateless types. For mutable types, a fresh
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    ### Step 3: *path operation*ใ‚’ไฝœๆˆ
    
    #### ใƒ‘ใ‚น
    
    ใ“ใ“ใงใฎใ€Œใƒ‘ใ‚นใ€ใจใฏใ€ๆœ€ๅˆใฎ`/`ใ‹ใ‚‰ๅง‹ใพใ‚‹URLใฎๆœ€ๅพŒใฎ้ƒจๅˆ†ใ‚’ๆŒ‡ใ—ใพใ™ใ€‚
    
    ใ—ใŸใŒใฃใฆใ€ๆฌกใฎใ‚ˆใ†ใชURLใงใฏ:
    
    ```
    https://example.com/items/foo
    ```
    
    ...ใƒ‘ใ‚นใฏๆฌกใฎใ‚ˆใ†ใซใชใ‚Šใพใ™:
    
    ```
    /items/foo
    ```
    
    /// info | "ๆƒ…ๅ ฑ"
    
    ใ€Œใƒ‘ใ‚นใ€ใฏไธ€่ˆฌใซใ€Œใ‚จใƒณใƒ‰ใƒใ‚คใƒณใƒˆใ€ใพใŸใฏใ€Œใƒซใƒผใƒˆใ€ใจใ‚‚ๅ‘ผใฐใ‚Œใพใ™ใ€‚
    
    ///
    
    APIใ‚’ๆง‹็ฏ‰ใ™ใ‚‹้š›ใ€ใ€Œใƒ‘ใ‚นใ€ใฏใ€Œ้–ขๅฟƒไบ‹ใ€ใจใ€Œใƒชใ‚ฝใƒผใ‚นใ€ใ‚’ๅˆ†้›ขใ™ใ‚‹ใŸใ‚ใฎไธป่ฆใชๆ–นๆณ•ใงใ™ใ€‚
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

       * source Iterable, unless that Iterator is unmodifiable.
       */
      protected abstract I newTargetIterator();
    
      /**
       * Override this to verify anything after running a list of Stimuli.
       *
       * <p>For example, verify that calls to remove() actually removed the correct elements.
       *
       * @param elements the expected elements passed to the constructor, as mutated by {@code
       *     remove()}, {@code set()}, and {@code add()} calls
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top