Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 775 for stopTs (0.08 seconds)

  1. docs/fr/docs/tutorial/first-steps.md

    # Démarrer { #first-steps }
    
    Le fichier **FastAPI** le plus simple possible pourrait ressembler à ceci :
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    Copiez cela dans un fichier `main.py`.
    
    Démarrez le serveur en direct :
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  2. docs/pt/docs/tutorial/first-steps.md

    # Primeiros Passos { #first-steps }
    
    O arquivo FastAPI mais simples pode se parecer com:
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    Copie o conteúdo para um arquivo `main.py`.
    
    Execute o servidor ao vivo:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  3. docs/zh/docs/tutorial/first-steps.md

    # 第一步 { #first-steps }
    
    最简单的 FastAPI 文件可能像下面这样:
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    将其复制到 `main.py` 文件中。
    
    运行实时服务器:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
                 Searching for package file structure from directories
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 13.3K bytes
    - Click Count (0)
  4. src/packaging/common/scripts/prerm

            exit 1
        ;;
    esac
    
    # Stops the service
    if [ "$STOP_REQUIRED" = "true" ]; then
        echo -n "Stopping fess service..."
        if command -v systemctl >/dev/null; then
            systemctl --no-reload stop fess.service > /dev/null 2>&1 || true
    
        elif [ -x /etc/init.d/fess ]; then
            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 1.7K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/security/first-steps.md

    # セキュリティ - 最初の一歩 { #security-first-steps }
    
    あるドメインに、**バックエンド** APIを持っているとしましょう。
    
    そして、別のドメインか同じドメインの違うパス(またはモバイルアプリケーションの中)に **フロントエンド**を持っています。
    
    さらに、フロントエンドが**ユーザー名**と**パスワード**を使って、バックエンドで認証する方法を用意したいです。
    
    **FastAPI**では、これを**OAuth2**を使用して構築できます。
    
    ですが、ちょっとした必要な情報を探すために、長い仕様のすべてを読む必要はありません。
    
    **FastAPI**が提供するツールを使って、セキュリティを制御してみましょう。
    
    ## どう見えるか { #how-it-looks }
    
    まずはこのコードを使って、どう動くか観察します。その後で、何が起こっているのか理解しましょう。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/first-steps.md

    # First Steps { #first-steps }
    
    The simplest FastAPI file could look like this:
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    Copy that to a file `main.py`.
    
    Run the live server:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  7. docs/de/docs/tutorial/first-steps.md

    # Erste Schritte { #first-steps }
    
    Die einfachste FastAPI-Datei könnte wie folgt aussehen:
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    Kopieren Sie das in eine Datei `main.py`.
    
    Starten Sie den Live-Server:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/security/first-steps.md

    # Güvenlik - İlk Adımlar { #security-first-steps }
    
    **backend** API’nizin bir domain’de olduğunu düşünelim.
    
    Ve başka bir domain’de ya da aynı domain’in farklı bir path’inde (veya bir mobil uygulamada) bir **frontend**’iniz var.
    
    Ve frontend’in, **username** ve **password** kullanarak backend ile kimlik doğrulaması yapabilmesini istiyorsunuz.
    
    Bunu **FastAPI** ile **OAuth2** kullanarak oluşturabiliriz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  9. docs/tr/docs/tutorial/first-steps.md

    # İlk Adımlar { #first-steps }
    
    En sade FastAPI dosyası şu şekilde görünür:
    
    {* ../../docs_src/first_steps/tutorial001_py310.py *}
    
    Yukarıdakini `main.py` adlı bir dosyaya kopyalayın.
    
    Canlı sunucuyu çalıştırın:
    
    <div class="termy">
    
    ```console
    $ <font color="#4E9A06">fastapi</font> dev
    
      <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span>  Starting development server 🚀
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.4K bytes
    - Click Count (0)
  10. cmd/utils.go

    	return p.records
    }
    
    // Stop the currently running benchmark.
    func (p profilerWrapper) Stop() ([]byte, error) {
    	return p.stopFn()
    }
    
    // Extension returns the extension without dot prefix.
    func (p profilerWrapper) Extension() string {
    	return p.ext
    }
    
    // Returns current profile data, returns error if there is no active
    // profiling in progress. Stops an active profile.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 33K bytes
    - Click Count (0)
Back to Top