検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 130 for call (0.028 sec.)
asgiref.sync — Django 4.0.6 ドキュメント 13593
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ture , ThreadPoolExecutor from typing import Any , Callable , Dict , Optional , overload from .current_thr ... text manager is re-entrant, so only the outer-most call to ThreadSensitiveContext will set the context. Us ... the thread with the event loop into a synchronous callable that works in a subthread. If the call stack c ... pauses and waits to run any thread_sensitive code called from further down the call stack using SyncToAsy ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
Database instrumentation — Django 4.0.6 ドキュメント 11574
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... wrappers are modeled after middleware -- they are callables which take another callable as one of their a ... rguments. They call that callable to invoke the (possibly wrapped) dat ... query, and they can do what they want around that call. They are, however, created and installed by user ... parameters sent to the wrappers are: execute -- a callable, which should be invoked with the rest of the ...
https://man.plustar.jp/django/topics/db/instrumentation.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 10675
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... database. repr(). A QuerySet is evaluated when you call repr() on it. This is for convenience in the Pytho ... order in which a queryset's elements are returned. Calling reverse() a second time restores the ordering b ... Also, note that reverse() should generally only be called on a QuerySet which has a defined ordering (e.g. ... no such ordering is defined for a given QuerySet , calling reverse() on it has no real effect (the orderin ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 9325
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 全般をまとめます。 In addition, manage.py is automatically created in each Django project. It does the same ... nd assumes the programs are on your PATH so that a call to the program name ( psql , mysql , sqlite3 , sql ... addata mydata . json would only load JSON fixtures called mydata . The fixture extension must correspond t ... ata would look for any fixture of any fixture type called mydata . If a fixture directory contained mydata ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
Djangoの設定 — Django 4.0.6 ドキュメント 8997
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ument (or as the first positional argument) in the call to configure() . In this example, default settings ... NGO_SETTINGS_MODULE environment variable, you must call configure() at some point before using any code th ... If you don't set DJANGO_SETTINGS_MODULE and don't call configure() , Django will raise an ImportError exc ... INGS_MODULE , access settings values somehow, then call configure() , Django will raise a RuntimeError ind ...
https://man.plustar.jp/django/topics/settings.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 8437
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y_re_compile ( self . regex , self . flags ) def __call__ ( self , value ): """ Validate that the input co ... hemes is not None : self . schemes = schemes def __call__ ( self , value ): if not isinstance ( value , st ... value }) # Then check full URL try : super () . __call__ ( value ) except ValidationError as e : # Trivia ... , netloc , path , query , fragment )) super () . __call__ ( url ) else : raise else : # Now verify IPv6 in ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
Related objects reference — Django 4.0.6 ドキュメント 8097
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ead have the related manager perform the update by calling e.save() . Using add() with a many-to-many rela ... tionship, however, will not call any save() methods (the bulk argument doesn't exis ... rmediate model instance(s), if needed. You can use callables as values in the through_defaults dictionary ... atetime . date ( 2005 , 1 , 1 ) ... ) # No need to call e.save() at this point -- it's already been saved. ...
https://man.plustar.jp/django/ref/models/relations.html - [similar]
テストツール — Django 4.0.6 ドキュメント 7878
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ct with your Django-powered application programmatically. テストクライアントでは、次のようなことができます ... value isn't provided. The authenticate() function called by login() normally annotates the user like this ... fect of a user logging out of your site. After you call this method, the test client will have all the coo ... ceback : A traceback object which encapsulates the call stack at the point where the exception originally ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 7538
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... alMetaData initialization commands are now automatically run by migrate . The GDAL interface now supports ... s ¶ Session cookie is now deleted after flush() is called. django.contrib.sitemaps ¶ The new Sitemap.i18n ... rage engine, as MySQL already creates them automatically. The Oracle backend no longer defines the connect ... t type as determined by Pillow. You can now pass a callable that returns an iterable of choices when insta ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 7428
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... quest before # the view (and later middleware) are called. response = get_response ( request ) # Code to b ... uted for each request/response after # the view is called. return response return middleware もしくは、イン ... # One-time configuration and initialization. def __call__ ( self , request ): # Code to be executed for ea ... quest before # the view (and later middleware) are called. response = self . get_response ( request ) # Co ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT