検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 320 for not (0.113 sec.)
Django 4.0 release notes — Django 4.0.6 ドキュメント 4209
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odules « previous | up | next » Django 4.0 release notes ¶ December 7, 2021 Welcome to Django 4.0! These ... release notes cover the new features , as well as some backwar ... ed to audit your code, since pytz and zoneinfo are not entirely equivalent. To give time for such an audi ... secure and recommended over PBKDF2. However, it's not the default as it requires OpenSSL 1.1+ and more m ...
https://man.plustar.jp/django/releases/4.0.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go.core.exceptions で定義されています。 AppRegistryNotReady ¶ exception AppRegistryNotReady [ソース] ¶ Th ... which initializes the ORM, is complete. ObjectDoesNotExist ¶ exception ObjectDoesNotExist [ソース] ¶ The ... base class for Model.DoesNotExist exceptions. A try/except for ObjectDoesNotExi ... st will catch DoesNotExist exceptions for all models. See get() . EmptyR ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nd in every kind of job. An interesting historical note: when Django was first released in July 2005, the ... third-party libraries and systems which may or may not handle Unicode gracefully. Details are available i ... re posed problems. Full details, including updated notes on appropriate use, are in the caching documenta ... ity errors. A set of models like the following are not valid : class Parent ( models . Model ): name = mo ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Django 1.2.4 release notes — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ules « previous | up | next » Django 1.2.4 release notes ¶ Django 1.2.4 へようこそ! This is the fourth "b ... ne new feature ¶ Ordinarily, a point release would not include new features, but in the case of Django 1. ... sers with multiple-database configurations -- need not be concerned about the data loss bug, or the manua ... tial database backends . 目次 Django 1.2.4 release notes Backwards incompatible changes Restricted filter ...
https://man.plustar.jp/django/releases/1.2.4.html - [similar]
Django 1.9.1 リリースノート — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ixed a regression which prevented using a language not in Django's default language list ( LANGUAGES ) ( ... invalid INSTALLED_APPS setting, behind AppRegistryNotReady when starting runserver ( #25510 ). This regr ... rash in QuerySet.values()/values_list() after an annotate() and order_by() when values()/values_list() in ... cludes a field not in the order_by() ( #25316 ). 目次 Django 1.9.1 リ ...
https://man.plustar.jp/django/releases/1.9.1.html - [similar]
Django 3.1.1 release notes — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ules « previous | up | next » Django 3.1.1 release notes ¶ September 1, 2020 Django 3.1.1 fixes two secur ... n 3.7+, FILE_UPLOAD_DIRECTORY_PERMISSIONS mode was not applied to intermediate-level directories created ... el in the of argument, the corresponding model was not locked ( #31866 ). Fixed a data loss possibility, ... r is enabled ( #31901 ). 目次 Django 3.1.1 release notes CVE-2020-24583: Incorrect permissions on interme ...
https://man.plustar.jp/django/releases/3.1.1.html - [similar]
マネージャ — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nager ): def with_counts ( self ): return self . annotate ( num_responses = Coalesce ( models . Count ( " ... 構いませんが、 QuerySet だけは返してはいけません。 Another thing to note is that Manager methods can acces ... _objects . count () This example also pointed out another interesting technique: using multiple managers ... _manager ¶ If you use custom Manager objects, take note that the first Manager Django encounters (in the ...
https://man.plustar.jp/django/topics/db/managers.html - [similar]
モデル — Django 4.0.6 ドキュメント 4172
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 作成します: CREATE TABLE myapp_person ( "id" serial NOT NULL PRIMARY KEY , "first_name" varchar ( 30 ) NOT ... NULL , "last_name" varchar ( 30 ) NOT NULL ); 技術的な注意点: myapp_person というテーブル ... の関係を持つオブジェクト) や relationships to models not yet defined を作成することもできます; 詳細は the m ... の関係を持つオブジェクト) や relationships to models not yet defined を作成することもできます。 必須ではあり ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
How to integrate Django with a legacy database — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... b > models.py This feature is meant as a shortcut, not as definitive model generation. See the documentat ... ged = False in the model's Meta class tells Django not to manage each table's creation, modification, and ...
https://man.plustar.jp/django/howto/legacy-databases.html - [similar]
Unit tests — Django 4.0.6 ドキュメント 4126
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eate and activate a virtual environment. If you're not familiar with how to do that, read our contributin ... s module that uses the SQLite database. See Using another settings module to learn how to use a different ... ng checker. In addition to the system dependencies noted elsewhere in this documentation, the command pyt ... ge for installation and usage instructions. Using another settings module ¶ The included settings module ...
https://man.plustar.jp/django/internals/contributing/writing-code/unit-tests.htm... - [similar]