検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 97 for running (0.025 sec.)
Unit tests — Django 4.0.6 ドキュメント 14776
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 行する for an explanation of how to write new tests. Running the unit tests ¶ Quickstart ¶ First, fork Django o ... ling the requirements, you can skip that step. See Running all the tests for details on installing the option ... talled, the tests that require it will be skipped. Running the tests requires a Django settings module that d ... See トラブルシューティング for some common issues. Running tests using tox ¶ Tox is a tool for running tests ...
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm... - [similar]
How to use Django with Gunicorn — Django 4.0.6 ドキュメント 11462
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng pip . Installing Gunicorn ¶ Install gunicorn by running python -m pip install gunicorn . For more details, ... see the gunicorn documentation . Running Django in Gunicorn as a generic WSGI application ¶ ... unicorn myproject.wsgi This will start one process running one thread listening on 127.0.0.1:8000 . It requir ... ow to use Django with Gunicorn Installing Gunicorn Running Django in Gunicorn as a generic WSGI application 前 ...
https://man.plustar.jp/django/howto/deployment/wsgi/gunicorn.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 9523
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ames ¶ The ALLOWED_HOSTS setting is validated when running tests. This allows the test client to differentiat ... OWED_HOSTS checking ( ALLOWED_HOSTS = ['*'] ) when running tests prevents the test client from raising a help ... a relatively expensive database operation. Enforce running test classes sequentially ¶ If you have test class ... e tests package is included in INSTALLED_APPS when running your tests, you can define test-only models in its ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
Django 1.10.3 release notes — Django 4.0.6 ドキュメント 9340
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 1.10.2. User with hardcoded password created when running tests on Oracle ¶ When running tests with an Oracl ... ip ( #27309 ). Fixed a performance regression when running migrate in projects with RenameModel operations ( ... se notes User with hardcoded password created when running tests on Oracle DNS rebinding vulnerability when D ... en , database , DEBUG , settings , HOSTS , could , running , ALLOWED クイック検索 Last update: 2022年6月01日 ...
https://man.plustar.jp/django/releases/1.10.3.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 8973
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Prints the SQL that would be run without actually running it, so you can customize it or use the migrations ... the rules above) as applied, but without actually running the SQL to change your database schema. This is in ... exist. This option is intended for use when first running migrations against a database that preexisted the ... ch time you change Python code while the server is running, the system check framework will check your entire ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
How to use Django with Daphne — Django 4.0.6 ドキュメント 8501
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... all Daphne with pip : python -m pip install daphne Running Django in Daphne ¶ When Daphne is installed, a dap ... 目次 How to use Django with Daphne Installing Daphne Running Django in Daphne 前のトピックへ How to deploy with ... , project , server , called , process , command , Running クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/howto/deployment/asgi/daphne.html - [similar]
How to use Django with Uvicorn — Django 4.0.6 ドキュメント 8501
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... with pip : python -m pip install uvicorn gunicorn Running Django in Uvicorn ¶ When Uvicorn is installed, a u ... How to use Django with Uvicorn Installing Uvicorn Running Django in Uvicorn 前のトピックへ How to use Django ... ワード Uvicorn , How , use , ASGI , command , next , Running , For , Installing , called クイック検索 Last upda ...
https://man.plustar.jp/django/howto/deployment/asgi/uvicorn.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 8501
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 破損しないように保護されます。 パフォーマンス ¶ When running in a mode that does not match the view (e.g. an as ... SGI because the request-handling code is still all running asynchronously. In general you will only want to e ... any of these parts from a thread where there is a running event loop , you will get a SynchronousOnlyOperati ... can also occur. This is because your code is still running in a thread with an active event loop, even though ...
https://man.plustar.jp/django/topics/async.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 8410
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lse : try : self . main_event_loop = asyncio . get_running_loop () except RuntimeError : # There's no event l ... # You can't call AsyncToSync from a thread with a running event loop try : event_loop = asyncio . get_runnin ... cept RuntimeError : pass else : if event_loop . is_running (): raise RuntimeError ( "You cannot use AsyncToSy ... . main_event_loop and self . main_event_loop . is_running ()): # Make our own event loop - in a new thread - ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
マイグレーション — Django 4.0.6 ドキュメント 8135
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Operations to perform: Apply all migrations: books Running migrations: Rendering model states... DONE Applyin ... ut a transaction. You can prevent a migration from running in a transaction by setting the atomic attribute t ... ccept migrations, and so you can add migrations by running makemigrations once you've made some changes. If y ... n), you'll need to convert it to use migrations by running: $ python manage.py makemigrations your_app_label ...
https://man.plustar.jp/django/topics/migrations.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT