検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 64 for integer (0.024 sec.)
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 13927
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the BloomExtension migration operation. Provide an integer number of bits from 1 to 4096 to the length parame ... takes a tuple or list of up to 32 values that are integer number of bits from 1 to 4095. Changed in Django 3 ... uum. The pages_per_range argument takes a positive integer. Changed in Django 3.2: Positional argument *expre ... ** options ) ¶ Creates a B-Tree index. Provide an integer value from 10 to 100 to the fillfactor parameter t ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
GeoDjango Tutorial — Django 4.0.6 ドキュメント 13425
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... le for holding non-geometric attribute data (e.g., integer and character fields). .prj : Contains the spatial ... ng (2.0) ISO2: String (2.0) ISO3: String (3.0) UN: Integer (3.0) NAME: String (50.0) AREA: Integer (7.0) POP2 ... 005: Integer (10.0) REGION: Integer (3.0) SUBREGION: Integer (3 ... ng (2.0) ISO2: String (2.0) ISO3: String (3.0) UN: Integer (3.0) NAME: String (50.0) AREA: Integer (7.0) POP2 ...
https://man.plustar.jp/django/ref/contrib/gis/tutorial.html - [similar]
GDAL API — Django 4.0.6 ドキュメント 10481
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ' type ¶ Returns the OGR type of this field, as an integer. The FIELD_CLASSES dictionary maps these values on ... 7 as_int () ¶ Returns the value of the field as an integer: >>> city [ 'Population' ] . as_int () 102121 as_s ... ding spatial reference WKT and PROJ strings, or an integer SRID). By default nothing is returned and the geom ... OGRGeomType >>> gt1 = OGRGeomType ( 3 ) # Using an integer for the type >>> gt2 = OGRGeomType ( 'Polygon' ) # ...
https://man.plustar.jp/django/ref/contrib/gis/gdal.html - [similar]
Full text search — Django 4.0.6 ドキュメント 9347
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hing query terms is taken into account. Provide an integer to the normalization parameter to control rank nor ... malization. This integer is a bit mask, so you can combine multiple behavio ... . PostgreSQL's defaults are <b> and </b> . Provide integer values to the max_words and min_words parameters t ... s. PostgreSQL's defaults are 35 and 15. Provide an integer value to the short_word parameter to discard words ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 9218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ibute. fields.E121 : max_length must be a positive integer. fields.W122 : max_length is ignored when used wit ... h <integer field type> . fields.E130 : DecimalField s must de ... ields.E131 : decimal_places must be a non-negative integer. fields.E132 : DecimalField s must define a max_di ... ibute. fields.E133 : max_digits must be a positive integer. fields.E134 : max_digits must be greater or equal ...
https://man.plustar.jp/django/ref/checks.html - [similar]
django.core.validators — Django 4.0.6 ドキュメント 8198
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... code = self . code , params = { "value" : value }) integer_validator = RegexValidator ( _lazy_re_compile ( r ... "^-?\d+\Z" ), message = _ ( "Enter a valid integer." ), code = "invalid" , ) def validate_integer ( v ... alue ): return integer_validator ( value ) [ドキュメント] @deconstructibl ... = message , code = code ) validate_comma_separated_integer_list = int_list_validator ( message = _ ( "Enter o ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
django.contrib.humanize — Django 4.0.6 ドキュメント 8198
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 表したものでもかまいません。 intcomma ¶ Converts an integer or float (or a string representation of either) to ... '450.000' になります。 intword ¶ Converts a large integer (or a string representation of an integer) to a fr ...
https://man.plustar.jp/django/ref/contrib/humanize.html - [similar]
LayerMapping data import utility — Django 4.0.6 ドキュメント 8069
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... some shapefiles don't come with a '.prj' file). An integer SRID, WKT or PROJ strings, and django.contrib.gis. ... may be overridden by setting this keyword with an integer for the desired interval. silent By default, non-f ... o disable these notifications. step If set with an integer, transactions will occur at every step interval. F ...
https://man.plustar.jp/django/ref/contrib/gis/layermapping.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 8069
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... resulting Blog object an entry_count attribute, an integer count of associated Entry objects: Blog . objects ... s used in a query. count() ¶ count () ¶ Returns an integer representing the number of objects in the database ... Allows chaining additional field lookups. Takes an integer year. 実装例: Entry . objects . filter ( pub_date_ ... Allows chaining additional field lookups. Takes an integer year. 実装例: Entry . objects . filter ( pub_date_ ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
Paginator — Django 4.0.6 ドキュメント 7811
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ject with the given 1-based index. Raises PageNotAnInteger if the number cannot be converted to an integer by ... tion if the requested page is invalid (i.e. not an integer) or contains no objects. Generally, it's enough to ... er of the following exceptions: exception PageNotAnInteger [ソース] ¶ Raised when page() is given a value tha ... t isn't an integer. exception EmptyPage [ソース] ¶ Raised when page() ...
https://man.plustar.jp/django/ref/paginator.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT