検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 61 for size (0.034 sec.)
django.core.files.base — Django 4.0.6 ドキュメント 15147
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント] class File ( FileProxyMixin ): DEFAULT_CHUNK_SIZE = 64 * 2 ** 10 def __init__ ( self , file , name = ... self . name ) def __len__ ( self ): return self . size @cached_property def size ( self ): if hasattr ( s ... elf . file , "size" ): return self . file . size if hasattr ( self . ... file , "name" ): try : return os . path . getsize ( self . file . name ) except ( OSError , TypeErro ...
https://man.plustar.jp/django/_modules/django/core/files/base.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 11176
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ase class for streaming upload handlers. """ chunk_size = 64 * 2 ** 10 # : The default chunk size is 64 KB ... " ) [ドキュメント] def file_complete ( self , file_size ): """ Signal that a file has completed. File size ... corresponds to the actual size accumulated by all the chunks. Subclasses should r ... write ( raw_data ) def file_complete ( self , file_size ): self . file . seek ( 0 ) self . file . size = f ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
django.core.files.uploadedfile — Django 4.0.6 ドキュメント 11118
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... file = None , name = None , content_type = None , size = None , charset = None , content_type_extra = Non ... e , ): super () . __init__ ( file , name ) self . size = size self . content_type = content_type self . c ... ). """ def __init__ ( self , name , content_type , size , charset , content_type_extra = None ): _ , ext = ... super () . __init__ ( file , name , content_type , size , charset , content_type_extra ) [ドキュメント] de ...
https://man.plustar.jp/django/_modules/django/core/files/uploadedfile.html - [similar]
File オブジェクト — Django 4.0.6 ドキュメント 9291
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ MEDIA_ROOT からの相対パスを含むファイル名です。 size ¶ bytes で表されたファイルサイズ。 file ¶ このクラ ... e file yielding one line at a time. chunks ( chunk_size = None ) [ソース] ¶ Iterate over the file yielding ... "chunks" of a given size. chunk_size defaults to 64 KB. This is especially ... the whole file in memory. multiple_chunks ( chunk_size = None ) [ソース] ¶ Returns True if the file is la ...
https://man.plustar.jp/django/ref/files/file.html - [similar]
django.core.files.images — Django 4.0.6 ドキュメント 9233
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... iles Pillow needs to # parse the whole file. chunk_size = 1024 while 1 : data = file . read ( chunk_size ) ... ecoder object" for # WebP files. A different chunk_size may work. pass if p . image : return p . image . s ... ize chunk_size *= 2 return ( None , None ) finally : if close : f ...
https://man.plustar.jp/django/_modules/django/core/files/images.html - [similar]
PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 8697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tArrayField ¶ class SplitArrayField ( base_field , size , remove_trailing_nulls = False ) ¶ This field han ... ument. It specifies the form field to be repeated. size ¶ This is the fixed number of times the underlying ... plitArrayField ( IntegerField ( required = True ), size = 3 , remove_trailing_nulls = False ) [ '1' , '2' ... litArrayField ( IntegerField ( required = False ), size = 3 , remove_trailing_nulls = False ) [ '1' , '2' ...
https://man.plustar.jp/django/ref/contrib/postgres/forms.html - [similar]
設定 — Django 4.0.6 ドキュメント 8697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... jango will use TBLSPACE_TMP + '.dbf' . DATAFILE_MAXSIZE ¶ デフォルト値: '500M' This is an Oracle-specific ... setting. The maximum size that the DATAFILE is allowed to grow to. DATAFILE_ ... TMP_MAXSIZE ¶ デフォルト値: '500M' This is an Oracle-specific ... setting. The maximum size that the DATAFILE_TMP is allowed to grow to. DATAF ...
https://man.plustar.jp/django/ref/settings.html - [similar]
GDAL API — Django 4.0.6 ドキュメント 8624
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... representation of this geometry in KML format. wkb_size ¶ Returns the size of the WKB buffer needed to hol ... s geometry: >>> OGRGeometry ( 'POINT(1 2)' ) . wkb_size 21 wkb ¶ Returns a buffer containing a WKB represe ... 'data' : ( 2 , 3 ), ... 'offset' : ( 1 , 1 ), ... 'size' : ( 2 , 2 ), ... 'shape' : ( 2 , 1 ), ... 'nodata ... as a string. data ( data = None , offset = None , size = None , shape = None ) ¶ The accessor to the pixe ...
https://man.plustar.jp/django/ref/contrib/gis/gdal.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 8146
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ; see below. UploadedFile. multiple_chunks ( chunk_size = None ) ¶ Returns True if the uploaded file is bi ... figurable; see below. UploadedFile. chunks ( chunk_size = None ) ¶ A generator returning chunks of the fil ... e uploaded file (e.g. my_file.txt ). UploadedFile. size ¶ The size, in bytes, of the uploaded file. Upload ... プされます。 FileUploadHandler. file_complete ( file_size ) [ソース] ¶ ファイルのアップロードが完了したときに ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 8016
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eld . ArrayField ¶ class ArrayField ( base_field , size = None , ** options ) ¶ A field for storing lists ... nstance as the base_field . You may also specify a size . ArrayField can be nested to store multi-dimensio ... ls . CharField ( max_length = 10 , blank = True ), size = 8 , ), size = 8 , ) Transformation of values bet ... on are all delegated to the underlying base field. size ¶ This is an optional argument. If passed, the arr ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT