| 例文 |
byte objectの部分一致の例文一覧と使い方
該当件数 : 35件
``Pickling'' is the process whereby a Python objecthierarchy is converted into a byte stream, and ``unpickling'' is the inverse operation, whereby a byte stream is converted back into an object hierarchy.例文帳に追加
``Pickle 化 (Pickling)'' は Python のオブジェクト階層をバイトストリームに変換する過程を指します。 - Python
This byte identifies the version of the ABI to which the object is targeted. 例文帳に追加
このバイトはオブジェクトがターゲットとしている ABI のバージョンを示す。 - JM
This byte identifies the operating system and ABI to which the object is targeted. 例文帳に追加
このバイトはオブジェクトのターゲットとなるオペレーティングシステムと ABI を示す。 - JM
The stub generator cannot properly generate methods returning an object of type: byte[] (if char is supported by WS-IBP 1.0).例文帳に追加
スタブジェネレータが byte[] 型のオブジェクトで返されるメソッドを正しく生成できない (WS-I BP 1.0 で char がサポートされている場合)。 - NetBeans
METHOD AND DEVICE FOR PROPER DISTRIBUTION OF BYTE CODE AND SERIALIZED OBJECT STREAM例文帳に追加
バイト・コ—ドおよびシリアル化オブジェクト・ストリ—ムの適時配信のための方法および装置 - 特許庁
However, you can bind to a wrapper type such as Boolean, Byte, Character, Double, Float, Integer, Long, Short, String, the primitive form of one of these wrapper types, or an application defined object value. 例文帳に追加
ただし、Boolean、Byte、Character、Double、Float、Integer、Long、Short、String などのラッパー型、これらのラッパー型の基本型、またはアプリケーションで定義されたオブジェクト値にバインドできます。 - NetBeans
The string object exposes the character contents in the buffer interface's byte-orientedform.例文帳に追加
文字列オブジェクトは、その内容をバッファインタフェースのバイト単位形式で公開しています。 - Python
However, you can bind to a wrapper type such as Boolean, Byte, Character, Double, Float, Integer, Long, Short, String, the primitive form of one of these wrapper types, or an application-defined object value. 例文帳に追加
ただし、Boolean、Byte、Character、Double、Float、Integer、Long、Short、String などのラッパー型、これらのいずれかのラッパー型の基本型、またはアプリケーションで定義されたオブジェクト値にバインドできます。 - NetBeans
An object referring mechanism 3 judges a request for referencing the elements of the memory object applied to a byte code executing mechanism 1 by referencing the object reference table 2.例文帳に追加
オブジェクト参照機構3は、オブジェクト参照テーブル2を参照してバイトコード実行機構1に与えられるメモリオブジェクトの要素参照要求を判別する。 - 特許庁
Then, the [byte number counter + 1]-th byte of the processing object character string is acquired (S21), the character kind of one character starting from the acquired one byte is judged (S22 and 23) and the value of the half size character number counter and the value of the byte number counter are updated based on the character kind (S31, 32 and 33).例文帳に追加
次に、処理対象文字列の〔バイト数カウンタ+1〕バイト目の1バイトを取得し(S21)、取得された1バイトから始まる1文字の文字種別を判断し(S22,23)、該文字種別に基づいて、半角文字数カウンタの値とバイト数カウンタの値とを更新する(S31,32,33)。 - 特許庁
Load and initialize a module implemented as a byte-compiled code file and return its module object.例文帳に追加
バイトコンパイルされたコードファイルとして実装されているモジュールをロードして初期化し、そのモジュールオブジェクトを返します。 - Python
Upon accessing the structured data 211 such as a Simple Object Access Protocol (SOAP) envelope, the byte stream 213 is generated.例文帳に追加
簡易オブジェクトアクセスプロトコル(SOAP)エンベロープなどの構造化データ211にアクセスすると、バイトストリーム213が生成される。 - 特許庁
In creating an object 102, an object creation function 101 arranges the internal state of the object into a byte sequence in a region 104 for transfer, and sets mapping data in a mapping management table 103.例文帳に追加
オブジェクト生成機能101は,オブジェクト102を生成する際に,その内部状態を転送用領域104のバイト列上に配置し,マッピング情報をマッピング管理テーブル103に設定する。 - 特許庁
Then, whether or not the value of the byte number counter is equal to or more than the number of the bytes of the entire processing object character string is judged (S41).例文帳に追加
そして、バイト数カウンタの値が処理対象文字列全体のバイト数以上であるか否かを判断する(S41)。 - 特許庁
To obfuscate software by concurrently encoding a plurality of parameters having different byte lengths in the software described in an object oriented language.例文帳に追加
オブジェクト指向言語で記述されたソフトウェアにおいて、バイト長の異なる複数の変数を同時に符号化してソフトウェアを難読化する。 - 特許庁
A half size character number counter and a byte number counter are initialized to 0 (S11) and the number of the bytes of the entire processing object character string is acquired (S12).例文帳に追加
半角文字数カウンタとバイト数カウンタとを0に初期化し(S11)、処理対象文字列全体のバイト数を取得する(S12)。 - 特許庁
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).例文帳に追加
コードオブジェクトは バイトコンパイルされた (byte-compiled)実行可能な Python コード、別名 バイトコード (bytecode) を表現します。 コードオブジェクトと関数オブジェクトの違いは、関数オブジェクトが関数のグローバル変数 (関数を定義しているモジュールのグローバル) に対して明示的な参照を持っているのに対し、コードオブジェクトにはコンテキストがないということです; また、関数オブジェクトではデフォルト引数値を記憶できますが、コードオブジェクトではできません(実行時に計算される値を表現するため)。 - Python
An initial access mechanism is forced to cause misarray memory access trouble (trap) by trying non- byte access mode memory access to an odd-numbered byte address, then the initial active use of the data structure or OOP object is detected.例文帳に追加
初期アクセス機構が、非バイトアクセスモードメモリアクセスを奇数バイトアドレスに試みることにより、誤配列メモリアクセス不具合(トラップ)を起こすよう強制されているので、データ構造体又はOOPオブジェクトの最初のアクティブユーズが検出される。 - 特許庁
To provide a virtual machine, which can be applied even to equipment provided with a low-speed processor and a little memory, and a byte code program generator with that virtual machine as an object.例文帳に追加
低速のプロセッサと少量のメモリを装置した機器にも適用できる仮想マシン及び当該仮想マシンを対象とするバイトコードプログラム生成装置を提供する。 - 特許庁
The traffic matrix generating apparatus 10 is connected to a measurement object communication apparatus 20 provided with a transfer byte counter for recording the number of transfer bytes of packets transmitted/received via an interface.例文帳に追加
トラフィック行列生成装置10は、インタフェースを介して送受信したパケットの転送バイト数を記録する転送バイトカウンタを備えた測定対象通信装置20と接続している。 - 特許庁
This de-referencing of the cell object requires support from the generated byte-code; these are not automatically de-referencedwhen accessed.例文帳に追加
このセルオブジェクトを使った間接参照 (dereference) は、インタプリタによって生成されたバイトコード内でサポートされている必要があります; セルオブジェクトにアクセスした際に、自動的に間接参照は起こりません。 - Python
(Frozen modules are modules written in Python whose compiled byte-code object is incorporated into a custom-built Python interpreter by Python's freeze utility.See Tools/freeze/ for now.)例文帳に追加
(フリーズされたモジュールはPythonで書かれたモジュールで、そのコンパイルされたバイトコードオブジェクトがPythonのfreezeユーティリティを使ってカスタムビルトPythonインタープリタへ組み込まれています。 差し当たり、Tools/freeze/を参照してください。 - Python
The file argument is the byte-compiled code file, open for reading in binary mode, from the beginning.It must currently be a real file object, not a user-defined class emulating a file.例文帳に追加
file引数はバイトコンパイルされたコードファイルで、バイナリモードでオープンされ、先頭からアクセスされます。 現在は、ユーザ定義のファイルをエミュレートするクラスではなく、実際のファイルオブジェクトでなければなりません。 - Python
An area management part 11 divides a memory 2 into a cache area and a uncacheable area, sets a control object data size targeted by the ECC data as one byte or the like correspondingly to the partial access for the uncacheable area, and sets ECC data for data of the control object data size.例文帳に追加
領域管理部11は、メモリ2をキャッシュ領域とキャッシュ不可領域に分け、キャッシュ不可領域はECCデータが対象とする制御対象データサイズをパーシャルアクセスに対応させて1バイト等とし、制御対象データサイズ分のデータに対してECCデータを設ける。 - 特許庁
The reception side server 8 confirms that the completion file exists in the transferred files, and then fetches the data file, the byte file and the date file into a predetermined storage area as processing object files.例文帳に追加
受信側サーバ8においては、転送されたファイルの中に終了ファイルが存在することを確認した後、データファイル、バイトファイル及び日付ファイルを処理対象のファイルとして所定の記憶領域に取り込む。 - 特許庁
A transfer function 105 transfers the byte sequence of the transferring region 104 and the control table 103 to a receiving device 20, and the receiving device 20 restores the object 204 based on information received by a restoration function 201.例文帳に追加
転送機能105は,転送用領域104のバイト列とマッピング管理テーブル103とを受信装置20に転送し,受信装置20では,復元機能201が受信した情報をもとにオブジェクト204を復元する。 - 特許庁
A transfer function 105 transfers the byte sequence in the region 104 for transfer and the mapping management table 103 to a receiver 20, and a reproduction function 201 reproduces the object 204 based on the received data in the receiver 20.例文帳に追加
転送機能105は,転送用領域104のバイト列とマッピング管理テーブル103とを受信装置20に転送し,受信装置20では,復元機能201が受信した情報をもとにオブジェクト204を復元する。 - 特許庁
In ECUs 10, 12 to which object data should be transmitted, a sum value to be obtained by adding pieces of data about the respective fields as an ID field, a DLC (data link control) field and a DATA field are added to the data to be transmitted by unit of byte.例文帳に追加
対象データを送信すべきECU10,12において、送信すべきデータに、そのIDフィールド、DLCフィールド、及びDATAフィールドの各フィールドのデータを1バイト単位で加算することにより得られるサム値を付加する。 - 特許庁
A processing unit 2 always communicates with programmable controllers n, n+1, etc., and device information from the programmable controllers n, n+1, etc., is recorded successively in unit of byte at a location corresponding to each device number in an object image 8.例文帳に追加
演算処理装置2は、常時、プログラマブルコントローラn,n+1…との間で通信を行い、プログラマブルコントローラn,n+1…からのデバイス情報は、オブジェクトイメージ8の、各デバイス番号に対応付けられた位置にバイト単位で逐次記録されていく。 - 特許庁
A preprocessing means 152 of an encryption means 150 of a server 100 performs preprocessing for converting object data into a byte progression, and a key generating means 154 generates a key consisting of information showing the contents of the preprocessing carried out by the processing means 152.例文帳に追加
サーバ100の暗号化手段150の前処理手段152は、対象データをバイト数列に変換する前処理を行い、鍵生成手段154は、前処理手段152による前処理の内容を示す情報からなる鍵を生成する。 - 特許庁
A client 1 writes server delivery data on a shared disk 2 and transmits a dummy file 11 including actual data of one byte and an alternative transfer parameter 12 including the request object job name and the dummy file name to an addressee 3.例文帳に追加
ジョブ実行用ファイルの送信を伴わない実行依頼に対し、依頼元1は、サーバ渡しデータを共有ディスク2に書き込み、かつ、1バイトの実データからなるダミーファイル11と、依頼対象ジョブ名やダミーファイル名からなる代替転送パラメータ12とを、依頼先3に送信する。 - 特許庁
A logic operation model A102 recognizes a test data storing 101 of a byte format, prepared on the basis of test items by a parameter 103 defining an input output file name, fetches the test data string 101 in a data transmission part 104, converts the fetched test data string into waveform data and gives the wave form to object logic 105 to be verified as a signal value.例文帳に追加
論理動作モデルA102は、試験項目に基づいて作成したバイト形式のテストデータ列101を、入出力ファイル名称を定義したパラメータ103により認識してデータ送信部104に取り込み、取り込んだテストデータ列を波形データに変換し、被検証対象論理105に信号値として与える。 - 特許庁
A flow from the start to the end of communication between transmitting and receiving terminals is extracted as an object to be measured from packet header information and communication quality of a network including information regarding packet loss, halfway in the network, is estimated based on header information having a sequence number (byte or number) of a packet from time-series information of packet arrival at a reception-side device.例文帳に追加
本発明は、パケットヘッダ情報から測定対象となる、送受信端末間での通信の開始から終了までのフローを抽出し、パケットのシーケンス番号(単位はバイトあるいは番号)を有するヘッダ情報をもとに、受信側装置へのパケット到着の時系列的な情報から、ネットワーク途中でのパケット損失に関する情報を含むネットワークの通信品質を推定する。 - 特許庁
In a data processor 1, a transmission data detecting part 10 detects the position where transmission object data in parallel data exists when STM-64 serial data is converted into parallel data by 16 byte and inputted to the transmission data detecting part 10 and a transmission data extracting part 20 converts transmission data based on the detected position and, then, moves processing data forward in each parallel data block.例文帳に追加
データ処理装置1は、STM−64のシリアルデータが16バイト毎のパラレルデータに変換されて透過データ検出部10に入力されると、透過データ検出部10が、パラレルデータ中の透過処理の対象となる透過データが存在する位置を検出し、透過データ抜き取り部20が、検出された位置に基づいて透過データを変換した後に各パラレルデータブロック内で処理データの前詰めを行う。 - 特許庁
| 例文 |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| © 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. |
| 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. |
| 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会員(無料)になると
|