検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 102 for process (0.025 sec.)
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 14985
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... クラスベースのミドルウェアに追加することができます: process_view() ¶ process_view ( request , view_func , view ... kwargs も、第一引数 ( request ) を含んでいません。 process_view() は、Django がビューを呼び出す直前に呼び出さ ... 、Django はこのリクエストの処理を続け、他のすべての process_view() ミドルウェアを実行し、さらに適切なビューを実 ... 注釈 ビューが実行される、ミドルウェアの内側もしくは process_view() 内の request.POST にアクセスすると、ミドルウ ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]
django.utils.decorators — Django 4.0.6 ドキュメント 12358
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , * args , ** kwargs ): if hasattr ( middleware , "process_request" ): result = middleware . process_request ... ot None : return result if hasattr ( middleware , "process_view" ): result = middleware . process_view ( requ ... except Exception as e : if hasattr ( middleware , "process_exception" ): result = middleware . process_except ... ( response . render ): if hasattr ( middleware , "process_template_response" ): response = middleware . proc ...
https://man.plustar.jp/django/_modules/django/utils/decorators.html - [similar]
Django 1.3 release notes — Django 4.0.6 ドキュメント 9407
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of this policy, Django 1.3 begins the deprecation process for some features . Python バージョン間の互換性 ¶ ... computed until it is needed, later in the response process. For more details, see the documentation on the Te ... for this, the focus of the Django 1.3 development process has been on adding lots of smaller, long standing ... ire significant effort, and since natural language processing isn't the normal domain of a web framework, we ...
https://man.plustar.jp/django/releases/1.3.html - [similar]
How to write custom lookups — Django 4.0.6 ドキュメント 9071
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... compiler , connection ): lhs , lhs_params = self . process_lhs ( compiler , connection ) rhs , rhs_params = s ... elf . process_rhs ( compiler , connection ) params = lhs_params ... 分です。ほとんどの場合、これを直接用いる必要はなく、 process_lhs() および process_rhs() に渡すことができます。 ... ルの name フィールドへの参照で、右辺は 'Jack' です。 process_lhs と``process_rhs`` を呼び出して、前述の compile ...
https://man.plustar.jp/django/howto/custom-lookups.html - [similar]
Django 1.2.5 release notes — Django 4.0.6 ドキュメント 8980
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hand-crafted SQL into the database synchronization process. One of the possible uses for this custom SQL is t ... created when you run a test suite. However, in the process of testing the Django 1.3, it was discovered that ... custom SQL will not be visible during the testing process. Unfortunately, there was no way to rectify this p ... ring testing. This change only affects the testing process. You can still use custom SQL to load data into yo ...
https://man.plustar.jp/django/releases/1.2.5.html - [similar]
Organization of the Django Project — Django 4.0.6 ドキュメント 8566
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ge (small enough not to require the use of the DEP process ). A Merger must not merge a change primarily auth ... (significant enough to require the use of the DEP process ) reaches one of its implementation milestones and ... Releaser and Merger simultaneously. The selection process, when a vacancy occurs or when the technical board ... Releaser and Merger simultaneously. The selection process, when a vacancy occurs or when the technical board ...
https://man.plustar.jp/django/internals/organization.html - [similar]
How to use Django with Daphne — Django 4.0.6 ドキュメント 8307
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ommand is available which starts the Daphne server process. At its simplest, Daphne needs to be called with t ... hne myproject.asgi:application This will start one process listening on 127.0.0.1:8000 . It requires that you ... e , How , use , ASGI , project , server , called , process , command , Running クイック検索 Last update: 2022 ...
https://man.plustar.jp/django/howto/deployment/asgi/daphne.html - [similar]
How to use Django with Gunicorn — Django 4.0.6 ドキュメント 8230
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mand is available which starts the Gunicorn server process. The simplest invocation of gunicorn is to pass th ... like: gunicorn myproject.wsgi This will start one process running one thread listening on 127.0.0.1:8000 . I ... ワード Gunicorn , gunicorn , installed , simplest , process , command , generic , Running , documentation , ru ...
https://man.plustar.jp/django/howto/deployment/wsgi/gunicorn.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 7803
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he collectstatic management command calls the post_process() method of the STATICFILES_STORAGE after each run ... ic link to each file instead of copying. --no-post-process ¶ Don't call the post_process() method of the conf ... as the base URL. storage.StaticFilesStorage. post_process ( paths , ** options ) ¶ If this method is defined ... . It yields tuples of three values: original_path, processed_path, processed . The path values are strings an ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 7803
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... computed until it is needed, later in the response process. SimpleTemplateResponse objects ¶ class SimpleTemp ... TemplateResponse. resolve_context ( context ) ¶ Preprocesses context data that will be used for rendering a t ... aken place. This hook can be used to defer certain processing operations (such as caching) until after render ... .2: The headers parameter was added. The rendering process ¶ Before a TemplateResponse instance can be return ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT