Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1831 - 1840 of 2,241 for intervals (0.08 sec)

  1. docs/em/docs/contributing.md

    # ๐Ÿ› ๏ธ - ๐Ÿ“‰
    
    ๐Ÿฅ‡, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ’š ๐Ÿ‘€ ๐Ÿ”ฐ ๐ŸŒŒ [โ„น FastAPI & ๐Ÿคš โ„น](help-fastapi.md){.internal-link target=_blank}.
    
    ## ๐Ÿ› ๏ธ
    
    ๐Ÿšฅ ๐Ÿ‘† โช ๐Ÿ–– ๐Ÿ—ƒ & ๐Ÿ‘† ๐Ÿ’ญ ๐Ÿ‘ˆ ๐Ÿ‘† ๐Ÿ’ช โฌ ๐Ÿคฟ ๐Ÿ“Ÿ, ๐Ÿ“ฅ ๐Ÿ“„ โš’ ๐Ÿ†™ ๐Ÿ‘† ๐ŸŒ.
    
    ### ๐Ÿ•น ๐ŸŒ โฎ๏ธ `venv`
    
    ๐Ÿ‘† ๐Ÿ’ช โœ ๐Ÿ•น ๐ŸŒ ๐Ÿ“ โš™๏ธ ๐Ÿ `venv` ๐Ÿ•น:
    
    <div class="termy">
    
    ```console
    $ python -m venv env
    ```
    
    </div>
    
    ๐Ÿ‘ˆ ๐Ÿ”œ โœ ๐Ÿ“ `./env/` โฎ๏ธ ๐Ÿ ๐Ÿ’ฑ &amp; โคด๏ธ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’ช โŽ ๐Ÿ“ฆ ๐Ÿ‘ˆ โŽ ๐ŸŒ.
    
    ### ๐Ÿ”“ ๐ŸŒ
    
    ๐Ÿ”“ ๐Ÿ†• ๐ŸŒ โฎ๏ธ:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. docs/ko/docs/python-types.md

    ///
    
    **FastAPI**๋Š” ๋ชจ๋‘ Pydantic์„ ๊ธฐ๋ฐ˜์œผ๋กœ ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์ด ๋ชจ๋“  ๊ฒƒ์ด ์‹ค์ œ๋กœ ์–ด๋–ป๊ฒŒ ์‚ฌ์šฉ๋˜๋Š”์ง€์— ๋Œ€ํ•ด์„œ๋Š” [์ž์Šต์„œ - ์‚ฌ์šฉ์ž ์•ˆ๋‚ด์„œ](tutorial/index.md){.internal-link target=_blank} ์—์„œ ๋” ๋งŽ์ด ํ™•์ธํ•˜์‹ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ## **FastAPI**์—์„œ์˜ ํƒ€์ž… ํžŒํŠธ
    
    **FastAPI**๋Š” ์—ฌ๋Ÿฌ ๋ถ€๋ถ„์—์„œ ํƒ€์ž… ํžŒํŠธ์˜ ์žฅ์ ์„ ์ทจํ•˜๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
    
    **FastAPI**์—์„œ ํƒ€์ž… ํžŒํŠธ์™€ ํ•จ๊ป˜ ๋งค๊ฐœ๋ณ€์ˆ˜๋ฅผ ์„ ์–ธํ•˜๋ฉด ์žฅ์ ์€:
    
    * **์—๋””ํ„ฐ ๋„์›€**.
    * **ํƒ€์ž… ํ™•์ธ**.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionResult.java

        }
    
        public ArtifactResolutionResult setRepositories(final List<ArtifactRepository> repositories) {
            this.repositories = repositories;
    
            return this;
        }
    
        //
        // Internal
        //
    
        private <T> List<T> initList(final List<T> l) {
            if (l == null) {
                return new ArrayList<>();
            }
            return l;
        }
    
        public String toString() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. cmd/metacache-manager.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"fmt"
    	"runtime/debug"
    	"sync"
    	"time"
    
    	"github.com/minio/minio/internal/logger"
    )
    
    // localMetacacheMgr is the *local* manager for this peer.
    // It should never be used directly since buckets are
    // distributed deterministically.
    // Therefore no cluster locks are required.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.idn
    
    import okio.Buffer
    import okio.ByteString.Companion.encodeUtf8
    
    /**
     * An [RFC 3492] punycode decoder for converting ASCII to Unicode domain name labels. This is
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. gradlew

    #       Darwin, MinGW, and NonStop.
    #
    #   (3) This script is generated from the Groovy template
    #       https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
    #       within the Gradle project.
    #
    #       You can find Gradle at https://github.com/gradle/gradle/.
    #
    ##############################################################################
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactLinkedHashSet.java

        return set;
      }
    
      /**
       * Creates a {@code CompactLinkedHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
       * @return a new, empty {@code CompactLinkedHashSet} with enough capacity to hold {@code
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 09 00:15:47 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/body.md

    ///
    
    ## Without Pydantic
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 16:58:19 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. docs/fr/docs/tutorial/body.md

    Si vous ne voulez pas utiliser des modรจles Pydantic, vous pouvez aussi utiliser des paramรจtres de **Corps**. Pour cela, allez voir la partie de la documentation sur  [Corps de la requรชte - Paramรจtres multiples](body-multiple-params.md){.internal-link target=_blank}....
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 27 17:34:41 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. docs/zh/docs/tutorial/extra-models.md

    ไนฆๆŽฅไธŠๆ–‡๏ผŒๅคšไธชๅ…ณ่”ๆจกๅž‹่ฟ™็งๆƒ…ๅ†ตๅพˆๅธธ่งใ€‚
    
    ็‰นๅˆซๆ˜ฏ็”จๆˆทๆจกๅž‹๏ผŒๅ› ไธบ๏ผš
    
    * **่พ“ๅ…ฅๆจกๅž‹**ๅบ”่ฏฅๅซๅฏ†็ 
    * **่พ“ๅ‡บๆจกๅž‹**ไธๅบ”ๅซๅฏ†็ 
    * **ๆ•ฐๆฎๅบ“ๆจกๅž‹**้œ€่ฆๅŠ ๅฏ†็š„ๅฏ†็ 
    
    /// danger | "ๅฑ้™ฉ"
    
    ๅƒไธ‡ไธ่ฆๅญ˜ๅ‚จ็”จๆˆท็š„ๆ˜Žๆ–‡ๅฏ†็ ใ€‚ๅง‹็ปˆๅญ˜ๅ‚จๅฏไปฅ่ฟ›่กŒ้ชŒ่ฏ็š„**ๅฎ‰ๅ…จๅ“ˆๅธŒๅ€ผ**ใ€‚
    
    ๅฆ‚ๆžœไธไบ†่งฃ่ฟ™ๆ–น้ข็š„็Ÿฅ่ฏ†๏ผŒ่ฏทๅ‚้˜…[ๅฎ‰ๅ…จๆ€งไธญ็š„็ซ ่Š‚](security/simple-oauth2.md#password-hashing){.internal-link target=_blank}๏ผŒไบ†่งฃไป€ไนˆๆ˜ฏ**ๅฏ†็ ๅ“ˆๅธŒ**ใ€‚
    
    ///
    
    ## ๅคšไธชๆจกๅž‹
    
    ไธ‹้ข็š„ไปฃ็ ๅฑ•็คบไบ†ไธๅŒๆจกๅž‹ๅค„็†ๅฏ†็ ๅญ—ๆฎต็š„ๆ–นๅผ๏ผŒๅŠไฝฟ็”จไฝ็ฝฎ็š„ๅคง่‡ดๆ€่ทฏ๏ผš
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="7  9  14  20  22  27-28  31-33  38-39"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top