検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 239 for default (0.089 sec.)
データベースのトランザクション — Django 4.0.6 ドキュメント 5035
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... # This code executes in autocommit mode (Django's default). do_stuff () with transaction . atomic (): # This ... If this argument isn't provided, Django uses the "default" database. Under the hood, Django's transaction ma ... to be initially turned off. Django overrides this default and turns autocommit on. To avoid this, you can de ... a database. If it isn't provided, Django uses the "default" database. Autocommit is initially turned on. If y ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]
django.core.files.base — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... erty [ドキュメント] class File ( FileProxyMixin ): DEFAULT_CHUNK_SIZE = 64 * 2 ** 10 def __init__ ( self , fi ... the file and yield chunks of ``chunk_size`` bytes (defaults to ``File.DEFAULT_CHUNK_SIZE``). """ chunk_size = ... chunk_size or self . DEFAULT_CHUNK_SIZE try : self . seek ( 0 ) except ( Attrib ... s. """ return self . size > ( chunk_size or self . DEFAULT_CHUNK_SIZE ) [ドキュメント] def __iter__ ( self ): ...
https://man.plustar.jp/django/_modules/django/core/files/base.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... A GPG key. If the key you want to use is not your default signing key, you'll need to add -u you@example.com ... a new version release (e.g. 1.5, 1.6), update the default stable version of the docs by flipping the is_defa ... Trac's versions list if necessary (and make it the default by changing the default_version setting in the cod ... on should be added after the alpha release and the default version should be updated after "dot zero" release ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Geographic Database Functions — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e coordinates in the GeoJSON representation -- the default value is 8. Ignored on Oracle. AsGML ¶ class AsGML ... r the coordinates in the GML representation -- the default value is 8. Ignored on Oracle. version Specifies t ... he GML version to use: 2 (default) or 3. AsKML ¶ class AsKML ( expression , precisio ... r the coordinates in the KML representation -- the default value is 8. AsSVG ¶ class AsSVG ( expression , rel ...
https://man.plustar.jp/django/ref/contrib/gis/functions.html - [similar]
The form rendering API — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pecified by updating the FORM_RENDERER setting. It defaults to ' django.forms.renderers.DjangoTemplates ' . Y ... also provide a custom renderer by setting the Form.default_renderer attribute or by using the renderer argume ... eive a context from BaseFormSet.get_context() . By default, formsets receive a dictionary with the following ... tes receive a context from Form.get_context() . By default, forms receive a dictionary with the following val ...
https://man.plustar.jp/django/ref/forms/renderers.html - [similar]
Signals — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango stores signal handlers as weak references by default, so if your handler is a local function, it may be ... nit signal, so _state attributes always have their default values. For example, _state.db is None . 警告 For ... e only Topping t was added to the relation) using "default" (since the default router sends writes here) And ... only Pizza p was removed from the relation) using "default" (since the default router sends writes here) clas ...
https://man.plustar.jp/django/ref/signals.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dict of values to add to the template context. By default, this is an empty dictionary. content_type The val ... om content_type , and if that is unsuccessful, the DEFAULT_CHARSET setting will be used. using The NAME of a ... ing a template. Accepts a dict of context data. By default, returns the same dict . Override this method in o ... dict of values to add to the template context. By default, this is an empty dictionary. content_type The val ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 4994
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ey and ManyToManyField . django.contrib.auth ¶ The default iteration count for the PBKDF2 password hasher is ... GeoJSON now has its SRID set. Added the OSMWidget.default_zoom attribute to customize the map's default zoom ... プレート ¶ To increase the usefulness of Engine.get_default() in third-party apps, it now returns the first en ... ion is unconditionally enabled in Django 1.10. The default HTTP error handlers ( handler404 , etc.) are now c ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 4964
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s ¶ The following path converters are available by default: str - Matches any non-empty string, excluding the ... path separator, '/' . This is the default if a converter isn't included in the expression. i ... to the same function for the same URL. Specifying defaults for view arguments ¶ A convenient trick is to spe ... cify default parameters for your views' arguments. Here's an ex ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
How to deploy with ASGI — Django 4.0.6 ドキュメント 4923
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django's startproject management command sets up a default ASGI configuration for you, which you can tweak as ... e myproject.asgi:application . 警告 While Django's default ASGI handler will run all your code in a synchrono ... 組織するか次第です。 If this variable isn't set, the default asgi.py sets it to mysite.settings , where mysite ...
https://man.plustar.jp/django/howto/deployment/asgi/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT