DEFを含む例文一覧と使い方
該当件数 : 81件
The line number of the def statement within the file named by file.例文帳に追加
file で指定されたファイル内にある def 文の数です。 - Python
The data flow analysis of Def/Use is to obtain all the lists of variables such that referencing (Use) is performed prior to definition (Def).例文帳に追加
Def/Useのデータフロー解析とは、定義(Def)より先に参照(Use)が行われる変数の全リストを得ることである。 - 特許庁
He sold the stocks of DEF company for the first time in a margin transaction on spec.例文帳に追加
彼はDEF社の株を投機目的で新規売りした。 - Weblio英語基本例文集
Alle Rechte Vorbehalten.) readonly def end readonly def /FontName /Showboat def --stdin-- Using this information, a possible name might be: -type1-Showboat-medium-r-normal-decorative-0-0-0-0-p-0-iso8859-1 例文帳に追加
この情報から、次のような名前が考えられます:-type1-Showboat-medium-r-normal-decorative-0-0-0-0-p-0-iso8859-1 - FreeBSD
Next, data flow analysis of Def/Use is performed for the execution path.例文帳に追加
次に、実行パスについて、Def/Useのデータフロー解析を行う。 - 特許庁
Name of the file containing the def statement defining the function. 例文帳に追加
関数を定義してる def 文が入っているファイルの名前です。 - Python
def moneyfmt(value, places=2, curr='', sep=',', dp='.',pos='', neg='-', trailneg=''):"""Convert Decimal to a money formatted string. 例文帳に追加
def moneyfmt(value, places=2, curr='', sep=',', dp='.',pos='', neg='-', trailneg=''):"""Decimal を通貨表現の文字列に変換します。 - Python
Gogogo golems def is 1500. you're the one whos taking damage!例文帳に追加
ゴゴゴゴーレムの 守備力は 1500! - 映画・海外ドラマ英語字幕翻訳辞書
def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x 例文帳に追加
この関数は以下のスクリプトと同等です: def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x - Python
def ifilterfalse(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if not predicate(x):yield x 例文帳に追加
この関数は以下のスクリプトと同等です: def ifilterfalse(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if not predicate(x):yield x - Python
The ``def'' form is actually more powerful since it allows the execution of multiple statements.例文帳に追加
実際には、``def'' 形式は複数の式を実行できるという点でより強力です。 - Python
Coming up on coyote 102.5 aerosmith, def leppard.例文帳に追加
お待たせしました コヨーテ 102. 5 -- エアロスミス デフ・レパード - 映画・海外ドラマ英語字幕翻訳辞書
The controller is generated.Comment out the one line generated within the braces and add "def scaffold = Book". 例文帳に追加
コントローラが生成されます。 中括弧内に生成された 1 行をコメントにし、「def scaffold = Book」 を追加します。 - NetBeans
The DEF mode in which the air is chiefly blown out to a front window glass from a DEF opening, is set by a front DEF switch solely devoted thereto.例文帳に追加
主としてDEF開口部から空気が前側窓ガラスに向けて吹き出されるDEFモードは専用のフロントDEFスイッチにより設定される。 - 特許庁
grades = "FEDCBA" breakpoints = [30, 44, 66, 75, 85] from bisect import bisect def grade(total):... return grades[bisect(breakpoints, total)]... grade(66)'C' map(grade, [33, 99, 77, 44, 12, 88])['E', 'A', 'B', 'D', 'F', 'A'] 例文帳に追加
区切り点は 85 以上は `A'、 75..84 は `B'、などです。 grades = "FEDCBA" breakpoints = [30, 44, 66, 75, 85] from bisect import bisect def grade(total):... return grades[bisect(breakpoints, total)]... grade(66)'C' map(grade, [33, 99, 77, 44, 12, 88])['E', 'A', 'B', 'D', 'F', 'A'] - Python
Unicode strings are much like strings, but are specified in the syntax using a preceeding "u" character:u'abc', u"def".例文帳に追加
Unicode 文字列はほとんど文字列と同じですが、u'abc' 、u"def" といったように先頭に文字 "u" を付けて指定します。 - Python
Imagine you are parsing two files, say file1.c and file2.c, each includes the file def.例文帳に追加
2つのファイルfile1.cとfile2.cを解析することを考える。 - XFree86
If no options are specified, or if -def is specified, the window is reset to its default state.例文帳に追加
オプションが一つも指定されていない場合や、-defが指定されている場合、ウィンドウはデフォルト状態にリセットされる。 - XFree86
A``def'' form executed inside a function definition defines a local function that can be returned or passed around.例文帳に追加
関数定義内で``def'' 形式を実行すると、戻り値として返したり引き渡したりできるローカルな関数を定義します。 - Python
Free variables used in the nested function can access the local variables of the function containing the def.例文帳に追加
ネストされた関数内で自由変数を使うと、def 文の入っている関数のローカル変数にアクセスすることができます。 - Python
A clipping/discrete allocation switching part 11 generates DEF size information showing DEF size, based on allocation information input by a control information reception part 100; and outputs the generated DEF size information to a DEF part 122.例文帳に追加
クリッピング/離散配置切替部11は、制御情報受信部100より入力された割当情報に基づいてDFTサイズを示すDFTサイズ情報を生成し、生成したDFTサイズ情報をDFT部122に出力する。 - 特許庁
# Returns an array of all the items sold in the store. def self. 例文帳に追加
# 店舗で販売されるすべての項目の配列を返します。 - NetBeans
This lab is equipped with def con one level quarantine assurance.例文帳に追加
このラボでは隔離保障のために デフ・コン・ワンが備えられている - 映画・海外ドラマ英語字幕翻訳辞書
The -def option can be specified along with other options and only the non-specified characteristics will be reset to the default state.例文帳に追加
-defオプションは他のオプションと併用して指定することができる。 その場合指定していない分がデフォルト状態にリセットされる。 - XFree86
To provide an air-conditioning unit capable of blowing cold air and hot air from a FACE blowoff port and a FOOT blowoff port, respectively, in a B/L mode, without blowing cold air from a DEF blowoff port in a DEF/ FOOT mode, and an air conditioner for a vehicle.例文帳に追加
DEF/FOOTモードにおいて、DEF吹出口から冷たい空気が吹き出されることがなく、B/Lモードにおいて、FACE吹出口から冷たい空気を、FOOT吹出口から温かい空気を吹き出させることのできる空気調和ユニットおよび車両用空気調和装置を提供すること。 - 特許庁
def f(arg): pass # a function that does nothing (yet)class C: pass # a class with no methods (yet) 例文帳に追加
def f(arg): pass # a function that does nothing (yet)class C: pass # a class with no methods (yet) のように、構文法的には文が必要だが、コードとしては何も実行したくない場合のプレースホルダとして有用です。 - Python
An alternative approach is to forget about the .def file, and add the option/export:initspam somewhere to the Link settings, by manually editing the setting in Project Options dialog).例文帳に追加
.def ファイルを全く無視するという方法もあり、それには /exprt:initspam を「プロジェクトのオプション」ダイアログにあるリンク設定のどこかに手動で追加します)。 - Python
The folding is performed so that at the corner part of the rectangular parallelepiped, by using the inner center O of a right-angled triangle DEF as a center, a side DE and a side DF come into contact with a side EF.例文帳に追加
折り畳みは、直方体の角部において直角三角形DEFの内心Oを中心として、辺DEと辺DFとが辺EFに接するように行う。 - 特許庁
This is called a positive lookbehind assertion.(?=abc)def will find a match in "abcdef", since the lookbehind will back up 3 characters and check if the contained pattern matches.例文帳に追加
これは 肯定後読みアサーション(positive lookbehind assertion)と呼ばれます。 (?=abc)def は、"abcdef" にマッチを見つけます、というのは後読みが3文字をバックアップして、含まれているパターンとマッチするかどうか検査するからです。 - Python
A blow-out port is used as a defroster blow-out port (DEF) 51 for blowing out air toward a windshield 70.例文帳に追加
また吹出口をフロントガラス70に向かって空気を吹き出すデフロスタ吹出口(DEF)51とする。 - 特許庁
SPIRO[CYCLOPENTA[def]TRIPHENYLENE-4,9'-FLUORENE] COMPOUND AND ORGANIC LIGHT-EMITTING DEVICE HAVING THE SAME例文帳に追加
スピロ[シクロペンタ[def]トリフェニレン−4,9’−フルオレン]化合物及びそれを有する有機発光素子 - 特許庁
In the next step, when character inputting key 'DEF' 22c is depressed, reset condition of switching flag is maintained and as shown in figure (d), a small letter 'd' is shown with the small letter 'a' in the right side of the small letter 'a' on the display panel 30.例文帳に追加
次に、文字入力キー「DEF」22cが押下されたとき、切替フラグのリセット状態が維持されて、図4(d)に示すように、表示パネル30では、小文字「a」とともにその右隣に小文字「d」が表示される。 - 特許庁
A portion, equivalent to a second side FACE opening 13, of a FACE door 16 is cut off in part and the second side FACE opening 13 is thereby closed with a DEF door 17 only in a DEF mode.例文帳に追加
そして、FACEドア16の中で第2サイドFACE開口部13に相当する部分を一部切欠き形状にし、且つDEFモード時のみDEFドア17でその第2サイドFACE開口部13を閉塞するようにした。 - 特許庁
Note that the lambda form is merely a shorthand for a simplified function definition; a function defined in a ``def'' statement can be passed around or assigned to another name just like a function defined by a lambda form.例文帳に追加
ラムダ形式は、単純化された関数定義を行うための略記法にすぎません; ``def'' 文で定義された関数は、ラムダ形式で定義された関数と全く同様に引渡したり、他の名前に代入したりできます。 - Python
The opening positions of a vent door 52 and a foot door 53 are changed to a half-opened positions at which opening parts 32, 33 are half-opened in the B/L mode, and a DEF door 51 is changed to the fully-closed position at which the DEF opening part 31 is closed.例文帳に追加
B/Lモード時には、ベントドア52及びフットドア53の開度位置は、各開口部32,33を半分開く半開位置に切換えられるとともに、DEFドア51はDEF開口部31を閉塞する全閉位置に切換えられる。 - 特許庁
When a defect Def exists on a spiral track Tsp, a CPU calculates a point existing one rap before the defect Def of the spiral as movement staring point Pst and the point existing one rap after the defect as movement ending point Psp.例文帳に追加
スパイラルトラックTsp上に、ディフェクトDefが存在する場合、CPU110は、ディフェクトDefに対して、スパイラル1周前の地点を移動開始地点Pstとし、スパイラル1周後の地点を移動終了地点Pspとして算出する。 - 特許庁
Lens drive control based on the defocus amount def is instructed to a lens CPU and then processing is finished in a step S660.例文帳に追加
ステップS660において、デフォーカス量defに基づいたレンズ駆動制御をレンズCPUに指示し、処理を終了する。 - 特許庁
To feed an air-conditioning wind to a 100% front wind shield in a DEF mode, as a blowout port mode, without increasing a cost.例文帳に追加
コストアップすることなく、吹出口モードがDEFモードの時に、100%フロントウインドシールドに空調風を流すようにする。 - 特許庁
To change an air intake position over to an outside air port from an inside air port by interlocking with changing an air blowout position over to a DEF blowout port.例文帳に追加
空気の吹出位置をDEF吹出口に切換えることに連動して空気の取込位置を内気口から外気口に切換えること。 - 特許庁
When a mode parameter is stored on a disk 140, a storage device 100 stores not only a Sav value of the mode parameter, but also a Def value as a set.例文帳に追加
記憶装置100は、ディスク140にモードパラメタを記憶する場合に、モードパラメタのSav値だけでなく、Def値をセットで記憶する。 - 特許庁
This allows the magnetic head to move on the track TR from the point Pst avoiding the defect Def while enabling continued recording of data.例文帳に追加
これにより、磁気ヘッドは地点Pstより軌跡TR上を移動していき、ディフェクトDefを回避できると共に、データの継続した記録が可能となる。 - 特許庁
In the organic transistor having an organic semiconductor layer, the organic semiconductor layer contains at least one kind of dibenzo[def,p] chrysene derivative.例文帳に追加
有機半導体層を有する有機トランジスタにおいて、該有機半導体層にジベンゾ[def,p]クリセン誘導体を少なくとも1種含有してなる有機トランジスタ。 - 特許庁
In the organic transistor having an organic semiconductor layer, at least one kind of dibenzo [b,def] chrysene derivative is contained in the organic semiconductor layer.例文帳に追加
有機半導体層を有する有機トランジスタにおいて、該有機半導体層にジベンゾ[b,def]クリセン誘導体を少なくとも1種含有してなる有機トランジスタ。 - 特許庁
JESC: Japanese-English Subtitle Corpus映画・海外ドラマ英語字幕翻訳辞書のコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
| Copyright 1994-2010 The FreeBSD Project. All rights reserved. license |
| Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
| Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|
Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)