| 意味 | 例文 |
C APIの部分一致の例文一覧と使い方
該当件数 : 41件
(tutorial for C/C++ programmers) Python/C API 例文帳に追加
(C/C++ プログラマ向けチュートリアル) Python/C API - Python
Python/C API Reference Manual 例文帳に追加
Python/C API リファレンスマニュアル - Python
Introduction Python/C API Reference Manual 例文帳に追加
Python/C API リファレンスマニュアル - Python
About this document ... Python/C API Reference Manual 例文帳に追加
Python/C API リファレンスマニュアル - Python
The API is equally usable from C++, but for brevity it is generally referred to as the Python/C API.例文帳に追加
この API は通常C++ からも全く同じように利用できるのですが、簡潔な呼び名にするために Python/C API と名づけられています。 - Python
There are two fundamentally different reasons for using the Python/C API.例文帳に追加
根本的に異なる二つの目的から、 Python/C API が用いられます。 - Python
For host and port, by passing either an empty string or None, you can pass NULL to the C API.例文帳に追加
hostとport に空文字列かNone を指定すると C APIにNULLを渡せます。 - Python
Note that the PyTypeObject for None is not directlyexposed in the Python/C API. 例文帳に追加
None に対する PyTypeObject は、 Python/C API では直接公開されていないので注意してください。 - Python
There is a C API to the module as well; refer to the module source for more information. 例文帳に追加
このモジュールには C API もあります。 詳しくはこのモジュールのソースを参照してください。 - Python
Finally,the module's initialization function must take care of initializing the C API pointer array:例文帳に追加
最後に、モジュールの初期化関数は C API のポインタ配列を初期化するよう手配しなければなりません: - Python
This manual documents the API used by C and C++ programmers who want to write extension modules or embed Python. It is a companion to例文帳に追加
このマニュアルでは、拡張モジュールを書いたり Python インタプリタをアプリケーションに埋め込んだりしたい C および C++ プログラマが利用できる API について述べています。 - Python
All functions in the Python/C API can raise exceptions, unless an explicit claim is made otherwise in a function's documentation. 例文帳に追加
Python/C API の全ての関数は、関数のドキュメントで明確に説明がない限り例外を発行する可能性があります。 - Python
CObjects can only be created and accessed via their C API, but they can be passed around like any other Python object.例文帳に追加
CObject は C API を介してのみ生成したりアクセスしたりできますが、他の Python オブジェクトと同じように受け渡しできます。 - Python
It stores all C API pointers(just one in the example!) in an array of void pointers which becomes the value of a CObject.例文帳に追加
このアプローチでは、全ての C API ポインタ (例中では一つだけですが!) を、CObject の値となるvoid ポインタの配列に保存します。 - Python
Refer to Extending and Embedding the Python Interpreter,section1.12, ``Providing a C API for an Extension Module,'' for more information on using these objects.例文帳に追加
このオブジェクトの使用法に関する情報は、Python インタプリタの拡張と埋め込み 1.12 節、``Providing a C API for an Extension Module,'' を参照してください。 - Python
This is a shorthand for "PyErr_SetString(PyExc_TypeError,message)", where message indicates that an internal operation (e.g. a Python/C API function) was invoked with an illegal argument.例文帳に追加
ここでmessageは内部操作(例えば、Python/C API関数)が不正な引数とともに呼び出されたということを示しています。 - Python
The reference count behavior of functions in the Python/C API is best explained in terms of ownership of references. 例文帳に追加
Python/C API の各関数における参照カウントの振る舞いは、説明するには、参照の所有権 (ownership of references) という言葉でうまく説明できます。 - Python
Ensure that the current thread is ready to call the PythonC API regardless of the current state of Python, or of itsthread lock. 例文帳に追加
Pythonの状態やスレッドロックに関わらず、実行中スレッドでPython C APIの呼び出しが可能となるようにします。 - Python
In addition, the following macro sets are provided for calling the Python memory allocator directly, without involving the C API functions listed above.例文帳に追加
上記に加えて、C API 関数を介することなく Python メモリ操作関数を直接呼び出すための以下のマクロセットが提供されています。 - Python
Introduction The Application Programmer's Interface to Python gives C and C++ programmers access to the Python interpreter at a variety of levels.例文帳に追加
Python のアプリケーションプログラマ用インタフェース (Application Programmer's Interface, API) は、Python インタプリタに対する様々なレベルでのアクセス手段をC や C++ のプログラマに提供しています。 - Python
The header file corresponding tothe module provides a macro that takes care of importing the module and retrieving its C API pointers; client modules only have to call this macro before accessing the C API.The exporting module is a modification of the spam module fromsection1.1.例文帳に追加
拡張モジュールに対応するヘッダファイルは、モジュールの import と C API ポインタを取得するよう手配するマクロを提供します;クライアントモジュールは、C API にアクセスする前にこのマクロを呼ぶだけです。 名前を公開する側のモジュールは、1.1 節のspam モジュールを修正したものです。 - Python
Just like the standard Python list type has a C API which permits extension modules to create and manipulate lists, this new collection type should have a set of C functions for direct manipulation from other extension modules.At first sight this seems easy: just write the functions (withoutdeclaring them static, of course), provide an appropriate header file, and document the C API.例文帳に追加
ちょうどリストを生成したり操作したりできる C API を備えた標準のPython リスト型のように、この新たなコレクション型も他の拡張モジュールから直接操作できるようにするには一連の C 関数を持っていなければなりません。 一見するとこれは簡単なこと: 単に関数を (もちろんstatic などとは宣言せずに) 書いて、適切なヘッダファイルを提供し、C APIを書けばよいだけ、に思えます。 - Python
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 の複素数オブジェクトは、 C API 側から見ると二つの別個の型として実装されています: 一方は Python プログラムに対して公開されている Python のオブジェクトで、他方は実際の複素数値を表現する C の構造体です。 - Python
The following APIs are really C macros and can be used to do fastchecks and to access internal read-only data of Unicode objects: 例文帳に追加
以下の API は実際には C マクロで、Unicode オブジェクト内部の読み出し専用データに対するチェックやアクセスを高速に行います: - Python
All function, type and macro definitions needed to use the Python/CAPI are included in your code by the following line: 例文帳に追加
Python/C API を使うために必要な、関数、型およびマクロの全ての定義をインクルードするには、以下の行: - Python
It automatically does all the type casting and reference counting that you would have to do normally with the CAPI.例文帳に追加
普通はC APIを使ってやらなければならない型キャストとリファレンス・カウントをすべて自動的に行います。 - Python
documents the existing object types, functions and modules (both built-in and written in Python) that give the language its wide application range.For a detailed description of the whole Python/C API, see the separate例文帳に追加
では、Python に広い適用範囲をもたらしている既存のオブジェクト型、関数、および (組み込み、および Python で書かれたものの両方の) モジュールについて解説しています。 Python/C API 全体の詳しい説明は、別のドキュメントである、 - Python
If the error is not handled or carefully propagated, additional calls into the Python/C API may not behave as intended and may fail in mysterious ways.The error indicator consists of three Python objects corresponding to例文帳に追加
エラーが処理されていない場合または丁寧に伝えられている場合には、Python/C APIのさらなる呼び出しは意図した通りには動かない可能性があり、不可解な形で失敗するかもしれません。 エラーインジケータは - Python
Suchthreads must bootstrap themselves into existence, by first creating a thread state data structure, then acquiring the lock, and finallystoring their thread state pointer, before they can start using thePython/C API.例文帳に追加
このようなスレッドが Python/C API を利用するには、まずスレッド状態データ構造体を生成し、次にロックを獲得し、そしてスレッド状態ポインタを保存するといったように、自分自身をブートストラップして生成しなければなりません。 - Python
It is often used to make a C function pointer defined in one module available to other modules, so the regular import mechanism can beused to access C APIs defined in dynamically loaded modules.例文帳に追加
正規の import 機構を使って動的にロードされるモジュール内で定義されている C API にアクセスするために、あるモジュール内で定義されている C 関数ポインタを別のモジュールでも利用できるようにするためによく使われます。 - Python
(Like all other Python/C API functions, the global interpreter lock must be held before calling this function and is still held when it returns; however, unlike most other Python/C API functions, there needn't be a current thread state on entry.)Extension modules are shared between (sub-)interpreters as follows:the first time a particular extension is imported, it is initializednormally, and a (shallow) copy of its module's dictionary issquirreled away.例文帳に追加
(他の Python/C API 関数のように、この関数を呼び出す前にはグローバルインタプリタロック(global interpreter lock) が保持されていなければならず、関数が処理を戻した際にも保持されたままになります; しかし、他の Python/C API 関数とは違い、関数から戻ったときの現在のスレッド状態が関数に入るときと同じとは限らないので注意してください)。 拡張モジュールは以下のような形で (サブ) インタプリタ間で共有されます: ある特定の拡張モジュールを最初に import すると、モジュールを通常通りに初期化し、そのモジュールの辞書の(浅い) コピーをしまい込んでおきます。 - Python
Each name could get its own CObject, or all CAPI pointers could be stored in an array whose address is published ina CObject. 例文帳に追加
エクスポートされているそれぞれの名前を使うと、CObject自体や、CObject が公表しているアドレスで示される配列内に収められた全ての C API ポインタを得られます。 - Python
If a monitoring device A wants to obtain state change notification of a monitoring device B and a monitoring device C, the monitoring device A transmits calling requests S11, S13 of state change notification registration API to the monitoring device B and monitoring device C, and receives multi-carrier addresses and port numbers from the monitoring device B and monitoring device C.例文帳に追加
監視装置Aが監視装置B及び監視装置Cの状態変化通知を取得したい場合、監視装置Aが、状態変化通知登録APIの呼出要求S11,S13を監視装置B、監視装置Cに送信し、監視装置B、監視装置Cからマルチキャストアドレス及びポート番号を受信する。 - 特許庁
To provide a high strength steel pipe which has a high strength of X80 to X100 grades specified in American Petroleum Institute (API) Standard and has excellent weld zone toughness even at a very low temperature of -60°C and also to provide its manufacturing method.例文帳に追加
米国石油協会(API)規格でX80〜X100の高強度を有し、−60℃の極低温においても、溶接部の靱性が優れた高強度鋼管及びその製造方法を提供する。 - 特許庁
To provide a steel member and a structure which have strength satisfying API (American Pipe Institute) standards 5L-X65 or higher, and in which critical CTOD (Crack Tip Opening Displacement) at -10°C is ≥0.20 mm in both of a weld metal and a weld line in the weld zone with electron beam welding or laser welding applied.例文帳に追加
API規格5L−X65以上の強度を有し、電子ビーム溶接あるいはレーザー溶接を適用した溶接部の溶接金属と溶融線の両方において、−10℃での限界CTODが0.20mm以上である鋼材及び構造物を提供する。 - 特許庁
| 意味 | 例文 |
| 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. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|