検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 190 for new (0.105 sec.)
GDAL API — Django 4.0.6 ドキュメント 6287
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... resentation of this geometry. clone () ¶ Returns a new OGRGeometry clone of this geometry object. close_r ... this geometry that have not been closed, this routine will do so by adding the starting point to the end: ... boundary () ¶ The boundary of this geometry, as a new OGRGeometry object. convex_hull ¶ The smallest con ... vex polygon that contains this geometry, as a new OGRGeometry object. difference () ¶ Returns the re ...
https://man.plustar.jp/django/ref/contrib/gis/gdal.html - [similar]
Advice for new contributors — Django 4.0.6 ドキュメント 5927
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ndex | Modules « previous | up | next » Advice for new contributors ¶ New contributor and not sure what t ... he section for you. Get up and running! If you are new to contributing to Django, the Django への初めての ... for a more thorough explanation. Guidelines ¶ As a newcomer on a large project, it's easy to experience f ... tributing code FAQ for ideas here. 目次 Advice for new contributors 最初のステップ Guidelines 前のトピック ...
https://man.plustar.jp/django/internals/contributing/new-contributors.html - [similar]
複数のデータベース — Django 4.0.6 ドキュメント 5927
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... h could be caused by editing them) before creating new migrations. By default, it checks only the default ... Let's consider another sample configuration. This one will have several databases: one for the auth appli ... . objects . get ( name = 'Douglas Adams' ) >>> # A new object has no database allocation when created >>> ... e(using=...) as a way to migrate the instance to a new database. However, if you don't take appropriate s ...
https://man.plustar.jp/django/topics/db/multi-db.html - [similar]
django.core.files.uploadhandler — Django 4.0.6 ドキュメント 5883
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e to prepend two '--'. """ pass [ドキュメント] def new_file ( self , field_name , file_name , content_typ ... , content_type_extra = None , ): """ Signal that a new file has been started. Warning: As with any data f ... r that streams data into a temporary file. """ def new_file ( self , * args , ** kwargs ): """ Create the ... to append to as data is coming in. """ super () . new_file ( * args , ** kwargs ) self . file = Temporar ...
https://man.plustar.jp/django/_modules/django/core/files/uploadhandler.html - [similar]
タイムゾーン — Django 4.0.6 ドキュメント 5883
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n' : 'Europe/London' , 'Paris' : 'Europe/Paris' , 'New York' : 'America/New_York' , } def set_timezone ( ... easons, time zone support is enabled by default in new projects, and you should keep it unless you have a ... is_tz = zoneinfo . ZoneInfo ( "Europe/Paris" ) >>> new_york_tz = zoneinfo . ZoneInfo ( "America/New_York" ... the correct way to convert between time zones. >>> new_york = paris . astimezone ( new_york_tz ) >>> pari ...
https://man.plustar.jp/django/topics/i18n/timezones.html - [similar]
マイグレーション — Django 4.0.6 ドキュメント 5883
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or this reason, it's recommended you always create new columns with null=True , as this way they will be ... t, so Django will refuse to run migrations or make new migrations until it's fixed. When using multiple d ... tent history. アプリにマイグレーションを追加する ¶ New apps come preconfigured to accept migrations, and ... .py makemigrations your_app_label This will make a new initial migration for your app. Now, run python ma ...
https://man.plustar.jp/django/topics/migrations.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 5851
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the code runs there. Otherwise, the code runs in a new loop in a new thread. Either way, this thread then ... = Local () def __init__ ( self , awaitable , force_new_loop = False ): if not callable ( awaitable ) or n ... e . __self__ except AttributeError : pass if force_new_loop : # They have asked that we always run in a n ... vent loop's thread if it's there, otherwise make a new loop # in this thread. try : awaitable = self . ma ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
Working with Git and GitHub — Django 4.0.6 ドキュメント 5851
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... om / GitHub_nick / django . git This will create a new directory "django", containing a clone of your Git ... g on a ticket ¶ When working on a ticket, create a new branch for the work, and base that work on upstrea ... ticket_xxxxx upstream / main The -b flag creates a new branch for you locally. Don't hesitate to create n ... When you go to your GitHub page, you will notice a new branch has been created. If you are working on a T ...
https://man.plustar.jp/django/internals/contributing/writing-code/working-with-g... - [similar]
Writing documentation — Django 4.0.6 ドキュメント 5851
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nations through clearer writing and more examples. New features: documentation of features that have been ... tion changes in the most useful and least error-prone ways. Getting the raw documentation ¶ Though Django ... e else needs. Providing background context helps a newcomer connect the topic to things that they already ... framework -- it's not capitalized. website -- use one word, without capitalization. Django-specific termi ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Django へのコントリビュート — Django 4.0.6 ドキュメント 5774
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ee major areas: Writing code ? Fix a bug, or add a new feature. You can make a pull request and see your ... the following sections to find out how: Advice for new contributors 最初のステップ Guidelines バグレポート ... turedText files Django-specific markup Documenting new features Minimizing images An example Spelling che ... ピックへ Django internals 次のトピックへ Advice for new contributors 関連キーワード Writing , documentatio ...
https://man.plustar.jp/django/internals/contributing/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT