検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 176 for None (0.047 sec.)
システムチェックフレームワーク — Django 4.0.6 ドキュメント 5627
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... list of applications that should be inspected. If None , the check must be run on all installed apps in t ... pect database level configuration. If databases is None , the check must not use any database connections. ... dels . IntegerField ): def __init__ ( self , min = None , max = None , ** kwargs ): super () . __init__ ( ... alues ( self , ** kwargs ): if ( self . min is not None and self . max is not None and self . min > self . ...
https://man.plustar.jp/django/topics/checks.html - [similar]
素の SQL 文の実行 — Django 4.0.6 ドキュメント 5627
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ons . Before using raw SQL, explore the ORM . Ask on one of the support channels to see if the ORM support ... er. raw ( raw_query , params = () , translations = None ) ¶ This method takes a raw SQL query, executes it ... ault value of the params argument was changed from None to an empty tuple. クエリのフィールドをモデルのフィ ... st LIMIT 2" ) >>> cursor . fetchall () ((54360982, None), (54360880, None)) >>> cursor . execute ( "SELECT ...
https://man.plustar.jp/django/topics/db/sql.html - [similar]
Signals — Django 4.0.6 ドキュメント 5627
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... registered. Signal. connect ( receiver , sender = None , weak = True , dispatch_uid = None ) [ソース] ¶ パ ... need to know when any model gets saved -- just when one specific model is saved. In these cases, you can ... nnecting signals ¶ Signal. disconnect ( receiver = None , sender = None , dispatch_uid = None ) [ソース] ¶ ... o <app label>.<model> , this method always returns None . The receiver argument indicates the registered r ...
https://man.plustar.jp/django/topics/signals.html - [similar]
Django 1.11.7 リリースノート — Django 4.0.6 ドキュメント 5594
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gfixes ¶ Prevented cache.get_or_set() from caching None if the default argument is a callable that returns ... None ( #28601 ). Fixed the Basque DATE_FORMAT string ( ... キーワード Fixed , トピック , previous , up , next , None , Bugfixes , unquoted , string , Made クイック検索 ...
https://man.plustar.jp/django/releases/1.11.7.html - [similar]
django.contrib.postgres.validators — Django 4.0.6 ドキュメント 5560
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... init__ ( self , keys , strict = False , messages = None ): self . keys = set ( keys ) self . strict = stri ... ct if messages is not None : self . messages = { ** self . messages , ** mess ... def compare ( self , a , b ): return a . upper is None or a . upper > b message = _ ( "Ensure that this r ... def compare ( self , a , b ): return a . lower is None or a . lower < b message = _ ( "Ensure that this r ...
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html - [similar]
django.core.checks.messages — Django 4.0.6 ドキュメント 5560
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ssage : def __init__ ( self , level , msg , hint = None , obj = None , id = None ): if not isinstance ( le ... f ): from django.db import models if self . obj is None : obj = "?" elif isinstance ( self . obj , models ...
https://man.plustar.jp/django/_modules/django/core/checks/messages.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 5560
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The field's attribute name on its parent model, or None if it is not part of a model path : A dotted, Pyth ... . You may specify ModelAdmin.list_display_links = None to disable links on the change list page grid. You ... ning the TIMEOUT argument of the CACHES setting as None will set the cache keys as "non-expiring" by defau ... . Previously, it was only possible to pass timeout=None to the cache backend's set() method. Cross Site Re ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 5527
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ださい。 ユーザを認証する ¶ authenticate ( request = None , ** credentials ) ¶ 認証情報のセットを検証するには ... 有効と判定されなければ PermissionDenied が送出され、 None が返されます。以下は実装例です: from django.contri ... me = 'john' , password = 'secret' ) if user is not None : # A backend authenticated the credentials else : ... view -- are created for each Django model defined in one of your installed applications. これらの権限は ma ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 5493
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... original values and the GenericForeignKey returns None : >>> guido . delete () >>> t . content_object # r ... eturns None Due to the way GenericForeignKey is implemented, y ... 'content_type' , fk_field = 'object_id' , fields = None , exclude = None , extra = 3 , can_order = False , ... can_delete = True , max_num = None , formfield_callback = None , validate_max = False ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
テンプレート — Django 4.0.6 ドキュメント 5493
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... zed and interpreted by the template engine. The main ones are variables and tags. テンプレートは、コンテキ ... しています。 get_template ( template_name , using = None ) ¶ この関数は、指定した名前のテンプレートを読み込 ... nt. select_template ( template_name_list , using = None ) ¶ select_template() は get_template() に似ていま ... ed: exception TemplateDoesNotExist ( msg , tried = None , backend = None , chain = None ) ¶ This exception ...
https://man.plustar.jp/django/topics/templates.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT