1016万例文収録!

「Interpreter」に関連した英語例文の一覧と使い方(7ページ目) - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > Interpreterの意味・解説 > Interpreterに関連した英語例文

セーフサーチ:オフ

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

Interpreterを含む例文一覧と使い方

該当件数 : 845



例文

(The interpreter will then try the reflected operation, or some otherfallback, depending on the operator.)例文帳に追加

(演算子によっては、インタプリタが関連のある演算を試したり、他の代替操作を行います。 - Python

The return value is a flag indicating whetherinterpretation of commands by the interpreter should stop. 例文帳に追加

戻り値は、インタープリタによるコマンドの解釈実行をやめるかどうかを示すフラグです。 - Python

To change the preferences only for one copy of the Interpreter, drop the icon for that copy ontoEditPythonPrefs.例文帳に追加

インタプリタのどれかひとつの設定だけを変更したければ、インタプリタをEditPythonPrefs の上にドロップします。 - Python

The Python interpreter has a number of functions built into it that are always available.例文帳に追加

Python インタプリタは数多くの組み込み関数を持っていて、いつでも利用することができます。 - Python

例文

If no argument is given, the interactive help system starts on the interpreter console.例文帳に追加

引数が与えられていない場合、対話的ヘルプシステムはインタプリタコンソール上で起動します。 - Python


例文

The result is up to the interpreter; see the例文帳に追加

結果はインタプリタに依存します; 組み込み関数や組み込みメソッドの詳細は、 - Python

o and rebuild the interpreter by running make in the toplevel directory.例文帳に追加

を追加して、トップレベルのディレクトリで make を実行して、インタプリタを再ビルドするだけです。 - Python

The Python API allows this by extending the embedded interpreter.例文帳に追加

Python API を使うと、埋め込みインタプリタを拡張することでアプリケーション本体へのアクセスを可能にします。 - Python

Simply forget for a while that the application starts the Python interpreter.例文帳に追加

さしあたって、アプリケーションが Python インタプリタを起動したということをちょっと忘れてみてください。 - Python

例文

Return true (nonzero) when the Python interpreter has been initialized, false (zero) if not.例文帳に追加

Python インタプリタがすでに初期化済みの場合に真 (非ゼロ) を返し、そうでない場合には偽 (ゼロ) を返します。 - Python

例文

Ideally, this frees all memory allocated by the Python interpreter.例文帳に追加

理想的な状況では、この関数によって Python インタプリタが確保したメモリは全て解放されます。 - Python

No code in the Python interpreter will change the contents of this storage.例文帳に追加

Python インタプリタ内のコードで、この記憶領域の内容を変更するものは一切ありません。 - Python

This is a flag telling the interpreter the calling convention to be used for the Cfunction.例文帳に追加

このエントリは、C 関数が使う呼び出し規約をインタプリタに教えるためのフラグです。 - Python

The new module allows an interface to the interpreter object creation functions.例文帳に追加

newモジュールはインタプリタオブジェクト作成関数へのインターフェイスを与えます。 - Python

If the command was executed using the -c command line option to the interpreter, argv[0] is set to the string '-c'.例文帳に追加

コマンドライン引数に-cを付けてPythonを起動した場合、argv[0]は文字列'-c'となります。 - Python

For example, to test that the Python interpreter is at least version 1.5.2, use:例文帳に追加

例えば、Python 1.5.2以降でのみ動作するプログラムでは、以下のようなチェックを行います。 - Python

This integer value determines how often the interpreter checks for periodic things such as thread switches and signal handlers.例文帳に追加

この値はスレッドスイッチやシグナルハンドラのチェックを行う周期を決定します。 - Python

It exactly mimics the behavior of the Python interpreter when it prints a stack trace.例文帳に追加

モジュールがスタックトレースを表示するとき、Pythonインタープリタの動作を正確に模倣します。 - Python

A dictionary representing the string environment at the time the interpreter was started.例文帳に追加

インタプリタが起動した時点の環境変数文字列を表現する辞書です。 - Python

The above approach is most useful when working with the interpreter.例文帳に追加

この方法はインタプリタ上で作業をしている場合、最も便利なやり方です。 - Python

The modules described in this chapter provide a wide range of servicesrelated to the Python interpreter and its interaction with its environment.例文帳に追加

この章では、PythonインタープリタやPython環境に深く関連する各種の機能を解説します。 - Python

A default value for the path is configured into the Pythonbinary when the interpreter is built. 例文帳に追加

検索パスのデフォルト値は、インタプリタをビルドする際に Python のバイナリ内に設定されます。 - Python

path. site.py is automatically imported when the Python interpreter is executed,unless the -S switch is supplied to suppress this behaviour.例文帳に追加

site.py は、 -S スイッチを与えて抑制しないかぎり、Python インタプリタが実行される際に自動的に import されます。 - Python

Most code manipulating the global interpreter lock has the following simple structure:例文帳に追加

グローバルインタプリタロックを操作数ほとんどのコードは、以下のような単純な構造を持ちます: - Python

interp, which points to this thread's interpreter state. 例文帳に追加

interpだけが公開されていて、スレッドのインタプリタ状態を指すポインタになっています。 - Python

Reset the current thread state to NULL and release the global interpreter lock.例文帳に追加

現在のスレッド状態をリセットして NULL にし、グローバルインタプリタロックを解放します。 - Python

Create a new thread state object belonging to the given interpreter object.例文帳に追加

指定したインタプリタオブジェクトに属する新たなスレッド状態オブジェクトを生成します。 - Python

Wraps are the most efficient way for an application to communicate with the PostScript interpreter.例文帳に追加

ラップはアプリケーションが PostScript インタプリタと通信する上で最も効率的な方法である。 - XFree86

In 1906, he visited the US again accompanied by Daisetsu SUZUKI as an interpreter and lectured on Zen Buddhism to Americans. 例文帳に追加

1906年、再度渡米し、通訳として鈴木大拙を伴い、アメリカ人に対して禅指導を行なった。 - Wikipedia日英京都関連文書対訳コーパス

Moreover, a Nagasaki interpreter who was academically contributing to Western Sciences can be said to be a Dutch scholar. 例文帳に追加

また長崎通詞は、蘭学に対し学問的に貢献した場合には蘭学者であると言える。 - Wikipedia日英京都関連文書対訳コーパス

Then he was in charge of translation as Gaikoku bugyo shihai tsuben goyoyatoi (an interpreter of the magistrate of foreign affairs). 例文帳に追加

そして、外国奉行支配通弁御用雇として、翻訳の仕事に従事することとなった。 - Wikipedia日英京都関連文書対訳コーパス

During the Hakodate War, he was treated as a noncombatant and learned French from an interpreter, Masachika TAJIMA. 例文帳に追加

箱館戦争中も非戦闘員として扱われ、通訳の田島応親よりフランス語を学ぶ。 - Wikipedia日英京都関連文書対訳コーパス

KURATSUKURI no Fukuri (year of birth and death unknown) was an interpreter in the Asuka period. 例文帳に追加

鞍作福利(くらつくりのふくり、生没年不詳)は、飛鳥時代の通事(=通訳)である。 - Wikipedia日英京都関連文書対訳コーパス

While working as interpreter, he learned surgery both from doctors working at the Dutch trading house and from surgery textbooks in Dutch. 例文帳に追加

通詞の仕事のかたわら、商館付の医師やオランダ語訳の外科書から外科医術を学ぶ。 - Wikipedia日英京都関連文書対訳コーパス

He also worked as an interpreter to Qing and took "Rikuyu engi" (interpretation of Rikuyu) back and distributed in Ryukyu. 例文帳に追加

清との通訳としても活動し、『六諭衍義』を持ち帰って琉球に頒布した。 - Wikipedia日英京都関連文書対訳コーパス

The color conversion routine (10) sends the selected color value to the language interpreter (4).例文帳に追加

色変換ルーティン(10)は選択されたカラー値を言語インタプリタ(4)に送る。 - 特許庁

To efficiently execute a byte code by combining an interpreter and a compiler.例文帳に追加

インタープリタとコンパイラを組み合わせてバイトコードの効率的な実行を行う。 - 特許庁

INTERPRETER, CONTROL METHOD THEREFOR, INFORMATION PROCESSOR AND COMPUTER READABLE MEMORY例文帳に追加

インタプリタおよびその制御方法、情報処理装置、コンピュータ可読メモリ - 特許庁

The virtual machine is provided with a loader, an interpreter, and a thread manager.例文帳に追加

バーチャルマシンは、ローダー、インタープリタおよびスレッドマネージャを備えている。 - 特許庁

A hardware initialization program 42A and an interpreter 42B are stored in the ROM 42.例文帳に追加

ROM42にはハードウェア初期化プログラム42Aとインタプリタ42Bが格納されている。 - 特許庁

At the robot, an interpreter interprets and executes the RCODE and performs debugging.例文帳に追加

ロボット側ではRCODEをインタープリタが逐次解釈・実行してデバッグ処理する。 - 特許庁

EXECUTING METHOD OF PROGRAM BY INTERPRETER LANGUAGE AND INFORMATION PROCESSOR USING THE SAME METHOD例文帳に追加

インタプリタ型言語によるプログラムの実行方法およびその方法を用いた情報処理装置 - 特許庁

It is not necessary to provide any middleware layer or interpreter layer for executing the application.例文帳に追加

本方法はアプリケーションを実行するミドルウエア層もインタプリタ層も必要としない。 - 特許庁

Then, the interpreter 106 calls a function Func1 by executing 'objA→Func1 ()' (reference to (2)).例文帳に追加

次に、インタプリタ106は、「objA→Func1()」( 参照)の実行で関数Func1を呼び出す。 - 特許庁

When interpretation is required, the CDMA/GSM portable telephone 1 is connected to the Internet 8 to call an interpreter 6.例文帳に追加

通訳が必要な時にインターネット8に接続し通訳者6を呼び出す。 - 特許庁

To provide a voice command interpreter and a method for interpreting a voice command inputted from a user.例文帳に追加

ユーザから入力された音声命令を解釈する装置及びその方法を提供する。 - 特許庁

A CAD interpreter application is configured to extract the moving path data from the design file.例文帳に追加

CADインタープリタアプリケーションは設計ファイルから移動経路データを抽出する。 - 特許庁

The interpreter so responds to the received executing command as to execute the program stored in the memory.例文帳に追加

インタプリタは、受け取った実行指示に応答して、メモリ内のプログラムを実行する。 - 特許庁

On the basis of interpretation request information from a client acquired by an interpretation request information receiving means 42, an interpreter terminal extracting means 43 extracts the terminal of an interpreter matched to the interpretation request information from an interpreter database containing the terminal information and personal information of interpreters stored in an interpreter database storage means 44.例文帳に追加

通訳者端末抽出手段43は、通訳者データベース格納手段44に格納された通訳者の端末情報および個人情報を含む通訳者データベースから、通訳依頼情報受付手段42により取得された依頼者からの通訳依頼情報に基づいて、前記通訳依頼情報に適合する通訳者の端末を抽出する。 - 特許庁

例文

LSI HAVING INTERPRETER FUNCTION AND INFORMATION RECORDING AND REPRODUCING DEVICE USING THE SAME例文帳に追加

インタプリタ機能を有するLSIおよびそれを用いた情報記録再生装置 - 特許庁

索引トップ用語の索引



  
本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。
  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence
Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence
  
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.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2024 GRAS Group, Inc.RSS