検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 320 for not (0.058 sec.)
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6190
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... new features and lots of bug fixes. These release notes cover the new features, as well as important cha ... port for Python 2.3 has been dropped. See the full notes below. The new CSRF protection framework is not ... with the old system. Users of the old system will not be affected until the old system is removed in Dja ... ted features . Python バージョン間の互換性 ¶ While not a new feature, it's important to note that Django ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
django.dispatch.dispatcher — Django 4.0.6 ドキュメント 6153
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... onvenience we create empty caches even if they are not used. # A note about caching: if use_caching is de ... is connected with a dispatch_uid argument, it will not be added if another receiver was already connected ... if settings . configured and settings . DEBUG : if not callable ( receiver ): raise TypeError ( "Signal r ... ivers must be callable." ) # Check for **kwargs if not func_accepts_kwargs ( receiver ): raise ValueError ...
https://man.plustar.jp/django/_modules/django/dispatch/dispatcher.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 6153
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... data. Most field types can be used, and you pass another field instance as the base_field . You may also ... the database, although PostgreSQL at present does not enforce the restriction. 注釈 When nesting ArrayFi ... eld , whether you use the size parameter or not, PostgreSQL requires that the arrays are rectangul ... alid Board ( pieces = [ [ 2 , 3 ], [ 2 , 1 ], ]) # Not valid Board ( pieces = [ [ 2 , 3 ], [ 2 ], ]) If i ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
Triaging tickets — Django 4.0.6 ドキュメント 6106
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... f Django's progress, we acknowledge that this will not happen. By distributing the load of Trac maintenan ... his without you ! Triage workflow ¶ Unfortunately, not all bug reports and feature requests in the ticket ... tes a ticket and sends an incomplete pull request (no tests, incorrect implementation). Bob reviews the p ... Alice updates the pull request, adding tests (but not changing the implementation). She removes the two ...
https://man.plustar.jp/django/internals/contributing/triaging-tickets.html - [similar]
django.utils.decorators — Django 4.0.6 ドキュメント 6069
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _ ( self , instance , cls = None ): if instance is not None : raise AttributeError ( "This method is avai ... lable only on the class, not on instances." ) return super () . __get__ ( insta ... ethod that will be decorated. def _dec ( obj ): if not isinstance ( obj , type ): return _multi_decorate ... ( decorator , obj ) if not ( name and hasattr ( obj , name )): raise ValueErr ...
https://man.plustar.jp/django/_modules/django/utils/decorators.html - [similar]
django.utils.module_loading — Django 4.0.6 ドキュメント 6069
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ass_name ): modules = sys . modules if module_path not in modules or ( # Module is not fully initialized. ... ( modules [ module_path ], "__spec__" , None ) is not None and getattr ( modules [ module_path ] . __spe ... r as err : raise ImportError ( 'Module " %s " does not define a " %s " attribute/class' % ( module_path , ... over INSTALLED_APPS modules and fail silently when not present. This forces an import on them to register ...
https://man.plustar.jp/django/_modules/django/utils/module_loading.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 6069
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he model. def __str__ ( self ): return self . name Note that the models module is imported from django.co ... try fields is WGS84 (meaning the SRID is 4326) -- in other words, the field coordinates are in longitude, ... CREATE TABLE "world_worldborder" ( "id" bigserial NOT NULL PRIMARY KEY, "name" varchar(50) NOT NULL, "ar ... ea" integer NOT NULL, "pop2005" integer NOT NULL, "fips" varchar(2 ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 6023
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rtial ( func : Any ) -> bool : # Python < 3.8 does not correctly determine partially wrapped # coroutine ... sync def __aexit__ ( self , exc , value , tb ): if not self . token : return executor = SyncToAsync . con ... readExecutor to use. This uses an asgiref # Local, not a threadlocal, so that tasks can work out what the ... ( self , awaitable , force_new_loop = False ): if not callable ( awaitable ) or not _iscoroutinefunction ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 6023
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... RFToken' : csrftoken }, mode : 'same-origin' // Do not send CSRF token to another domain. } ); fetch ( re ... いない場合に発生します。 The error page, however, is not very friendly, so you may want to provide your own ... d on a random secret value, which other sites will not have access to. This cookie is set by CsrfViewMidd ... er to protect against BREACH attacks, the token is not simply the secret; a random mask is prepended to t ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
Unicode data — Django 4.0.6 ドキュメント 6023
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ase character set encoding. SQLite users, there is nothing you need to do. SQLite always uses UTF-8 for i ... ings (starting with a 'b'). 警告 A bytestring does not carry any information with it about its encoding. ... on for this is that the DEFAULT_CHARSET setting is not actually under your control (if you are the applic ... your code must still continue to work. Ergo, it cannot rely on that setting. In most cases when Django is ...
https://man.plustar.jp/django/ref/unicode.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT