1016万例文収録!

「"数オブジェクト"」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > "数オブジェクト"に関連した英語例文

セーフサーチ:オン

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

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

セーフサーチについて

"数オブジェクト"を含む例文一覧と使い方

該当件数 : 51



例文

は、関数オブジェクトになります。例文帳に追加

yields a function object.  - Python

数オブジェクトによるファクトリデザイン。例文帳に追加

Multi-object factory design.  - PEAR

組み込み関数オブジェクトは C 関へのラッパです。例文帳に追加

A built-in function object is a wrapper around a C function.  - Python

通常の C の int を Python の整数オブジェクトに変換します。例文帳に追加

Convert a plain C int to a Python integer object.  - Python

例文

C の long int を Python の整数オブジェクトに変換します。例文帳に追加

Convert a C long int to a Python integer object.  - Python


例文

新しい関数オブジェクトをスタックにプッシュします。例文帳に追加

Pushes a new function object on the stack.  - Python

arg は C 関数オブジェクトです。例文帳に追加

This may be an extension function or a builtin. arg is the C function object. - Python

meth に関連付けられている関数オブジェクトを返します。例文帳に追加

Return the function object associated with the method meth.  - Python

数オブジェクトは関定義によって生成されます。例文帳に追加

Function objects are created by function definitions.  - Python

例文

データを含むための変数オブジェクトが提供される。例文帳に追加

A variable object for containing data is provided. - 特許庁

例文

数オブジェクト配置装置および記録媒体例文帳に追加

MULTIPLE-OBJECT ARRANGEMENT DEVICE AND RECORDING MEDIUM - 特許庁

スタック上のパラメータの下には、呼び出す関数オブジェクトがあります。例文帳に追加

Below the parameters, the function object to call is on the stack. - Python

定義は、ユーザ定義関数オブジェクトを定義します (3.2 節参照):例文帳に追加

A function definition defines a user-defined function object (seesection3.2):  - Python

short int 、 unsigned int 、 unsignedlong long 、および boolean 型は、全て Python 整数オブジェクトに対応付けられます。例文帳に追加

The types short int, unsigned int, unsignedlong long, and boolean all map to Python integer objects. - Python

数オブジェクトに対する唯一の操作は、それを呼び出すことです:例文帳に追加

The onlyoperation on a function object is to call it:  - Python

センサ共有による複数オブジェクト源の管理及び選択例文帳に追加

MANAGEMENT AND SELECTION OF A PLURALITY OF OBJECT SOURCES BY SHARING SENSOR - 特許庁

ユーザ定義関数オブジェクトは、関定義を行うことで生成されます(7.5 節、``関定義'' 参照)。例文帳に追加

A user-defined function object is created by a function definition(see section7.5, ``Function definitions'').  - Python

数オブジェクトはTOSの下にあるargcデフォルトパラメータをもつように定義されます。例文帳に追加

The function object is defined to have argcdefault parameters, which are found below TOS.  - Python

デコレータの返す値は関数オブジェクトではなく、関名にバインドされます。例文帳に追加

The result must be a callable,which is invoked with the function object as the only argument.The returned value is bound to the function name instead of the function object. - Python

func(argument-list).関数オブジェクトには実際には 2 つの種: 組み込み関とユーザ定義関があります。例文帳に追加

func(argument-list).There are really two flavors of function objects: built-in functions and user-defined functions. - Python

メソッド属性を設定するためには、その背後の関数オブジェクトで明示的に:例文帳に追加

In order to set a method attribute,you need to explicitly set it on the underlying function object:  - Python

第二引は、引がない場合には NULL、単一の引の場合にはその引数オブジェクト、複個の引の場合には引数オブジェクトからなるタプルです。例文帳に追加

The second argument is NULL if no arguments are given, a single object if exactly one argument is given, and a tuple of objects if more than one argument is given. - Python

数オブジェクトはまた、任意の属性を設定したり取得したりできます。 この機能は、例えば関にメタデータを付与したい場合などに使えます。例文帳に追加

Function objects also support getting and setting arbitraryattributes, which can be used, for example, to attach metadata to functions. - Python

数オブジェクトと違い、コードオブジェクトは変更不可能で、変更可能なオブジェクトへの参照を(直接、間接に関わらず) 含みません。例文帳に追加

Unlike function objects, code objects are immutable and contain no references (directly or indirectly) to mutable objects. - Python

静的メソッドは、上で説明したような関数オブジェクトからメソッドオブジェクトへの変換を阻止するための方法を提供します。例文帳に追加

Static method objects provide a way of defeating the transformation of function objects to method objects described above. - Python

まず、C のコードに対してコールバックを登録しようとする Python プログラムは、何らかの方法でPython の関数オブジェクトを渡さねばなりません。例文帳に追加

First, the Python program must somehow pass you the Python function object. - Python

オブジェクトがユーザからの応答を必要とするときには、コールバック関は2つの引オブジェクトとコールバックの引とともに呼び出されます。例文帳に追加

When the object needs interaction, the callback function will be called with two arguments: the object, and the callback argument. - Python

切り離される以前にそのハンドルを保持していた整 (または 64 ビット Windows の場合には長整) オブジェクトが返されます。例文帳に追加

Detaches the Windows handle from the handle object. The result is an integer (or long on 64 bit Windows) that holds the value of the handle before it is detached. - Python

従って、例えば整数オブジェクトが直接到達可能であっても、このオブジェクトは戻り値には含まれません。例文帳に追加

So,for example, if an integer is directly reachable from an argument, that integer object may or may not appear in the result list. - Python

数オブジェクトを第1の演算子オブジェクトの入力の1つ又は結果の1つに関連付けるためのユーザからの入力が受け取られる。例文帳に追加

An input from a user to relate the variable object to one of inputs or one of the results of the first operator object is received. - 特許庁

第1の変数オブジェクトのグラフィカルな表現及びその演算子オブジェクトに対する関係が表示される。例文帳に追加

A graphical representation of the first variable object and its relation to the operator object is displayed. - 特許庁

Webブラウザ上での複数オブジェクトの一括複製機能を可能とするWebアプリケーションにおける複製システム等を提供する。例文帳に追加

To provide a reproduction system and the like in a Web application allowing a collective reproduction function for a plurality of objects on a Web browser. - 特許庁

つまり、複数オブジェクトそれぞれのシミュレーション解析における重要度として熱流束を、属性情報を用いて算出する(S13)。例文帳に追加

Namely, a heat flux is calculated as importance in the respective simulation analyses of the plurality of objects by using the attributes information (S13). - 特許庁

ファジィ推論処理オブジェクトは、メンバシップ関数オブジェクト16,判定ルールオブジェクト17を適宜読み出して判定処理を行なう。例文帳に追加

The fuzzy inference processing object appropriately reads a membership function object 16 and a determination rule object 17 and processes determination. - 特許庁

ival の値を使って新たな整数オブジェクトを生成します。 現在の実装では、-1 から 100 までの全ての整に対する整数オブジェクトの配列を保持するようにしており、この範囲のを生成すると、実際には既存のオブジェクトに対する参照が返るようになっています。例文帳に追加

Creates a new integer object with a value of ival.The current implementation keeps an array of integer objects for all integers between -1 and 100, when you create an int in that range you actually just get back a reference to the existing object. - Python

コードオブジェクトは バイトコンパイルされた (byte-compiled)実行可能な Python コード、別名 バイトコード (bytecode) を表現します。 コードオブジェクトと関数オブジェクトの違いは、関数オブジェクトが関のグローバル変 (関を定義しているモジュールのグローバル) に対して明示的な参照を持っているのに対し、コードオブジェクトにはコンテキストがないということです; また、関数オブジェクトではデフォルト引値を記憶できますが、コードオブジェクトではできません(実行時に計算される値を表現するため)。例文帳に追加

Code objects represent byte-compiled executable Python code, or bytecode.The difference between a code object and a function object is that the function object contains an explicit reference to the function's globals (the module in which it was defined), while a code object contains no context; also the default argument values are stored in the function object,not in the code object (because they represent values calculated atrun-time). - Python

GUI はふたつの部分で構成されています。 左側のツリーでは変/オブジェクト/配列 などを表示し、右側のリストにキー/値のペアを表示します。例文帳に追加

The GUI consists of two parts: a tree on the left side, displaying the values/objects/arrays that have subkeys/subvalues, and a list with scalar key-value pairs on the right side.  - PEAR

Python の複素数オブジェクトは、 C API 側から見ると二つの別個の型として実装されています: 一方は Python プログラムに対して公開されている Python のオブジェクトで、他方は実際の複素値を表現する C の構造体です。例文帳に追加

Python's complex number objects are implemented as two distinct types when viewed from the C API: one is the Python object exposed to Python programs, and the other is a C structure which represents the actual complex number value. - Python

定義を実行すると、現在のローカルな名前空間内で関名を関数オブジェクト (関の実行可能コードをくるむラッパ) に束縛します。例文帳に追加

Its execution binds the function name in the current local namespace to a function object(a wrapper around the executable code for the function). - Python

この関数オブジェクトには、関が呼び出された際に使われるグローバルな名前空間として、現在のグローバルな名前空間への参照が入っています。例文帳に追加

Thisfunction object contains a reference to the current global namespace as the global namespace to be used when the function is called. - Python

例えば、整数オブジェクトは文字列やタプル、辞書とは違ったやり方でヒープ内で管理されます。 というのも、整には値を記憶する上で特別な要件があり、速度/容量のトレードオフが存在するからです。例文帳に追加

For example, integer objects are managed differently within the heap than strings, tuples or dictionaries because integers imply different storage requirements and speed/space tradeoffs. - Python

この場合、self は非バインドメソッドのクラス(サブクラス) のインスタンスでなければならず、そうでなければTypeError が送出されます。 関数オブジェクトと同じく、メソッドオブジェクトは任意の属性を取得できます。例文帳に追加

In this case,self must be an instance of the unbound method's class (or a subclass of that class), otherwise a TypeError is raised.Like function objects, methods objects support gettingarbitrary attributes. - Python

さらに、グラフィカルWebクライアントプロセッサ77は、ピクチャ構成定義ファイルに基づいて、タグ変数オブジェクトの上記プロパティに応じた図形要素を、ブラウザ62の画面上に表示する。例文帳に追加

Moreover, a graphical Web client processor 77 displays the graphical elements corresponding to the property of the tag variable object on the screen of a browser 62, based on the picture constitution definition file. - 特許庁

端末装置6aのプリプロセッサ74は、システム変定義ファイルに基づいて、ローカル制御システムのデバイスに対応するタグ変数オブジェクトを作成する。例文帳に追加

A preprocessor 74 of the terminal device 6a generates a tag variable object corresponding to the device of a local control system, based on a system variable definition file. - 特許庁

IRD200は、モニタ210への画像表示のために、DSC100の情報記憶媒体より、オブジェクトの総オブジェクトIDの一覧、各オブジェクトの属性等の情報を取得する必要がある。例文帳に追加

It is necessary for an IRD 200 to acquire information such as total number of objects, list of object ID and attributes of respective objects from the information storage medium of the DSC 100 for image display on a monitor 210. - 特許庁

所定規格のフォーマットを用いてデジタルストリーム信号を記録する情報記録媒体のデータ領域にはデータが複数オブジェクトに分かれて記録され、その管理領域には所定の管理情報(ESTR_FI_FN;HR_SFInn.IFO)が記録される。例文帳に追加

A data area of an information recording medium that records a digital stream signal, by using a format of the predetermined standard separately records the data as a plurality of objects, and predetermined management information (ESTR_FI_FN;HR_SFInn.IFO) are recorded in its management area. - 特許庁

検知情報は、検知部の検知状態を示す情報(検知ステータス)と、検知部で検知された動体または不動体に関する情報(オブジェクトオブジェクト情報)とを持つ。例文帳に追加

The detection information includes information (detection status) showing the detection state of the detection part and information (number of object, object information) about the mobile object or the immobile object detected by the detection part. - 特許庁

コードオブジェクトは、関本体のような ``擬似コンパイルされた''Python の実行可能コードを表すために実装系によって使われます。 コードオブジェクトはグローバルな実行環境への参照を持たない点で関数オブジェクトとは異なります。例文帳に追加

Code objects are used by the implementation to represent``pseudo-compiled'' executable Python code such as a function body.They differ from function objects because they don't contain a reference to their global execution environment. - Python

さらに、リアルタイムデータ収集部75は、OPCクライアント61へ指示して、上記システム変定義ファイルで定義されたOPCサーバからデバイスの状態を取得させ、タグ変数オブジェクトの現在値を示すプロパティに設定する。例文帳に追加

Moreover, a real time data collecting part 75 instructs an OPC client 61 to acquire the state of the device from an OPC server defined by the system variable definition file, and sets it in property indicating the present value of the tag variable object. - 特許庁

例文

電化製品を構成する複部品のそれぞれに対応した複数オブジェクトを含むモデルを対象にして、各オブジェクトの座標情報を含む複種類の属性情報を用いて電化製品の特性をシミュレーション解析する際に適用される直交直線格子のメッシュを以下の手順で処理する。例文帳に追加

The mesh of an orthogonal-line lattice applied at the time when the characteristics of an electrical appliance are subjected to a simulation analysis by using a plurality of kinds of attributes information including the coordinates information of a plurality of objects by using a model including the respective objects corresponding respectively to a plurality of parts constituting the electrical appliance, is processed in the following procedures. - 特許庁

索引トップ用語の索引



  
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 © 2001 - 2008 by the PEAR Documentation Group.
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ).
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2024 GRAS Group, Inc.RSS