検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 72 for args (0.027 sec.)
django.core.management.base — Django 4.0.6 ドキュメント 13243
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... xecution of a command. """ def __init__ ( self , * args , returncode = 1 , ** kwargs ): self . returncode ... = returncode super () . __init__ ( * args , ** kwargs ) class SystemCheckError ( CommandErro ... ammatically. """ def __init__ ( self , * , missing_args_message = None , called_from_command_line = None , ... ** kwargs ): self . missing_args_message = missing_args_mess ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]
django.utils.functional — Django 4.0.6 ドキュメント 11912
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lled. """ __prepared = False def __init__ ( self , args , kw ): self . __args = args self . __kw = kw if n ... return ( _lazy_proxy_unpickle , ( func , self . __args , self . __kw ) + resultclasses , ) def __repr__ ( ... round some magic method def __wrapper__ ( self , * args , ** kw ): # Automatically triggers the evaluation ... method of the result type. res = func ( * self . __args , ** self . __kw ) return getattr ( res , method_n ...
https://man.plustar.jp/django/_modules/django/utils/functional.html - [similar]
django.core.checks.messages — Django 4.0.6 ドキュメント 11057
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ss Debug ( CheckMessage ): def __init__ ( self , * args , ** kwargs ): super () . __init__ ( DEBUG , * arg ... s , ** kwargs ) [ドキュメント] class Info ( CheckMessage ): def ... __init__ ( self , * args , ** kwargs ): super () . __init__ ( INFO , * args ... , ** kwargs ) [ドキュメント] class Warning ( CheckMessage ): d ...
https://man.plustar.jp/django/_modules/django/core/checks/messages.html - [similar]
django.urls utility functions — Django 4.0.6 ドキュメント 10034
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng function: reverse ( viewname , urlconf = None , args = None , kwargs = None , current_app = None ) ¶ vi ... If the URL accepts arguments, you may pass them in args . For example: from django.urls import reverse def ... HttpResponseRedirect ( reverse ( 'arch-summary' , args = [ 1945 ])) You can also pass kwargs instead of a ... . For example: >>> reverse ( 'admin:app_list' , kwargs = { 'app_label' : 'auth' }) '/admin/auth/' args an ...
https://man.plustar.jp/django/ref/urlresolvers.html - [similar]
django.utils.decorators — Django 4.0.6 ドキュメント 9670
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g it on a dummy function. @decorator def dummy ( * args , ** kwargs ): pass update_wrapper ( _wrapper , du ... ecorators = [ decorators ] def _wrapper ( self , * args , ** kwargs ): # bound_method has the signature th ... hod = dec ( bound_method ) return bound_method ( * args , ** kwargs ) # Copy any attributes that a decorat ... [ドキュメント] def decorator_from_middleware_with_args ( middleware_class ): """ Like decorator_from_midd ...
https://man.plustar.jp/django/_modules/django/utils/decorators.html - [similar]
Base views — Django 4.0.6 ドキュメント 9375
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lass MyView ( View ): def get ( self , request , * args , ** kwargs ): return HttpResponse ( 'Hello, World ... 'trace' ] メソッド classmethod as_view ( ** initkwargs ) ¶ リクエストを受け取ってレスポンスを返す、呼び出 ... uest ) 返されたビューは、 view_class と view_initkwargs 属性を持っています。 When the view is called durin ... ord arguments captured from the URL pattern to the args and kwargs attributes, respectively. Then dispatch ...
https://man.plustar.jp/django/ref/class-based-views/base.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 8885
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f . main_event_loop = None def __call__ ( self , * args , ** kwargs ): # You can't call AsyncToSync from a ... this thread. try : awaitable = self . main_wrap ( args , kwargs , call_result , source_thread , sys . exc ... , self . awaitable ) async def main_wrap ( self , args , kwargs , call_result , source_thread , exc_info ... aseException : result = await self . awaitable ( * args , ** kwargs ) else : result = await self . awaitab ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 8703
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d of cards (bridge style)" def __init__ ( self , * args , ** kwargs ): kwargs [ 'max_length' ] = 104 super ... () . __init__ ( * args , ** kwargs ) Our HandField accepts most of the st ... dField ( models . Field ): def __init__ ( self , * args , ** kwargs ): kwargs [ 'max_length' ] = 104 super ... () . __init__ ( * args , ** kwargs ) def deconstruct ( self ): name , pat ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 8577
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... [ドキュメント] def format_html ( format_string , * args , ** kwargs ): """ Similar to str.format, but pass ... nterpolation to build up small HTML fragments. """ args_safe = map ( conditional_escape , args ) kwargs_sa ... { k : conditional_escape ( v ) for ( k , v ) in kwargs . items ()} return mark_safe ( format_string . for ... mat ( * args_safe , ** kwargs_safe )) [ドキュメント] def format ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 8156
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... into a temporary file. """ def new_file ( self , * args , ** kwargs ): """ Create the file object to appen ... as data is coming in. """ super () . new_file ( * args , ** kwargs ) self . file = TemporaryUploadedFile ... ILE_UPLOAD_MAX_MEMORY_SIZE def new_file ( self , * args , ** kwargs ): super () . new_file ( * args , ** k ... wargs ) if self . activated : self . file = BytesIO () r ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT