検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 176 for None (0.073 sec.)
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 6264
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ield ( base_field , delimiter = ',' , max_length = None , min_length = None ) ¶ A field which maps to an a ... 3' ] # -> [1, 2, 3] [ '1' , '2' , '' ] # -> [1, 2, None] [ '1' , '' , '3' ] # -> [1, None, 3] [ '' , '2' , ... '' ] # -> [None, 2, None] SplitArrayField ( IntegerField ( require ... '2' , '' ] # -> [1, 2] [ '1' , '' , '3' ] # -> [1, None, 3] [ '' , '2' , '' ] # -> [None, 2] HStoreField ¶ ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 6197
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tabases ¶ The migrate management command operates on one database at a time. By default, it operates on th ... the same way as migrate -- they only ever operate on one database at a time, using --database to control t ... etails on valid hints are provided below . Returns None if there is no suggestion. db_for_write ( model , ... etails on valid hints are provided below . Returns None if there is no suggestion. allow_relation ( obj1 , ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
File オブジェクト — Django 4.0.6 ドキュメント 6163
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... す。 File クラス ¶ class File ( file_object , name = None ) [ソース] ¶ File クラスは、Python の file object ... イルの読み込み/書き込みのモードです。 open ( mode = None ) [ソース] ¶ Open or reopen the file (which also d ... whatever mode the file was originally opened with; None means to reopen with the original mode. It can be ... yielding one line at a time. chunks ( chunk_size = None ) [ソース] ¶ Iterate over the file yielding "chunk ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
Djangoにおけるパスワード管理 — Django 4.0.6 ドキュメント 6108
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sha1_hash ( self , sha1_hash , salt , iterations = None ): return super () . encode ( sha1_hash , salt , i ... def encode ( self , password , salt , iterations = None ): _ , _ , sha1_hash = SHA1PasswordHasher () . enc ... ord encoded in an older number of iterations and a nonexistent user (which runs the default hasher's defau ... False otherwise. make_password ( password , salt = None , hasher = 'default' ) ¶ Creates a hashed password ...
https://man.plustar.jp/django/topics/auth/passwords.html - [similar]
django.core.signing — Django 4.0.6 ドキュメント 6074
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... latin-1" )) [ドキュメント] def dumps ( obj , key = None , salt = "django.core.signing" , serializer = JSON ... ac signed base64 compressed JSON string. If key is None, use settings.SECRET_KEY instead. The hmac algorit ... = compress ) [ドキュメント] def loads ( s , key = None , salt = "django.core.signing" , serializer = JSON ... Serializer , max_age = None ): """ Reverse of dumps(), raise BadSignature if s ...
https://man.plustar.jp/django/_modules/django/core/signing.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 6074
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... el ¶ class CreateModel ( name , fields , options = None , bases = None , managers = None ) ¶ プロジェクトの ... な操作 ¶ RunSQL ¶ class RunSQL ( sql , reverse_sql = None , state_operations = None , hints = None , elidabl ... SERT INTO musician (name) VALUES ('Reinhardt');" , None )]) migrations . RunSQL ([( "INSERT INTO musician ... me= %s ;" , [ 'Reinhardt' ])], ) If reverse_sql is None (the default), the RunSQL operation is irreversibl ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 6074
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t applications. デフォルトでは、 available_apps は None に設定されています。各テスト後、Django は flush を ... in a given test suite declare available_apps , or none of them. available_apps is mandatory in Django's o ... iscoverRunner ( pattern = 'test*.py' , top_level = None , verbosity = 1 , interactive = True , failfast = ... False , debug_sql = False , parallel = 0 , tags = None , exclude_tags = None , test_name_patterns = None ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
django.utils.http — Django 4.0.6 ドキュメント 6007
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... params = [] for key , value in query : if value is None : raise TypeError ( "Cannot encode None for key ' ... 31706. query_val = [] for item in itr : if item is None : raise TypeError ( "Cannot encode None for key ' ... q ) [ドキュメント] def http_date ( epoch_seconds = None ): """ Format the time to match the RFC1123 date f ... - such as that outputted by time.time(). If set to None, it defaults to the current time. Output a string ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
バリデータ — Django 4.0.6 ドキュメント 5884
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... KeysValidator ( keys , strict = False , messages = None ) [ソース] ¶ Validates that the given keys are con ... s RangeMaxValueValidator ( limit_value , message = None ) [ソース] ¶ Validates that the upper bound of the ... s RangeMinValueValidator ( limit_value , message = None ) [ソース] ¶ Validates that the lower bound of the ... ueValidator , ソース , Validates , KeysValidator , None , RangeMaxValueValidator クイック検索 Last update: ...
https://man.plustar.jp/django/ref/contrib/postgres/validators.html - [similar]
データベースのトランザクション — Django 4.0.6 ドキュメント 5884
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を防ぐことができます。 non_atomic_requests ( using = None ) [ソース] ¶ このデコレータは、与えられたビューのた ... ための一つの API を提供しています。 atomic ( using = None , savepoint = True , durable = False ) [ソース] ¶ ... successfully committed: on_commit ( func , using = None ) [ソース] ¶ Pass any function (that takes no argu ... each database connection. get_autocommit ( using = None ) [ソース] ¶ set_autocommit ( autocommit , using = ...
https://man.plustar.jp/django/topics/db/transactions.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 NEXT