検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 176 for None (0.119 sec.)
Django 1.11 リリースノート — Django 4.0.6 ドキュメント 5114
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed to the DatabaseWrapper.create_cursor(self, name=None) method to allow usage of server-side cursors on b ... す。 pytz は必須の依存となり、 settings.TIME_ZONE = None のサポートは削除されました。 ¶ Django のタイムゾー ... ストールされます。 Support for settings.TIME_ZONE = None is removed as the behavior isn't commonly used and ... . zone This works similar to settings.TIME_ZONE = None except that it also sets os.environ['TZ'] . Let us ...
https://man.plustar.jp/django/releases/1.11.html - [similar]
How to create custom model fields — Django 4.0.6 ドキュメント 5080
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ur column requires truly complex SQL setup, return None from db_type() . This will cause Django's SQL crea ... t type (e.g., Hand in our ongoing example). 文字列 None (フィールドが null=True を許す場合) In our HandFie ... base, so we need to be able to process strings and None in the from_db_value() . In to_python() , we need ... f , value , expression , connection ): if value is None : return value return parse_hand ( value ) def to_ ...
https://man.plustar.jp/django/howto/custom-model-fields.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 5080
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ views. sitemap ( request , sitemaps , section = None , template_name = 'sitemap.xml' , content_type = ' ... ase: class GenericSitemap ( info_dict , priority = None , changefreq = None , protocol = None ) ¶ The djan ... temaps.ping_google() . ping_google ( sitemap_url = None , ping_url = PING_URL , sitemap_uses_https = True ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
Conditional Expressions — Django 4.0.6 ドキュメント 5080
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ault = REGULAR , ) When ¶ class When ( condition = None , then = None , ** lookups ) ¶ A When() object is ... r options are provided using keyword arguments. If none of the conditions evaluate to TRUE , then the expr ... is returned. If a default argument isn't provided, None is used. If we wanted to change our previous query ...
https://man.plustar.jp/django/ref/models/conditional-expressions.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 5047
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... given QuerySet isn't ordered and there is more than one ordered value to compare against. Added earliest( ... first or last object matching the filters. Returns None if there are no objects matching. View and Redirec ... lect_related() can be cleared using select_related(None) . The get_extra() and get_max_num() methods on In ... n explicit default , the implicit default value is None . In previous version of Django, it was False , bu ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
django.utils.html — Django 4.0.6 ドキュメント 5013
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eep_lazy_text def urlize ( text , trim_url_limit = None , nofollow = False , autoescape = False ): """ Con ... /, https://, www. links, and also on links ending in one of the original seven gTLDs (.com, .edu, .gov, .i ... still do the right thing. If trim_url_limit is not None, truncate the URLs in the link text longer than th ... im_url ( x , limit = trim_url_limit ): if limit is None or len ( x ) <= limit : return x return " %s …" % ...
https://man.plustar.jp/django/_modules/django/utils/html.html - [similar]
Lookup API reference — Django 4.0.6 ドキュメント 5013
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... assmethod register_lookup ( lookup , lookup_name = None ) ¶ Registers a new lookup in the class. For examp ... "__" . process_lhs ( compiler , connection , lhs = None ) ¶ Returns a tuple (lhs_string, lhs_params) , as ... d for compiling vendor specific SQL. If lhs is not None , use it as the processed lhs instead of self.lhs ...
https://man.plustar.jp/django/ref/models/lookups.html - [similar]
Django 4.0 release notes — Django 4.0.6 ドキュメント 5013
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... set (or grouping) contains no entries, rather than None . Request と Response ¶ The SecurityMiddleware now ... g the SECURE_CROSS_ORIGIN_OPENER_POLICY setting to None . Signals ¶ The new stdout argument for pre_migrat ... --parallel option now supports the value auto to run one test process for each processor core. TestCase.ca ... , JSONBAgg , and StringAgg aggregates will return None when there are no rows instead of [] , [] , and '' ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 5013
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ムが初期データとともに表示されます。 max_num の値が None (デフォルト) だった場合、表示されるフォームの上限は ... submit at most 1000 forms.'] When absolute_max is None , it defaults to max_num + 1000 . (If max_num is N ... the index of the form in the formset. The index is None for the empty_form : >>> from django.forms import ... title" > This is useful if you want to use more than one formset in a view . Using a formset in views and ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
django.core.paginator — Django 4.0.6 ドキュメント 4980
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s.""" c = getattr ( self . object_list , "count" , None ) if callable ( c ) and not inspect . isbuiltin ( ... dered = getattr ( self . object_list , "ordered" , None ) if ordered is not None and not ordered : obj_lis ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 NEXT