検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 312 for USE (0.148 sec.)
Django 1.8.1 リリースノート — Django 4.0.6 ドキュメント 4208
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d in order_by() , but wasn't part of the select clause. An example query is qs.annotate(foo=F('field')).v ... ed on Python 2 ( #24701 ). Restored the ability to use iterators as queryset filter arguments ( #24719 ). ... help text positioning of contrib.admin fields that use the ModelAdmin.filter_horizontal and filter_vertic ...
https://man.plustar.jp/django/releases/1.8.1.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 4208
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e to allow your code to run. This context-switch causes a small performance penalty of around a milliseco ... n for a purely synchronous codebase under ASGI because the request-handling code is still all running asy ... () or similar, then it can also occur. This is because your code is still running in a thread with an act ... le: async_to_sync() and sync_to_async() . They are used to transition between the calling styles while pr ...
https://man.plustar.jp/django/topics/async.html - [similar]
多対一 (many-to-one) 関係 — Django 4.0.6 ドキュメント 4208
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -one) 関係 ¶ To define a many-to-one relationship, use ForeignKey : from django.db import models class Re ... atically follows relationships as far as you need. Use double underscores to separate relationships. This ... his translates to an AND condition in the WHERE clause: >>> Article . objects . filter ( reporter__first_ ... s story>, <Article: This is a test>]> You can also use a queryset instead of a literal list of instances: ...
https://man.plustar.jp/django/topics/db/examples/many_to_one.html - [similar]
django.db.utils — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... %s .base" % backend_name ) except ImportError as e_user : # The database backend wasn't found. Display a ... dn't be " "imported. Check the above exception. To use one of the " "built-in backends, use 'django.db.ba ... end_name , ", " . join ( backend_reprs )) ) from e_user else : # If there's some other error, this must b ... truly # thread-critical. Database backends should use @async_unsafe to protect # their code from async c ...
https://man.plustar.jp/django/_modules/django/db/utils.html - [similar]
How to upgrade Django to a newer version — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... feature release at once. For each feature release, use the latest patch release (e.g. for 2.1, use 2.1.15 ... uld hide deprecation warnings. For example, if you use pytest : $ PYTHONWARNINGS = always pytest tests -- ...
https://man.plustar.jp/django/howto/upgrade-version.html - [similar]
GEOS API — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eoDjango. For example, GEOSGeometry objects may be used outside of a Django project/application. In other ... rds, no need to have DJANGO_SETTINGS_MODULE set or use a database, etc. Mutability: GEOSGeometry objects ... 0, 23.000000 ] }' ) # GeoJSON Another option is to use the constructor for the specific geometry type tha ... ry object, the GEOSGeometry.coords property may be used to get the geometry coordinates as a Python tuple ...
https://man.plustar.jp/django/ref/contrib/gis/geos.html - [similar]
Django 1.4.18 release notes — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Th ... is means that if a header is used in a security-sensitive way (for instance, passin ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Us ...
https://man.plustar.jp/django/releases/1.4.18.html - [similar]
Django 1.4.4 release notes — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... oning ¶ Some parts of Django -- independent of end-user-written applications -- make use of full URLs, in ... ntation has for some time contained notes advising users on how to configure web servers to ensure that o ... via external entities and entity expansion. Django uses this parser for deserializing XML-formatted datab ... se fixtures. This deserializer is not intended for use with untrusted data, but in order to err on the si ...
https://man.plustar.jp/django/releases/1.4.4.html - [similar]
Django 1.6.10 release notes — Django 4.0.6 ドキュメント 4170
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Th ... is means that if a header is used in a security-sensitive way (for instance, passin ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Us ...
https://man.plustar.jp/django/releases/1.6.10.html - [similar]
django.core.management.base — Django 4.0.6 ドキュメント 4142
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gementUtility can handle them before searching for user commands. """ if options . settings : os . enviro ... m which all management commands ultimately derive. Use this class if you want access to all of the mechan ... executing the command. The value '__all__' can be used to specify that all system checks should be perfo ... ealth_options`` A tuple of any options the command uses which aren't defined by the argument parser. """ ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]