- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 395 for div0 (0.02 sec)
-
docs/ja/docs/tutorial/debugging.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3K bytes - Viewed (0) -
docs/ru/docs/environment-variables.md
//// Итак, если вы напечатаете: <div class="termy"> ```console $ python ``` </div> //// tab | Linux, macOS Система **найдет** программу `python` в `/opt/custompython/bin` и запустит ее. Это примерно эквивалентно набору текста: <div class="termy"> ```console $ /opt/custompython/bin/python ``` </div> //// //// tab | Windows
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 11:38:57 UTC 2024 - 12.5K bytes - Viewed (0) -
docs/ja/docs/advanced/websockets.md
## `WebSockets`のインストール まず `WebSockets`のインストールが必要です。 <div class="termy"> ```console $ pip install websockets ---> 100% ``` </div> ## WebSocket クライアント ### 本番環境 本番環境では、React、Vue.js、Angularなどの最新のフレームワークで作成されたフロントエンドを使用しているでしょう。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.2K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
options.template = '<div class="daterangepicker">' + '<div class="ranges"></div>' + '<div class="drp-calendar left">' + '<div class="calendar-table"></div>' + '<div class="calendar-time"></div>' + '</div>' + '<div class="drp-calendar right">' + '<div class="calendar-table"></div>' +
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 64.8K bytes - Viewed (0) -
docs/ru/docs/tutorial/first-steps.md
Именно к этой переменной `app` обращается `uvicorn` в команде: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> Если создать такое приложение: ```Python hl_lines="3" {!../../docs_src/first_steps/tutorial002.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 13.1K bytes - Viewed (0) -
docs/ko/docs/tutorial/first-steps.md
이것은 당신의 모든 API를 생성하기 위한 상호작용의 주요 지점이 될 것입니다. 이 `app`은 다음 명령에서 `uvicorn`이 참조하고 있는 것과 동일합니다: <div class="termy"> ```console $ uvicorn main:app --reload <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> 아래처럼 앱을 만든다면: ```Python hl_lines="3" {!../../docs_src/first_steps/tutorial002.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.4K bytes - Viewed (0) -
docs/de/docs/tutorial/testing.md
/// ## Tests ausführen Danach müssen Sie nur noch `pytest` installieren: <div class="termy"> ```console $ pip install pytest ---> 100% ``` </div> Es erkennt die Dateien und Tests automatisch, führt sie aus und berichtet Ihnen die Ergebnisse. Führen Sie die Tests aus, mit: <div class="termy"> ```console $ pytest
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/en/docs/js/termynal.js
*/ lineDataToElements(lineData) { return lineData.map(line => { let div = document.createElement('div'); div.innerHTML = `<span ${this._attributes(line)}>${line.value || ''}</span>`; return div.firstElementChild; }); } /** * Helper function for generating attributes string. *
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 9.3K bytes - Viewed (0) -
docs/zh-hant/docs/tutorial/index.md
<font color="#4E9A06">INFO</font>: Application startup complete. </pre> ``` </div> **強烈建議**你編寫或複製程式碼、進行修改並在本地端運行。 在編輯器中使用它,才能真正體會到 FastAPI 的好處,可以看到你只需編寫少量程式碼,以及所有的型別檢查、自動補齊等功能。 --- ## 安裝 FastAPI 第一步是安裝 FastAPI。 確保你建立一個[虛擬環境](../virtual-environments.md){.internal-link target=_blank},啟用它,然後**安裝 FastAPI**: <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Oct 24 18:28:00 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/ru/docs/tutorial/testing.md
/// ## Запуск тестов Далее Вам нужно установить `pytest`: <div class="termy"> ```console $ pip install pytest ---> 100% ``` </div> Он автоматически найдёт все файлы и тесты, выполнит их и предоставит Вам отчёт о результатах тестирования. Запустите тесты командой `pytest` и увидите результат: <div class="termy"> ```console $ pytest
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.2K bytes - Viewed (0)