Results of 1 - 10 of about 61 for limit (0.021 sec.)
- django.core.validators — Django 4.0.6 ドキュメント 13828
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
eValidator : message = _ ( "Ensure this value is %(limit_value)s (it is %(show_value)s )." ) code = "limit_ ...
value" def __init__ ( self , limit_value , message = None ): self . limit_value = lim ...
( self , value ): cleaned = self . clean ( value ) limit_value = ( self . limit_value () if callable ( self ...
. limit_value ) else self . limit_value ) params = { "limi ...
-
https://man.plustar.jp/django/_modules/django/core/validators.html
- [similar]
- django.contrib.postgres.validators — Django 4.0.6 ドキュメント 12770
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
value)d item, it should contain no more than " " %(limit_value)d ." , "List contains %(show_value)d items, ...
it should contain no more than " " %(limit_value)d ." , "limit_value" , ) class ArrayMinLengt ...
alue)d item, it should contain no fewer than " " %(limit_value)d ." , "List contains %(show_value)d items, ...
it should contain no fewer than " " %(limit_value)d ." , "limit_value" , ) [ドキュメント] @dec ...
-
https://man.plustar.jp/django/_modules/django/contrib/postgres/validators.html
- [similar]
- バリデータ — Django 4.0.6 ドキュメント 11523
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
MaxValueValidator ¶ class RangeMaxValueValidator ( limit_value , message = None ) [ソース] ¶ Validates that ...
the upper bound of the range is not greater than limit_value . RangeMinValueValidator ¶ class RangeMinVal ...
ueValidator ( limit_value , message = None ) [ソース] ¶ Validates that ...
the lower bound of the range is not less than the limit_value . 目次 バリデータ KeysValidator Range valida ...
-
https://man.plustar.jp/django/ref/contrib/postgres/validators.html
- [similar]
- バリデータ — Django 4.0.6 ドキュメント 10175
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ue . MaxValueValidator ¶ class MaxValueValidator ( limit_value , message = None ) [ソース] ¶ Raises a Valid ...
ith a code of 'max_value' if value is greater than limit_value , which may be a callable. MinValueValidator ...
¶ class MinValueValidator ( limit_value , message = None ) [ソース] ¶ Raises a Valid ...
r with a code of 'min_value' if value is less than limit_value , which may be a callable. MaxLengthValidato ...
-
https://man.plustar.jp/django/ref/validators.html
- [similar]
- django.utils.html — Django 4.0.6 ドキュメント 10074
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
nt )) @keep_lazy_text def urlize ( text , trim_url_limit = None , nofollow = False , autoescape = False ): ...
s) and it'll still do the right thing. If trim_url_limit is not None, truncate the URLs in the link text lo ...
nger than this limit to trim_url_limit - 1 characters and append an ell ...
isinstance ( text , SafeData ) def trim_url ( x , limit = trim_url_limit ): if limit is None or len ( x ) ...
-
https://man.plustar.jp/django/_modules/django/utils/html.html
- [similar]
- モデルフィールドリファレンス — Django 4.0.6 ドキュメント 8247
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
DecimalField . You should also be aware of SQLite limitations of decimal fields. DurationField ¶ class Dur ...
100 , ** options ) ¶ A CharField whose choices are limited to the filenames in a certain directory on the f ...
allows values under a certain (database-dependent) limit. Values from 1 to 32767 are safe in all databases ...
LETE constraint to the database field. ForeignKey. limit_choices_to ¶ Sets a limit to the available choices ...
-
https://man.plustar.jp/django/ref/models/fields.html
- [similar]
- Django 1.4.8 release notes — Django 4.0.6 ドキュメント 8146
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
sword hashers ¶ In previous versions of Django, no limit was imposed on the plaintext length of a password. ...
ngo's authentication framework imposes a 4096-byte limit on passwords and will fail authentication with any ...
-
https://man.plustar.jp/django/releases/1.4.8.html
- [similar]
- Django 1.5.4 release notes — Django 4.0.6 ドキュメント 8146
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
sword hashers ¶ In previous versions of Django, no limit was imposed on the plaintext length of a password. ...
ngo's authentication framework imposes a 4096-byte limit on passwords, and will fail authentication with an ...
-
https://man.plustar.jp/django/releases/1.5.4.html
- [similar]
- PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 7581
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
expressions , fastupdate = None , gin_pending_list_limit = None , ** options ) ¶ Creates a gin index . To u ...
an integer number of bytes to the gin_pending_list_limit parameter to tune the maximum size of the GIN pend ...
-
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html
- [similar]
- 素の SQL 文の実行 — Django 4.0.6 ドキュメント 7581
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
rson . objects . raw ( 'SELECT * FROM myapp_person LIMIT 1' )[ 0 ] モデルのフィールドの遅延評価 ¶ モデルのフ ...
cursor . execute ( "SELECT id, parent_id FROM test LIMIT 2" ) >>> cursor . fetchall () ((54360982, None), ( ...
cursor . execute ( "SELECT id, parent_id FROM test LIMIT 2" ) >>> dictfetchall ( cursor ) [{'parent_id': No ...
cursor . execute ( "SELECT id, parent_id FROM test LIMIT 2" ) >>> results = namedtuplefetchall ( cursor ) > ...
-
https://man.plustar.jp/django/topics/db/sql.html
- [similar]