検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 157 for time (0.071 sec.)
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6405
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... te caching ¶ In previous versions of Django, every time you rendered a template, it would be reloaded from ... two new format characters: c to specify that a datetime value should be formatted in ISO 8601 format, and ... at allows output of the microseconds part of a datetime or time value. These are also available in others ... parts like the date and time template filters, the humanize template tag librar ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Django のセキュリティポリシー — Django 4.0.6 ドキュメント 6301
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ideal and are geared toward allowing us to deliver timely security updates to the official distribution of ... used keyservers. サポートバージョン ¶ At any given time, the Django team provides official security suppor ... notify django-announce of the date and approximate time of the upcoming security release, as well as the s ... If a reported issue is believed to be particularly time-sensitive -- due to a known exploit in the wild, f ...
https://man.plustar.jp/django/internals/security.html - [similar]
Form fields — Django 4.0.6 ドキュメント 6301
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nt, you can also pass any callable: >>> import datetime >>> class DateForm ( forms . Form ): ... day = for ... ms . DateField ( initial = datetime . date . today ) >>> print ( DateForm ()) <tr><th> ... f the argument is a callable, it is evaluated each time the field's form is initialized, in addition to du ... のウィジェット: DateInput 空の値: None Python の datetime.date オブジェクトに正規化されます。 与えられた値が ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
Signals — Django 4.0.6 ドキュメント 6197
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... he signal's receiver functions are called one at a time, in the order they were registered. Signal. connec ... nts, and may change those keyword arguments at any time. In the case of request_finished , it's documented ... Now, our my_callback function will be called each time a request finishes. コードはどこに置くの? Strictly ... t by specific senders ¶ Some signals get sent many times, but you'll only be interested in receiving a cer ...
https://man.plustar.jp/django/topics/signals.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 6151
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ファイルストレージ ¶ Storage backends now present a timezone-aware API with new methods get_accessed_time() ... , get_created_time() , and get_modified_time() . They return a timezo ... ne-aware datetime if USE_TZ is True and a naive datetime in the loca ... l timezone otherwise. The new Storage.generate_filename() ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django's cache framework — Django 4.0.6 ドキュメント 6151
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n dynamic websites is, well, they're dynamic. Each time a user requests a page, the web server makes all s ... hat you don't have to perform the calculation next time. Here's some pseudocode explaining how this would ... ge save the generated page in the cache ( for next time ) return the generated page Django comes with a ro ... el. Instead, expired cache entries are culled each time add() , set() , or touch() is called. キャッシュテ ...
https://man.plustar.jp/django/topics/cache.html - [similar]
はじめての Django アプリ作成、その 5 — Django 4.0.6 ドキュメント 6001
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e.py shell ...\> py manage.py shell >>> import datetime >>> from django.utils import timezone >>> from pol ... future >>> future_question = Question ( pub_date = timezone . now () + datetime . timedelta ( days = 30 )) ... に次のコードを書きます。 polls/tests.py ¶ import datetime from django.test import TestCase from django.utils ... import timezone from .models import Question class QuestionMod ...
https://man.plustar.jp/django/intro/tutorial05.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 6001
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -running code which should be executed exactly one time. Namespace packages as apps ¶ Python packages with ... n catalogs in applications. To translate at import time, you need gettext_lazy() instead. (Using gettext() ... ug, because the translation would happen at import time, rather than at each request depending on the acti ... Executing database queries with the ORM at import time in models modules will also trigger this exception ...
https://man.plustar.jp/django/ref/applications.html - [similar]
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 6001
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e.open() as f: . フォーム ¶ The new date_attrs and time_attrs arguments for SplitDateTimeWidget and SplitH ... iddenDateTimeWidget allow specifying different HTML attributes f ... or the DateInput and TimeInput (or hidden) subwidgets. The new Form.errors.g ... tion to extract the quarter from DateField and DateTimeField , and exposed it through the quarter lookup. ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
Database instrumentation — Django 4.0.6 ドキュメント 6001
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ample, a query logger could look like this: import time class QueryLogger : def __init__ ( self ): self . ... sql , 'params' : params , 'many' : many } start = time . monotonic () try : result = execute ( sql , para ... tatus' ] = 'ok' return result finally : duration = time . monotonic () - start current_query [ 'duration' ...
https://man.plustar.jp/django/topics/db/instrumentation.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT