| 意味 | 例文 |
exception stringの部分一致の例文一覧と使い方
該当件数 : 26件
The exception value is the improperly formatted string that caused the exception to be raised.例文帳に追加
例外値は、例外を発生させた不適切にフォーマットされた文字列です。 - Python
The reason for the exception is passed to the constructor as a string.例文帳に追加
例外の理由は文字列としてコンストラクタに渡されます。 - Python
The reason for the exception is passed to the constructor as a string. See Also:例文帳に追加
例外の理由は文字列としてコンストラクタに渡されます。 - Python
Returns the comment string associated with this font.Raises an exception if there is none.Calls fmgetcomment(fh). 例文帳に追加
コメント文字列が何もなければ例外を返します。 fmgetcomment(fh)を呼び出します。 - Python
If doraise = False (the default), an error string is written to sys.stderr, but no exception is raised. 例文帳に追加
doraise = Falseの場合(デフォルト)はエラーメッセージはsys.stderrに出力し、例外は送出しません。 - Python
The message indicating which exception occurred is the always last string in the list.例文帳に追加
どの例外が起きたのかを示すメッセージは、常にリストの最後の文字列です。 - Python
If there is an error in the format string, theSystemError exception is set and NULL returned. 例文帳に追加
書式化文字列に関するエラーが生じると、SystemError 例外をセットして NULL を返します。 - Python
tzinfo.tzname(None), or raises an exception if the latter doesn't return None or a string object.例文帳に追加
後者の式が None か文字列オブジェクトのいずれかを返さない場合には例外を送出します。 - Python
Exception raised on various occasions; argument is a string describing what is wrong.例文帳に追加
様々な状況で送出された例外です; 引数は何が問題かを記述する文字列です。 - Python
This exception is raised for socket-related errors. The accompanying value is either a string telling what went wrong or a pair (errno, string)representing an error returned by a system call, similar to the value accompanying os.例文帳に追加
この例外は、ソケット関連のエラーが発生した場合に送出されます。 例外の値は障害の内容を示す文字列か、またはos.errorと同様な(errno, string)のペアとなります。 - Python
Commonly it is a rectangular cloth, which can wrap the waist one and half way round, and has a string attached to it (as an exception, yujo (a prostitute) used the one without a string). 例文帳に追加
腰をおおよそ一周半する長方形の布に紐をつけたものが一般的(遊女は例外的に紐が無いものを使った)。 - Wikipedia日英京都関連文書対訳コーパス
This method reads an intermediate code of a compiler, extracts one intermediate code (110), decides whether the extracted intermediate code is an instruction needing exception check and generates exception check instruction having a bit string that is uniquely decided from an exception kind (150) without generating an instruction for substituting a label showing the exception kind for a register when the instruction needs the exception check.例文帳に追加
コンパイラの中間コードを読み込み、中間コードを一つ取り出し、取り出した中間コードが、例外チェックが必要な命令であるか判断し、例外チェックが必要な命令である場合に、例外の種類を示すラベルをレジスタに代入する命令を生成することなく、例外の種類から一意に決まるビット列を持つ例外チェック命令を生成する。 - 特許庁
If a string argument is not used as a group name in the pattern, an IndexError exception is raised.A moderately complicated example:例文帳に追加
もし文字列引数がパターンのグループ名として使われていないものであれば、IndexError 例外が発生します。 適度に複雑な例題: - Python
This exception is raised when a string parameter contains a character that is not permitted in the context it's being used in by the XML 1.0 recommendation.例文帳に追加
この例外は、文字列パラメタが、現在使われているコンテキストでXML 1.0 勧告によって許可されていない場合に送出されます。 - Python
This is done to force programmers to use exception namesrather than their string value when specifying exception handlers.The string value of all built-in exceptions is their name, but this is not a requirement for user-defined exceptions or exceptions defined by library modules.例文帳に追加
これはプログラマに対して、例外処理を指定する際に、文字列ではなく例外名を使わせるための変更です。 組み込み例外の文字列値は全てその名前となりますが、ユーザ定義の例外やライブラリモジュールで定義される例外についてもそうするように要求しているわけではありません。 - Python
The computer then sets as initial values for the input-dedicated register values that can prevent exception interrupt from occurring and executes the instruction string for test use, thereby conducting an operation test without allowing any exception interrupt to occur.例文帳に追加
そして、コンピュータは、入力専用レジスタの初期値として例外割り込みの発生を回避することのできる値をセットして試験用命令列を実行し、例外割り込みを発生させることなく動作試験を行なう。 - 特許庁
This is raised when an unrecognized option is found in the argument list or when an option requiring an argument is given none.The argument to the exception is a string indicating the cause of the error.例文帳に追加
引数リストの中に認識できないオプションがあった場合か、引数が必要なオプションに引数が与えられなかった場合に発生します。 - Python
The converter throws an exception if the first character in the input string is not the currency symbol (in this case a ) or if there is a space between the currency symbol and the first digit. 例文帳に追加
入力文字列の最初の文字が通貨記号 (このケースでは ) ではない場合、または通貨記号と最初の数字の間に空白がある場合、コンバータは例外をスローします。 - NetBeans
The Python string must not contain embedded NUL bytes; if it does, a TypeError exception is raised.Unicode objects are converted to C strings using the default encoding.例文帳に追加
Python の文字列型は、NUL バイトが途中に埋め込まれていてはなりません; もし埋め込まれていればTypeError 例外を送出します。 Unicode オブジェクトはデフォルトエンコーディングを使ってC 文字列に変換されます。 - Python
The result is True if the string is the name of one of the object's attributes, False if not.(This is implemented by calling getattr(object,name) and seeing whether it raises an exception or not.)例文帳に追加
文字列がオブジェクトの属性名の一つであった場合 True を、そうでない場合 False を返します(この関数は getattr(object, name) を呼び出し、例外を送出するかどうかを調べることで実装しています)。 - Python
Also the computer, when preparing an instruction string for test use, designates for inputting of any instruction that may give rise to exception interrupt, such as floating point calculation or fixed point division, the input-dedicated register into which execution results are not written.例文帳に追加
また、コンピュータは、試験用命令列の作成時に、浮動小数点演算や固定小数点除算など例外割り込みが発生する可能性のある命令の入力に実行結果が書き込まれない入力専用レジスタを指定する。 - 特許庁
An alumite process is performed on at least one string of a heatproof aluminum alloy cable 14 positioned on the outmost part of a metallic core heatproof aluminum alloy stranded wire 10 which is constructed by twisting a number of heatproof aluminum alloy cable 14 containing metallic elements with the exception of aluminum.例文帳に追加
アルミニウム以外の金属元素を含有する耐熱アルミニウム合金線14を複数本撚り合わせて構成する鋼心耐熱アルミニウム合金撚線10の最外に位置する前記耐熱アルミニウム合金線14の少なくとも1本にアルマイト処理を施して構成する。 - 特許庁
Any attempt to access one of the object's attributes will have to be approved by the filter function; if the access is denied an AttributeError exception will be raised.If present, filter must be a function that accepts a string containing an attribute name, and returns true if access to that attribute will be permitted; if filter returns false, the access is denied.例文帳に追加
オブジェクトの属性に対するアクセスの試みは全て、filter 関数によって認可されなければなりません; アクセスが拒否された場合 AttributeError 例外が送出されます。 filter が存在する場合、この関数は属性名を含む文字列を受理し、その属性に対するアクセスが許可される場合には真を返さなければなりません; filter が偽を返す場合、アクセスは拒否されます。 - Python
| 意味 | 例文 |
| Copyright © Japan Patent office. All Rights Reserved. |
| 本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。 |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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. |
| © 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. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|