検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 359 for from (0.119 sec.)
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 4103
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 下のように置き換えてみてください。 polls/admin.py ¶ from django.contrib import admin from .models import Qu ... トに分割したいこともあるでしょう。 polls/admin.py ¶ from django.contrib import admin from .models import Qu ... minに``Choice を登録する方法です: polls/admin.py ¶ from django.contrib import admin from .models import Ch ... を以下のように書き換えてください。 polls/admin.py ¶ from django.contrib import admin from .models import Ch ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]
ミドルウェア — Django 4.0.6 ドキュメント 4103
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dleware ¶ class UpdateCacheMiddleware ¶ class FetchFromCacheMiddleware ¶ サイト全体でキャッシュを有効にしま ... す。 If necessary, individual views may be excluded from the APPEND_SLASH behavior using the no_append_slas ... h() decorator: from django.views.decorators.common import no_append_sl ... est , * args , ** kwargs ): """View to be excluded from APPEND_SLASH.""" return HttpResponse () Changed in ...
https://man.plustar.jp/django/ref/middleware.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 4103
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s a number one priority, after you have determined from profiling what indexes should be added. Use Meta.i ... ndexes or Field.db_index to add these from Django. Consider adding indexes to fields that you ... has to read most of the non-text, non-VARCHAR data from the disk for a single row in the results, even if ... and exists() ¶ If you are going to need other data from the QuerySet, evaluate it immediately. For example ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
django.contrib.gis.measure — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y be used # to endorse or promote products derived from this software without # specific prior written per ... s' PhD work on dimensioned units for robotics. """ from decimal import Decimal from functools import total ... : raise TypeError ( " %(class)s must be subtracted from %(class)s " % { "class" : pretty_name ( self )} ) ... : raise TypeError ( " %(class)s must be subtracted from %(class)s " % { "class" : pretty_name ( self )} ) ...
https://man.plustar.jp/django/_modules/django/contrib/gis/measure.html - [similar]
django.contrib.sites.middleware — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... up django.contrib.sites.middleware のソースコード from django.utils.deprecation import MiddlewareMixin fr ...
https://man.plustar.jp/django/_modules/django/contrib/sites/middleware.html - [similar]
django.core.files.base — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... up django.core.files.base のソースコード import os from io import BytesIO , StringIO , UnsupportedOperatio ... n from django.core.files.utils import FileProxyMixin from ... return ``False`` -- there's no good reason to read from memory in chunks. """ return self . size > ( chunk ...
https://man.plustar.jp/django/_modules/django/core/files/base.html - [similar]
django.core.signing — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... mport datetime import json import time import zlib from django.conf import settings from django.utils.cryp ... to import constant_time_compare , salted_hmac from django.utils.encoding import force_bytes from djan ... go.utils.module_loading import import_string from django.utils.regex_helper import _lazy_re_compile ...
https://man.plustar.jp/django/_modules/django/core/signing.html - [similar]
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ys rely on getting some kind of HTTP response back from calling its get_response callable. Middleware don' ... leware function that supports both: import asyncio from django.utils.decorators import sync_and_async_midd ... middleware short-circuited by returning a response from its process_request method. Under MIDDLEWARE , mid ... process_exception is applied to exceptions raised from a middleware process_request method. Under MIDDLEW ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]
テストを書いて実行する — Django 4.0.6 ドキュメント 4076
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョンの内側で実行することで、独立性を実現しています。 from django.test import TestCase from myapp.models impo ... code that aren't strictly wrong but could benefit from a better implementation. test データベース ¶ データ ... o share the database between threads. Finding data from your production database when running tests? If yo ... can help with ensuring your tests are independent from each other. Changed in Django 4.0: In older versio ...
https://man.plustar.jp/django/topics/testing/overview.html - [similar]
How to create CSV output — Django 4.0.6 ドキュメント 4050
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ブジェクトなのです。 以下に例を示します。 import csv from django.http import HttpResponse def some_view ( re ... イルの組み立てと伝達を効率的に扱います。 import csv from django.http import StreamingHttpResponse class Ech ... 下の例は、上述の例と同じ CSV ファイルを生成します。 from django.http import HttpResponse from django.templa ... The data is hard-coded here, but you could load it from a database or # some other source. csv_data = ( ( ...
https://man.plustar.jp/django/howto/outputting-csv.html - [similar]