exceptionを含む例文一覧と使い方
該当件数 : 1882件
The only exception is the portrait of the High priestess (Saigu) Kishi; she is sitting on a tatami mat with ugen-beri (a hem made of silk fabrics colored in one color with sequential layers from light to dark) with a folding screen at the back and a kicho (a curtained frame put up to screen royal personages or noble ladies from direct view of those around them) at the front to indicate her noble status. 例文帳に追加
ただし、中で身分の高い斎宮女御徽子のみは繧繝縁(うんげんべり)の上畳(あげだたみ)に座し、背後に屏風、手前に几帳を置いて、格の高さを表している。 - Wikipedia日英京都関連文書対訳コーパス
If classinfo is not a class, type, or tuple of classes, types, and such tuples, a TypeError exception is raised.Changed in version 2.2:Support for a tuple of type information was added.例文帳に追加
classinfo がクラス、型、クラスや型からなるタプル、そういったタプルが再帰構造をとっているタプルのいじれでもない場合、例外 TypeError が送出されます。 バージョン 2.2 で 変更 された仕様:型情報をタプルにした形式のサポートが追加されました。 - Python
Used for half-delay mode, which is similar to cbreak mode in that characters typed by the user are immediately available to the program.However, after blocking for tenths tenths of seconds, an exception is raised if nothing has been typed.例文帳に追加
半遅延モード、すなわち cbreak モードに似た、ユーザが打鍵した文字がすぐにプログラムで利用できるようになるモードで使われます。 しかしながら、何も入力されなかった場合、 tenths 十秒後に例外が送出されます。 - Python
If a group number is negative or larger than the number of groups defined in the pattern, an IndexError exception is raised.If a group is contained in a part of the pattern that did not match,the corresponding result is None.例文帳に追加
もしグループ番号が負であるか、あるいはパターンで定義されたグループの数より大きければ、IndexError 例外が発生します。 もしグループがマッチしなかったパターンの一部に含まれていれば、対応する結果は None です。 - Python
Exception raised when something can't be encoded using the binhex format (for example, a filename is too long to fit in the filenamefield), or when input is not properly encoded binhex data.例文帳に追加
binhex 形式を使ってエンコードできなかった場合 (例えば、ファイル名が filename フィールドに収まらないくらい長かった場合など) や、入力が正しくエンコードされた binhex 形式のデータでなかった場合に送出される例外です。 - Python
The error handler must either raise this or a different exception or return a tuple with a replacement for theunencodable part of the input and a position where encoding should continue.例文帳に追加
エラー処理関数はこの例外を送出するか、別の例外を送出するか、または入力のエンコードができなかった部分の代替文字列とエンコードを再開する場所の指定が入ったタプルを返すかしなければなりません。 - Python
However, for backwards compatibility, the args attribute contains only a 2-tuple of the first two constructor arguments.The filename attribute is None when this exception is created with other than 3 arguments.例文帳に追加
しかしながら、以前のバージョンとの互換性のために、args 属性にはコンストラクタに渡した最初の 2 つの引数からなる 2 要素のタプルしか含みません。 この例外が 3 つ以外の引数で生成された場合、filename 属性はNone になります。 - Python
For plain integers,all operations that can overflow are checked except left shift, wheretypical applications prefer to drop bits than raise an exception. 例文帳に追加
通常の整数では、オーバフローを起こす全ての演算がチェックされます。 例外は左シフトで、典型的なアプリケーションでは左シフトのオーバフローでは例外を送出するよりもむしろ、オーバフローしたビットを捨てるようにしています。 - Python
It must be opened in binary mode('wb' or 'w+b').If the value has (or contains an object that has) an unsupported type,a ValueError exception is raised -- but garbage data will also be written to the file.例文帳に追加
またファイルはバイナリモード('wb' または 'w+b') で開かれていなければなりません。 値 (または値のオブジェクトに含まれるオブジェクト) がサポートされていない型の場合、ValueError 例外が送出されます -- が、同時にごみのデータがファイルに書き込まれます。 - Python
When a signal arrives during an I/O operation, it is possible that the I/O operation raises an exception after the signal handler returns.This is dependent on the underlying Unix system's semantics regardinginterrupted system calls.例文帳に追加
シグナルが I/O 操作中に到着すると、シグナルハンドラが処理を返した後に I/O 操作が例外を送出する可能性があります。 これは背後にある Unix システムが割り込みシステムコールにどういう意味付けをしているかに依存します。 - Python
Python installs a small number of signal handlers by default:SIGPIPE is ignored (so write errors on pipes and sockets can be reported as ordinary Python exceptions) and SIGINT is translated into a KeyboardInterrupt exception.例文帳に追加
Python は標準でごく小数のシグナルハンドラをインストールしています:SIGPIPE は無視されます (従って、パイプやソケットに対する書き込みで生じたエラーは通常の Python 例外として報告されます)SIGINT は KeyboardInterrupt 例外に変換されます。 - Python
The exception is the empty tuple, for which parentheses are required -- allowing unparenthesized ``nothing''in expressions would cause ambiguities and allow common typos to pass uncaught.例文帳に追加
例外は空のタプルで、この場合には丸括弧が必要です -- 丸括弧のつかない、``何も記述しない式 (nothing)'' を使えるようにしてしまうと、文法があいまいなものになってしまい、よくあるタイプミスが検出されなくなってしまいます。 - Python
On most serversdeletions are not actually performed until QUIT (the major exception isEudora QPOP, which deliberately violates the RFCs by doing pendingdeletes on any disconnect). 例文帳に追加
ほとんどのサーバで、QUITコマンドが実行されるまでは実際の削除は行われません(もっとも良く知られた例外は Eudora QPOPで、その配送メカニズムはRFCに違反しており、どんな切断状況でも削除操作を未解決にしています)。 - Python
This function will wait (using the delayfunc function passed to the constructor)for the next event, then execute it and so on until there are no morescheduled events.Either action or delayfunc can raise an exception. 例文帳に追加
この関数は次のイベントを(コンストラクタへ渡された関数delayfuncを使うことで)待ち、そしてそれを実行し、イベントがスケジュールされなくなるまで同じことを繰り返します。 actionあるいはdelayfuncは例外を投げることができます。 - Python
A setting of masking interruption with lower priority is set to an interrup controller 17, so that data having been written in the instruction cache 13 will not be rewritten due to exception processing resulting from other interruption at this point of time.例文帳に追加
この時点で他の割りこみによる例外処理で命令キャッシュ13に格納したデータが書き換えられることがないように、割りこみコントローラ17に優先順位の低い割りこみはマスクするように設定する。 - 特許庁
Simply establishing a discipline for the “movement of natural persons” does not guarantee liberalization due to the exception of some general rules, the level of liberalization is left to the commitments of individual countries, is the same as for other Modes.例文帳に追加
「人の移動」に関する規律を設けること自体が、その自由化を保障するとは限らない。他の態様と同様、一部の原則を除けば、あくまで自由化の程度は各国の約束に委ねられるためである。 - 経済産業省
Prof "There are a variety of aerosol products that including dusters, insect repellents, deodorants and industrial lubricants. Now, consumer aerosols are non-fluorocarbon, with the exception of dust remora errs and medical aerosols or other special purpose products.例文帳に追加
"先生「ダストブロワーや、殺虫剤や室内消臭剤、工業用の潤滑剤など様々な種類があるエアゾール製品は、現在ではダストブロワーや医療用噴霧器、その他の特殊用途を除いてすべてノンフロン化。" - 経済産業省
under ``Built-inExceptions.''Note also that the SpamError variable retains a reference to the newly created exception class; this is intentional!例文帳に追加
の ``組み込み例外'' の節に述べられているException クラスを基底クラスに持つ例外クラスも作成できます (NULLの代わりに他のクラスを渡した場合は別です)。 SpamError 変数は、新たに生成された例外クラスへの参照を維持することにも注意してください; これは意図的な仕様です!外部のコードが例外オブジェクトをモジュールから除去できるため、モジュールから新たに作成した例外クラスが見えなくなり、SpamError がぶら下がりポインタ (dangling pointer)になってしまわないようにするために、クラスに対する参照を所有しておかねばなりません。 - Python
Based on the result of it, a variable display 30 executes a pattern variable game and in the case when a pattern with an identifier stops on any one line in the middle of the execution, display of special ready-for-winning state appears on the line without exception.例文帳に追加
その結果に基づき、可変表示装置30で図柄変動遊技が実行され、その途中何れかのライン上で識別子付き図柄が停止した場合、当該ライン上にて特別リーチ表示が必ず出現する。 - 特許庁
But, in consequence of processing of the objects, if the objects have over flown again due to an overflow of the objects from a new information storage frame, a record of the objects is registered at the head of the table 400 by way of exception.例文帳に追加
ただし、未処理のフローオブジェクトを処理した結果、新たな情報格納枠にも格納しきれずに再び溢れた場合には、そのフローオブジェクトについては、例外的にフロー管理テーブルの先頭にそのレコードを登録する。 - 特許庁
When an exception detection processing part 16 detects the generation of exceptional processing, a clock stop controlling part 12 copies the 1 of the F/F 13 to an F/F 14, and sets 0 in the F/F 13, and supplies the clock CLK to the processor core 11.例文帳に追加
例外検出処理部16が例外処理発生を検出するとクロック停止制御部12はF/F13の1をF/F14へコピーし、F/F13に0を設定しクロックCLKをプロセッサコア11へ供給する。 - 特許庁
A system, upon an exception during CPFR, uses the other party's sales forecast value to recompute a plan necessary after sales forecasting, and extracts modifications from the plan before the recomputation to notify related departments.例文帳に追加
CPFR実施中に例外が発生した場合、相手側の販売予測値を利用して、販売予測業務以降に必要となる計画を再計算し、再計算前の計画との変更点を抽出し、関係部署に通知する。 - 特許庁
An OS which normally operates with the highest execution authority is allowed to operate with the reduced execution authority level, so that a resource can be protected between OS, and a processor is set with an exception can be generated, when the OS performs access to the resource to be protected.例文帳に追加
OS間で資源を保護するために、通常、最高の実行権限を有して動作するOSの実行権限レベルを下げて動作させ、保護すべき資源にアクセスした場合に例外が発生するようにプロセッサを設定する。 - 特許庁
To provide a static hazard detection device, static hazard detection method and program capable of automatically checking whether a static hazard can occur even in a logic circuit whereinto a control signal for controlling propagation of a timing exception signal such as a multi-cycle signal is introduced.例文帳に追加
マルチサイクル信号などのタイミング例外信号の伝搬を制御する制御信号が導入されている論理回路においても、スタティックハザードが発生する可能性があるか否かを自動的にチェックできるようにする。 - 特許庁
Exceptional information processor 12 adds output exception information indicating Not-Applicable to Output to the detected information stored in a detected-information memory unit 16 associated with the alarm information of input selection command information.例文帳に追加
除外情報処理部12は、入力される選択指示情報のアラーム情報に対応する検知情報記憶部16に記憶される検知情報に、出力の対象外であることを示す出力除外情報を追加する。 - 特許庁
Whether or not measurement results obtained by both are based on detection of the same part is determined (S7), when it is yes, the measurement is validated (S8), when it is no, the measurement is invalidated and exception processing such as retry is performed (S9).例文帳に追加
両者で得られた計測結果が同一の箇所の検出に基づくものかどうか判定し(S7)、イエスであれば計測は有効とし(S8)、ノーであれば計測は無効として、リトライ等の例外処理を行なう(S9)。 - 特許庁
The representation of a legal person by employees of another legal person having economic connections with the first legal person shall not be considered as unauthorized representation. Other legal entities, with the exception of natural persons, shall be equivalent to legal persons. 例文帳に追加
法人についての代理行為であって,その法人と事業上の関係を有する他の法人の従業者によるものは,無資格代理行為とはみなさない。自然人は例外とし,他の法的主体は,法人と同等とする。 - 特許庁
The parcels from the Service shall enjoy postage-free status with the exception of those which are sent by express or by air. A supplementary fee of 10 francs per page of document will be asked in this case.例文帳に追加
庁からの郵便物は,速達便又は航空便によって送付されるものを除いて,郵送代無料の地位を享受する。速達便又は航空便の場合は,書類の各頁につき補足料金10フランを請求する。 - 特許庁
The visual representation module may be configured to operatively generate at least one visual representation of at least one of a page in a page description language file, and a programmed exception related to the page description language file.例文帳に追加
視覚的表現モジュールは、ページ記述言語ファイルのページ及びページ記述言語ファイルに関係したプログラムされた例外の少なくとも一方の少なくとも1つの視覚表現を動作上生成するように構成される。 - 特許庁
The error signal changing device responds to an error signal from an I/O bus, substitutes decided response for it and makes bus error exception processing by means of processor software unnecessary by transferring not a bus error signal but the decided response to the processor.例文帳に追加
エラー信号変更器は、I/Oバスからのエラー信号に応答し、決定した応答に置換し、バス・エラー信号ではなく、決定した応答をプロセッサに渡すことにより、プロセッサ・ソフトウエアによるバス・エラー例外処理を不要とする。 - 特許庁
Storage means 1a stores definition information for defining predetermined conditions corresponding to progress of processing of a predetermined program and exception program components generating predetermined exceptions for the program in association with the program.例文帳に追加
記憶手段1aは、所定のプログラムの処理経過に応じた所定の条件と当該プログラムに対して所定の例外を発生させるための例外用プログラム部品とを当該プログラムに対応付けて定義した定義情報を記憶する。 - 特許庁
To realize a printer to restrict printing by conditions such a budget, by which printing by a special case is admitted in the case of urgency and the printing by the exception is allowed on sufficiently managed conditions.例文帳に追加
印刷を予算などの条件で制限すると共に、緊急な場合に特例による印刷が認められ、かつその特例による印刷が十分に管理された条件の上で許可される印刷装置の実現を課題とする。 - 特許庁
If any person exploits an invention commercially without permission after the files of the application have been made available to the public, and the application results in a patent, the provisions concerning patent infringement, with the exception of section 57, shall apply mutatis mutandis. 例文帳に追加
出願のファイルが公衆の利用に供された後に,ある者がその発明について許可を得ないで業として実施しており,かつ,その出願が特許となった場合は,特許侵害に関する規定を,第57条を除き準用する。 - 特許庁
(3) As far as proceedings before the Office pursuant to this Act are concerned, the Act on Administrative Proceedings with the exception of provisions of Section 19, Section 23, Sections 28 to 32, Section 39, Section 49, Section 50, Section 59(1) and Section 60 shall apply mutatis mutandis.例文帳に追加
(3) 本法に基づいてされる庁における手続には,行政手続法が適用される。ただし,同法第19条,第23条,第28条から第32条,第39条,第49条,第50条,第59条(1)及び第60条の規定を除く。 - 特許庁
(2) Contentious administrative appeals may only concern the omission of essential steps during the procedure or other questions decided upon by the Administration during the grant procedure, with the exception of the question of unity of invention.例文帳に追加
(2) 係争に関する行政上の提訴は,発明の単一性の問題を除き,手続中の重要な段階が欠落している場合か又は特許付与手続中に行政庁が決定すべきその他の問題にのみ適用される。 - 特許庁
(c) The scale of the drawings and the distinctness of their graphical execution shall be such that a photographic reproduction with a linear reduction in size to two-thirds would enable all details to be distinguished without difficulty. If, as an exception, the scale is given on a drawing, it shall be represented graphically.例文帳に追加
(c) 図面の縮尺及びその図的明確さは,直線的縮尺で2/3にしても総ての詳細が難なく識別できること。例外として,その縮尺が図面上に指示される場合は,図的に明確に表示する。 - 特許庁
methods of treating the human or animal body by means of surgery or medical treatment and diagnostic methods that are applied to the human or animal body, with the exception of products, in particular substances or compositions, for the application of such methods.例文帳に追加
人又は動物の体に適用する手術又は医学的治療及び診断方法により,人又は動物の体を処置する方法。ただし,当該方法に利用するための製品,特に物質又は組成物はその例外とする。 - 特許庁
The enumeration method for nucleotide sequences set forth above remains applicable to nucleotide sequences that are circular in configuration, with the exception that the designation of the first nucleotide of the sequence may be made at the option of the applicant. 例文帳に追加
前記に定めるヌクレオチド配列の計数方法は,環状配列のヌクレオチドに対しても適用される。ただし,例外として,当該配列の最初のヌクレオチドの指定については,出願人が任意選択でこれを行うことができる。 - 特許庁
The enumeration method for amino acid sequences set forth above remains applicable for amino acid sequences that are circular in configuration, with the exception that the designation of the first amino acid of the sequence may be made at the option of the applicant. 例文帳に追加
前記アミノ酸配列の計数方法は,環状配列であるアミノ酸配列にも適用される。ただし,例外として,当該配列の最初のアミノ酸の指定については,出願人が任意選択でこれを行うことができる。 - 特許庁
The present Law shall enter into force upon its publication in the Official Journal of the Government, with the exception of the provisions of Parts Two, Three and Four as well as of Article 25 paragraphs 1 and 2 of this Law, which shall enter into force as from 1 January 1988. 例文帳に追加
本法は,官報におけるその公告と同時に効力を生じるものとする。ただし,例外として,第2部,第3部及び第4部の規定並びに第25条(1)及び(2)については1988年1月1日より効力を生じる。 - 特許庁
"Casings" means watch and clock casings and all casings being integral parts of instruments of which they protect the mechanism, with the exception of cases specially designed for their contents (Cl. 03-01) or for packaging (Cl. 09-03). 例文帳に追加
「ケーシング」とは,腕時計及び掛け時計用外枠並びに器械の不可欠部品であってその仕組みを保護する全ての外枠を意味する。ただし,それらの内容物(クラス03-01)及び包装(クラス09-03)のため特別にデザインされたケースを除く。 - 特許庁
The Controller may refuse to recognise as agent or other representative for the purposes of applying for European patents any person who does not satisfy the conditions mentioned in subsection (1) and does not fall within the exception in subsection (2). 例文帳に追加
長官は,(1)にいう条件を充足せず,かつ,(2)の例外の範囲内に該当しない如何なる者も,欧州特許出願の目的では代理人又はその他の代表者として承認することを拒絶することができる。 - 特許庁
The trademark shall be entered into the State Register of Trademarks simultaneously with its publication in the official gazette of the Patent Office, with the exception of specific cases when there is due cause for a substantial delay of trademark publication.例文帳に追加
商標は,特許庁の公報における公告と同時に商標国家登録簿に記入されるものとするが,商標の公告を大幅に遅延させる正当な理由がある特別な場合においては,この限りでない。 - 特許庁
On the other hand, in exception handling corresponding to the break interruption request, the variable (i) is updated to a value added by 1 (S310), a function address to be executed (i+1)-th is read from address i-th in the table, and set to the UBC (S350).例文帳に追加
一方、ブレーク割込要求に対応する例外処理では、変数iを1加算した値に更新し(S310)、実行順が第(i+1)番目の関数アドレスを、テーブルの第i番地から読み出してUBCに設定する(S350)。 - 特許庁
When an instruction processing program is started after interrupting the execution of a program, a context is retracted and whether a state for detecting an operational exception generated in the execution of the specific purpose operation instruction is set up or not is checked.例文帳に追加
プログラムの実行中断後、割り込み処理プログラムが開始されると、コンテキストを退避した後、特定用途演算命令の実行中に発生する演算例外の検出をおこなう状態に設定されているか否かを確認する。 - 特許庁
Article 2 (1) For the purpose of this Act, the term "agricultural and forestry product" shall mean the product which fall under any of the following items, with the exception of liquors and drugs, quasi-drugs and cosmetics as provided in the Pharmaceutical Affairs Act (Act No. 145 of 1960): 例文帳に追加
第二条 この法律で「農林物資」とは、次の各号に掲げる物資をいう。ただし、酒類並びに薬事法(昭和三十五年法律第百四十五号)に規定する医薬品、医薬部外品及び化粧品を除く。 - 日本法令外国語訳データベースシステム
Article 61-15 When any designated information processing organization is requested by the Minister of MEXT to conduct information processing work, it shall, without delay, conduct the information processing work, with the exception of cases where there are justifiable grounds. 例文帳に追加
第六十一条の十五 指定情報処理機関は、文部科学大臣から情報処理業務を行うべきことを求められたときは、正当な理由がある場合を除き、遅滞なく、情報処理業務を行わなければならない。 - 日本法令外国語訳データベースシステム
All other aspects of the shell execution environment are identical between a function and its caller with the exception that the DEBUG trap (see the description of the trap builtin under SHELL BUILTIN COMMANDS below) is not inherited unless the function has been given the trace attribute (see the description of the declare builtin below). 例文帳に追加
シェル実行環境の状態は全て、関数とその呼び出し側で同じになりますが、例外としてDEBUGトラップ (後述のシェルの組み込みコマンドの項で、組み込みコマンドtrapの説明を参照) は継承されません。 - JM
If you use the search and then click New Customer, an exception appears because the code to select the new row is determined according to number of records in the database table, not according to the number of records currently displayed in the table.例文帳に追加
検索を使用してから「New Customer」をクリックすると、例外が発生します。 これは、新しい行を選択するコードが、データベース表に現在表示されているレコードの数ではなく、データベース表内のレコードの数によって判断されるためです。 - NetBeans
Note. At the time of writing, the Hibernate JPA persistence provider has some known issues that can cause problems in web applications such as JavaServer Faces applications.While not specific to NetBeans, these issues can be worked around by choosingeager as the association fetch value and java.util.Set as the collection type in the Mapping Options pane.If you use the Hibernate JPA persistence provider and choose default or lazy as the association fetch value in the Mapping Options pane,an org.hibernate.LazyInitializationException exception can occur at runtime.If you choose an association fetch value of eager and you do not also choose java.util.Set as the collection type,an org.hibernate.HibernateException can occur (with the message"cannot simultaneously fetch multiple bags") at runtime.These issues pertain to the Hibernate JPA persistence provider and not to the defaultpersistence provider.例文帳に追加
「完了」をクリックすると、選択した各表のエンティティークラスが作成され、「構成ファイル」ノードの下に persistence.xml が作成されます。 - NetBeans
| Copyright © Japan Patent office. All Rights Reserved. |
| Copyright Ministry of Economy, Trade and Industry. All Rights Reserved. |
| Copyright © Japan Patent office. All Rights Reserved. |
| ※この記事は「日本法令外国語訳データベースシステム」の2010年9月現在の情報を転載しております。 |
| 本サービスで使用している「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. |
| 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. |
| © 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会員(無料)になると
|
