検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 49 for upload (0.026 sec.)
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 13719
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... of contents | Index | Modules up django.core.files.uploadhandler のソースコード """ Base file upload handler ... django.conf import settings from django.core.files.uploadedfile import InMemoryUploadedFile , TemporaryUploa ... s.module_loading import import_string __all__ = [ "UploadFileException" , "StopUpload" , "SkipFile" , "FileU ... ploadHandler" , "TemporaryFileUploadHandler" , "MemoryFileUploadHandler" , "load_handle ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
ファイルのアップロード — Django 4.0.6 ドキュメント 13025
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eField : forms.py ¶ from django import forms class UploadFileForm ( forms . Form ): title = forms . CharFiel ... from request into the form as described in Binding uploaded files to a form . This would look something like ... django.shortcuts import render from .forms import UploadFileForm # Imaginary function to handle an uploaded ... file. from somewhere import handle_uploaded_file def upload_file ( request ): if request . m ...
https://man.plustar.jp/django/topics/http/file-uploads.html - [similar]
Django 1.4.14 release notes — Django 4.0.6 ドキュメント 9810
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... relative to the domain and not to the scheme. File upload denial-of-service ¶ Before this release, Django's ... file upload handing in its default configuration may degrade t ... s.stat() system calls when a duplicate filename is uploaded. Since stat() may invoke IO, this may produce a ... that given enough time, a user with the ability to upload files can cause poor performance in the upload han ...
https://man.plustar.jp/django/releases/1.4.14.html - [similar]
Django 1.5.9 release notes — Django 4.0.6 ドキュメント 9810
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... relative to the domain and not to the scheme. File upload denial-of-service ¶ Before this release, Django's ... file upload handing in its default configuration may degrade t ... s.stat() system calls when a duplicate filename is uploaded. Since stat() may invoke IO, this may produce a ... that given enough time, a user with the ability to upload files can cause poor performance in the upload han ...
https://man.plustar.jp/django/releases/1.5.9.html - [similar]
設定 — Django 4.0.6 ドキュメント 9598
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... _TMP is extended when more space is required. DATA_UPLOAD_MAX_MEMORY_SIZE ¶ デフォルト値: 2621440 (例: 2.5 M ... against the total request size excluding any file upload data. You can set this to None to disable the chec ... rform a similar check at that level. See also FILE_UPLOAD_MAX_MEMORY_SIZE . DATA_UPLOAD_MAX_NUMBER_FIELDS ¶ ... ロックするためのタイムアウトを秒で指定します。 FILE_UPLOAD_HANDLERS ¶ デフォルト値: [ 'django.core.files.uplo ...
https://man.plustar.jp/django/ref/settings.html - [similar]
Django 1.6.6 release notes — Django 4.0.6 ドキュメント 9538
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... relative to the domain and not to the scheme. File upload denial-of-service ¶ Before this release, Django's ... file upload handing in its default configuration may degrade t ... s.stat() system calls when a duplicate filename is uploaded. Since stat() may invoke IO, this may produce a ... that given enough time, a user with the ability to upload files can cause poor performance in the upload han ...
https://man.plustar.jp/django/releases/1.6.6.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 9040
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... アップロードハンドラ ¶ アップロードファイル ¶ class UploadedFile [ソース] ¶ During file uploads, the actual f ... equest.FILES . Each entry in this dictionary is an UploadedFile object (or a subclass) -- a wrapper around a ... n uploaded file. You'll usually use one of these methods to ... access the uploaded content: UploadedFile. read () ¶ Read the entire ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 8768
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing EmailValidator . FileField ¶ class FileField ( upload_to = '' , storage = None , max_length = 100 , ** o ... f used. 2 つの省略可能な引数があります: FileField. upload_to ¶ この属性は、アップロードディレクトリとファイル ... hich will be replaced by the date/time of the file upload (so that uploaded files don't fill up the given di ... : class MyModel ( models . Model ): # file will be uploaded to MEDIA_ROOT/uploads upload = models . FileFiel ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
How is Django Formed? — Django 4.0.6 ドキュメント 8557
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... version numbers and create the release package(s). Upload the package(s) to the djangoproject.com server. Up ... Password Access to the djangoproject.com server to upload files. Access to the admin on djangoproject.com as ... to actually put the release out there. To do this: Upload the release package(s) to the djangoproject server ... series, you will need to create the directory A.B. Upload the checksum file(s): $ scp Django-A.B.C.checksum. ...
https://man.plustar.jp/django/internals/howto-release-django.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 8059
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... orithm for generating filenames if a file with the uploaded name already exists. フォーム ¶ Formsets may con ... idators are now also properly inherited. FileField.upload_to now supports pathlib.Path . CheckConstraint is ... d since Django 2.0. New default value for the FILE_UPLOAD_PERMISSIONS setting ¶ In older versions, the FILE_ ... S setting defaults to None . With the default FILE_UPLOAD_HANDLERS , this results in uploaded files having d ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
PREV 1 2 3 4 5 NEXT