TRACE32 Training... シンボルデータベース 内部シンボルデータベースの構造 シンボルデータベースの一般情報 シンボルブラウザ 選択したシンボルの詳細 ソースファイル内の検索...

Size: px
Start display at page:

Download "TRACE32 Training... シンボルデータベース 内部シンボルデータベースの構造 シンボルデータベースの一般情報 シンボルブラウザ 選択したシンボルの詳細 ソースファイル内の検索..."

Transcription

1 HLL Debugging - トレーニング TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Training... HLL Debugging - トレーニング... 2 アプリケーションプログラムのロード... 3 シンボルデータベース 内部シンボルデータベースの構造 シンボルデータベースの一般情報 シンボルブラウザ 選択したシンボルの詳細 ソースファイル内の検索 変数の表示 [Watch] ウィンドウ [View] ウィンドウ 参照される変数 ローカル変数 スタックフレーム 配列用の特殊な表示 リンクしたリスト 変数ログ 変数のフォーマット [Format] ダイアログボックスを使用した変数のフォーマット コマンドラインを使用した変数のフォーマット 一般的な SETUP 関数のテスト 索引 ( ローカル ) HLL Debugging - トレーニング 1

2 HLL Debugging - トレーニング 2011/8/31 版 08/19/04 アプリケーションプログラムのロード セクションを改定 HLL Debugging - トレーニング 2

3 アプリケーションプログラムのロード Data.LOAD < ファイル名 > [/< オプション >] Data.LOAD.< サブコマンド > < ファイル名 > [/< オプション >] 汎用ロードコマンド コンパイラ固有のロードコマンド コンパイラ固有のロードコマンドは以下の場所にあります : コンパイラ / フォーマット固有のすべてのオプションを使用できるように コンパイラ / フォーマット固有の Data.LOAD コマンドを使用することをお勧めします HLL Debugging - トレーニング 3 アプリケーションプログラムのロード

4 Data.Load コマンドを実行したときに TRACE32 で実行される動作 TRACE32 ですでに使用可能なすべてのシンボルとデバッグ情報が削除される < ファイル > が提供するコード / データがターゲットメモリにロードされる < ファイル > が提供するシンボルおよびデバッグ情報が TRACE32 にロードされる < ファイル > が提供する HLL ソースファイルのパスが TRACE32 にロードされる ロードされた情報から内部シンボルデータベースが生成される HLL Debugging - トレーニング 4 アプリケーションプログラムのロード

5 コード / データを参照するオプション コードやデータを参照するオプションは主に以下のタスクに使用されます : コード / データが正しくロードされたことを検証する 正しいコード / データがすでにターゲットに存在する場合は コード / データのロードを抑制する これは FLASH プログラミング時間を節約する場合などに役立つ Verify ComPare DIFF NOCODE 書き込み後にメモリを検証します そのために メモリブロックに書き込んだ直後にメモリをリードバックします メモリのデータをファイルと比較します メモリは変更されません 1 つ目の差異が検出されると比較が停止します メモリのデータをファイルと比較します メモリは変更されません ファイルとメモリに差異が検出された場合は FOUND() が TRUE を返す ファイルとメモリに差異が検出されない場合は FOUND() が FALSE を返す シンボルとデバッグ情報および HLL ソースパス情報のみをダウンロードします コード / データがすでにメモリに置かれている場合に便利です Data.LOAD.Elf armle.axf /StripPATH /LowerPATH Data.LOAD.AIF armla.axf /StripPATH /LowerPATH Data.LOAD.COFF arm.abs Data.LOAD.COFF arm.abs /DIFF IF FOUND() ( FLASH.Program ALL Data.LOAD.COFF arm.abs FLASH.Program OFF ) ELSE Data.LOAD.COFF arm.abs /NOCODE ; load ELF file for ARM ; load AIF file for ARM ; load COFF file for ARM ; reprogram the FLASH ; only if the code ; changed, otherwise ; load only symbol and ; debug information plus ; hll source path ; information HLL Debugging - トレーニング 5 アプリケーションプログラムのロード

6 シンボルおよびデバッグ情報を参照するオプション シンボルおよびデバッグ情報を参照するオプションは 主にシンボル情報を再配置するために使用します ; relocate all symbols by 2000 symbol.relocate.shift 2000 ; Load the symbol and debug information from the file t_li_elf.axf and ; relocate all symbols of the section t_li_elf.axf to address 2000 symbol.list.section Data.LOAD.Elf thumble.axf /RELOC t_li_elf.axf AT 2000 /NOCODE symbol.relocate.shift < オフセット > Data.LOAD.Elf < ファイル > /RELOC < セクター > AT < アドレス > Data.LOAD.Elf < ファイル > /RELOC < セクター > AFTER < セクター _2> symbol.list.section < オフセット > の値でコードおよびデータシンボルを再配置します 指定したセクターを定義したアドレスに再配置します 指定したセクターを別のセクターの後ろに再配置します < ファイル > が提供するセクション情報をリストします HLL Debugging - トレーニング 6 アプリケーションプログラムのロード

7 すでに使用可能なシンボルおよびデバッグ情報を保持するオプション NoClear MultiFile デフォルトでは 新しい Data.LOAD コマンドが開始されるたびに すでに使用可能なシンボルおよびデバッグ情報が削除されます このオプションを指定すると すでに使用可能なシンボルおよびデバッグ情報は削除されません このオプションは複数のプログラムをロードする場合に必要です このオプションで 複数のプログラムを含む大規模プロジェクトのダウンロードを高速化します このオプションを指定すると Data.LOAD コマンドを使用したときの内部シンボルデータベースの生成が抑制されます Data.LOAD file1 /MultiFile Data.LOAD file2 /NoClear /MultiFile ; load file1 but suppress the ; generation of the internal ; symbol data base ; load file2 but don t remove the ; already available symbol and ; debug information before ; loading and suppress the ; generation of the internal ; symbol data base Data.LOAD file3 /NoClear /MultiFile... Data.LOAD filen /NoClear ; load filen but don t remove the ; already available symbol and ; debug information before ; loading, this is the last file ; so generate the internal symbol ; data base now HLL Debugging - トレーニング 7 アプリケーションプログラムのロード

8 HLL ソースファイルの正しいパスを取得するオプションとコマンド symbol.list.source コマンドを使用して < ファイル > からロードされた HLL ソースファイルのパス情報を表示します ベースディレクトリの修正 StripPART < 数字 > 所定のパスの最初の n 個部分を削除します パスのほとんどの部分は正しいですが HLL ソースファイルはベースディレクトリ G: AND F167 Common RTXC に置かれ R: Common RTXC には置かれていません Data.LOAD.Omf rtcxmain /StripPART 3. ; the option StripPART 3. ; removes the first 3 ; parts from the path ; define the new directory as base for relative paths symbol.sourcepath.setbasedir G: AND F167 Common RTXC HLL Debugging - トレーニング 8 アプリケーションプログラムのロード

9 symbol.list.source Data.Load < ファイル > /StripPART < 数字 > symbol.sourcpath.setbasedir < ディレクトリ > symbol.sourcepath.list HLL ソースファイルのパス情報を表示します < ファイル > からロードされたパスの最初の n 個部分を削除します ベースとして新しいベースディレクトリを相対パスで定義します ソースファイルのすべての検索ディレクトリを表示します HLL Debugging - トレーニング 9 アプリケーションプログラムのロード

10 新しい検索パスの指定 symbol.list.source でリストされたパスから HLL ソースファイルをロードできない場合 TRACE32 は定義された検索ディレクトリで HLL ソースファイルの検索を試みます 以下のコマンドを使用して新しい検索パスを定義できます : symbol.sourcepath.setdir < ディレクトリ > symbol.sourcepath.setdynamicdir < ディレクトリ > symbol.sourcepath.setrecursedir < ディレクトリ > 直接検索パスを定義します ( 静的 ) 直接検索パスを定義します ( 動的 ) 再帰的検索パスを定義します 定義したディレクトリとそのすべてのサブディレクトリが検索パスとして使用されます 静的な直接パスを定義した場合は 検索パスが常に同じ順序でスキャンされます symbol.sourcepath.setdir G: AND compiler xc Control symbol.sourcepath.setdir G: AND compiler xc Source symbol.sourcepath.setdir G: AND compiler xc System 動的な直接検索パスを定義した場合は 最後に検索したソースファイルが置かれていたディレクトリが 次のソースファイルを検索する最初のディレクトリになります symbol.sourcepath.setdynamicdir G: AND compiler xc Control symbol.sourcepath.setdynamicdir G: AND compiler xc Source symbol.sourcepath.setdynamicdir G: AND compiler xc System Data.List ad_cond HLL Debugging - トレーニング 10 アプリケーションプログラムのロード

11 仮想メモリのローダーオプション TRACE32 はホストにいわゆる仮想メモリを提供します 以下のオプションで コードをこの仮想メモリにロードします VM PlusVM コード / データを仮想メモリにロードします コード / データをターゲットおよび仮想メモリにロードします Data.LOAD.COFF arm.abs /VM Data.LOAD.COFF arm.abs /PlusVM ; load code/data from <file> into the ; virtual memory ; load code data from <file> into the ; target memory and into the virtual ; memory 仮想メモリは主に MPC500/800 ARM-ETM などのプログラムフロートレースに使用されます 削減されたトレース情報だけがサンプリングされるため 完全なトレースリストを表示するために TRACE32 はターゲットメモリのコードも必要とします プロセッサのオンチップデバッグロジックが プログラム実行中のメモリリードをサポートしない場合 プログラム実行を停止しなければ 完全なトレースを表示できません コードが仮想メモリにロードされる場合は TRACE32 が仮想メモリのコードを使用して完全なトレースリストを表示できます HLL Debugging - トレーニング 11 アプリケーションプログラムのロード

12 シンボルデータベース 内部シンボルデータベースの構造 Data.LOAD コマンドでロードされたシンボルおよびデバッグ情報は TRACE32 によって内部シンボルデータベースに整理されます プログラム タイプ モジュール セクション 関数 グローバル変数変数 ソース 変数 ( 静的 ) 変数 ( 動的 ) ライン カラム HLL Debugging - トレーニング 12 シンボルデータベース

13 シンボルデータベースの一般情報 symbol.state シンボルデータベースについての一般情報を表示します HLL Debugging - トレーニング 13 シンボルデータベース

14 シンボルブラウザ symbol.browse [< 名前パターン >] [< 型パターン >] [/< オプション >] シンボル情報をブラウズします HLL Debugging - トレーニング 14 シンボルデータベース

15 グローバルブラウズ グローバルに上へ グローバルに下へ * ( すべてのプログラム ) プログラム * * ( すべてのモジュール ) モジュール * * * ( すべての関数 すべてのグローバル変数 ) 関数 グローバル変数 * * * * ( すべてのローカル変数 ) 変数 ( 静的 ) 変数 ( 動的 ) HLL Debugging - トレーニング 15 シンボルデータベース

16 モジュール名の代わりにファイル名を表示 シンボルのモジュール名を表示するには 小さな四角形を右に移動します ソースがオンの場合は モジュール名の代わりにソースファイルの名前が表示されます HLL Debugging - トレーニング 16 シンボルデータベース

17 絞り込みブラウズ 表示タイプの選択 [Symbols] [Variables] [Functions] [Modules] すべてのシンボルを表示します すべての変数を表示します すべての関数を表示します すべてのモジュールを表示します ブラウズを [Variables] に絞り込んだときに 関数が選択されている場合は 選択した関数のローカル変数が表示されます HLL Debugging - トレーニング 17 シンボルデータベース

18 ブラウズを [Functions] に絞り込んだときに 関数が選択されている場合は 選択した関数のソースコードが表示されます «モジュールのブラウズ 関数のブラウズ 変数のブラウズ symbol.browse.symbol symbol.browse.function symbol.browse.var symbol.browse.modules シンボル情報をブラウズします 関数をブラウズします 変数をブラウズします モジュールをブラウズします HLL Debugging - トレーニング 18 シンボルデータベース

19 特定の型のブラウズ [unsigned int] 型のすべての変数を表示します 型名にキーワード char が含まれるすべての変数を表示します ([*char*]) の変数を表示します char へのポインタ型のすべて ([*char "*"]) HLL Debugging - トレーニング 19 シンボルデータベース

20 選択したシンボルの詳細 HLL Debugging - トレーニング 20 シンボルデータベース

21 必要な変数を選択します symbol.info シンボリックアドレス シンボルの場所 範囲 レイアウトを表示します HLL Debugging - トレーニング 21 シンボルデータベース

22 ソースファイル内の検索 現在のソースファイルの文字列の検索 [HLL] デバッグモードがアクティブな場合は 入力した文字列が現在のソースファイル内で検索されます 現在のソースファイル [HLL] デバッグモードがアクティブ HLL Debugging - トレーニング 22 シンボルデータベース

23 すべてのソースファイルの文字列の検索 ここに文字列を入力 TRACE32 が定義した文字列をすべてのソースファイル内で検索します HLL Debugging - トレーニング 23 シンボルデータベース

24 変数の表示 [Watch] ウィンドウ 選択した変数を [Variable Watch] ウィンドウ上部に追加します [Watch] ウィンドウがない場合は新しい [Watch] ウィンドウが作成されます 選択した変数が [Variable Watch] ウィンドウ上部に追加されます [Variable] プルダウンを使用して 変数を [Watch] ウィンドウに追加します HLL Debugging - トレーニング 24 変数の表示

25 変数を [Watch] ウィンドウにドラッグします 選択した変数を [Watch] ウィンドウから削除します Var.Watch [<% フォーマット >] [< 変数 >] Var.AddWatch [<% フォーマット >] [< 変数 >] [Watch] ウィンドウを開いて変数を表示します [Watch] ウィンドウに変数を追加します HLL Debugging - トレーニング 25 変数の表示

26 [View] ウィンドウ 選択した変数用の新しい [Variable View] ウィンドウを開きます 新しい [Variable View] ウィンドウが開いて選択した変数が表示されます Var.View [<% フォーマット >] [< 変数 >] 個別のウィンドウに変数を表示します 式を入力すると その式が処理されて結果が表示されます HLL Debugging - トレーニング 26 変数の表示

27 参照される変数 [Var.REF] ウィンドウを開きます 現在のソースラインが参照する変数が自動的にこのウィンドウに追加されます Var.Ref [<% フォーマット >] [/TRACK] 現在のコードラインが参照する変数を表示します HLL Debugging - トレーニング 27 変数の表示

28 ローカル変数 ウィンドウを開いて 現在の関数のローカル変数を表示します Var.Local [<% フォーマット >] ローカル変数を表示します HLL Debugging - トレーニング 28 変数の表示

29 スタックフレーム スタックトレースを表示して 関数のネスト状態を示します [Args] [Local] [Caller] 引数を表示します ローカル変数を表示します 関数のコール元の高級言語ブロックを表示します Var.Frame [<% フォーマット >] [/ オプション ] スタックトレース を表示します HLL Debugging - トレーニング 29 変数の表示

30 配列用の特殊な表示 グラフ表示 Var.DRAW [<% フォーマット >] < 配列 > 配列の内容をグラフで表示します Var.DRAW sinewave HLL Debugging - トレーニング 30 変数の表示

31 配列をインデックスとポインタとともに表示 Var.TABle [<% フォーマット >] < 配列 > < インデックス > [... ] 配列をインデックスとポインタとともに表示します Var.TABle flags i k vpchar i and k are indices, vpchar is a pointer n 番目の要素をウィンドウ上部に表示します 最初の要素をウィンドウ上部に表示します 最後の要素をウィンドウ上部に表示します HLL Debugging - トレーニング 31 変数の表示

32 配列表示を圧縮します Var.FixedTABle [<% フォーマット >] < 配列 > < インデックス > [... ] 配列をインデックスとポインタとともに固定フォーマットで表示します Var.FixedTABle stra2 vpchar HLL Debugging - トレーニング 32 変数の表示

33 リンクしたリスト Var.CHAIN [<% フォーマット >] < 第 1> < 第 2> [... ] リンクしたリストを表示します Var.CHAIN ast ast.left ast is the first element of the linked list, ast.left provides the pointer to the next element n 番目の要素をウィンドウ上部に表示します 最初の要素をウィンドウ上部に表示します 最後の要素をウィンドウ上部に表示します HLL Debugging - トレーニング 33 変数の表示

34 スキャンモード [Full] [Partial] [Auto] リンクしたリストを永続的にスキャンして常に最新に保ちます これにより TRACE32 ユーザーインタフェースのパフォーマンスが低下する場合があります 3 種類のスキャンモードがサポートされます リンクしたリストが完全にスキャンされます これにより TRACE32 ユーザーインタフェースのパフォーマンスがかなり低下する場合があります リンクしたリストが 画面最上部のレコードからのみスキャンされます TRACE32 ユーザーインタフェースのパフォーマンスへの影響はわずかです このモードは TRACE32 ユーザーインタフェースの速度を犠牲にせずに最新のリンクしたリストを入手する方法です 特定の時間 (20 ~ 50ms) リストが更新され 同じ時間だけユーザーの入力も受け入れます [Auto] ボタンの横の数字は最後に更新されたレコードの番号です Var.FixedCHAIN [<% フォーマット >] < 第 1> < 第 2> [... ] リンクしたリストを固定フォーマットで表示します Var.FixedCHAIN ast ast.left HLL Debugging - トレーニング 34 変数の表示

35 変数ログ 変数ログコマンドは プログラムが停止するたびに 選択した変数の内容をメッセージエリアに記録します ログに記録する変数を選択します メッセージエリアを開きます プログラムが停止するたびに選択した変数の現在の値がメッセージエリアに記録されます Var.LOG [<% フォーマット >] [< 変数 >]... [/< オプション >] Area.View A000 変数をログに記録します メッセージエリアを表示します ログをオフにするには Var.Log をパラメータなしで使用します HLL Debugging - トレーニング 35 変数ログ

36 専用のウィンドウへのログの表示 AREA.Create < 領域 > AREA.view < 領域 > 専用のウィンドウを作成します 専用のウィンドウを表示します AREA.Create Log1 AREA.view Log1 Var.LOG flags /AREA Log1 AREA.Create Log1 AREA.view Log1 Var.LOG flags /AREA Log1 /Changes Variable is only recorded when it has changed since the last program stop HLL Debugging - トレーニング 36 変数ログ

37 ログのファイルへの保存 AREA.OPEN < 領域 > < ファイル名 > AREA.CLOSE < 領域 > AREA ウィンドウの出力ファイルを開きます AREA ウィンドウの出力ファイルを閉じます AREA.Create Log1 Area.view Log1 AREA.OPEN Log1 loglist.lst Var.LOG flags /AREA Log1 AREA.CLOSE Log1 Var.LOG EDIT loglist.lst Finish log Display the result HLL Debugging - トレーニング 37 変数ログ

38 各スポットポイントの変数のログ Var.Break.Set flags /Write /Spot AREA.Create Log1 AREA.view Log1 Var.LOG flags /AREA Log1 /ONSPOT ログをオフに切り替え Var.LOG Switch log to off HLL Debugging - トレーニング 38 変数ログ

39 変数のフォーマット [Format] ダイアログボックスを使用した変数のフォーマット 変数を選択してマウスの右ボタンを押して [Change Variable Format] ダイアログボックスを開きます HLL Debugging - トレーニング 39 変数のフォーマット

40 [radix] 数値フォーマットデフォルトでは 整数は 10 進法 ポインタは 16 進法で表示されます radix [Decimal] [Hex] [BINary] [Ascii] すべての数値が 10 進法で表示されます すべての数値が 16 進法で表示されます すべての数値が 2 進法で表示されます すべての数値が ASCII 文字で表示されます 複数の radix を選択できます 変数の左側の小さな点をクリックして 数値を別のフォーマットで表示します HLL Debugging - トレーニング 40 変数のフォーマット

41 [DUMP] 変数の内容をさらに 16 進法ダンプとして表示します [SCALED] 変数を定義したスケーリングで表示します symbol.addinfo.var < 変数 > Scaled < 乗数 > < オフセット > < フォーマット > symbol.addinfo.list symbol.addinfo.reset 変数のスケーリングを定義します 定義したすべてのスケーリングをリストします リストをリセットします symbol.addinfo.var vfloat Scaled " mvolt" symbol.addinfo.list HLL Debugging - トレーニング 41 変数のフォーマット

42 [display] [Index] インデックスとともに配列を表示します [Type] 型情報とともに変数を表示します HLL Debugging - トレーニング 42 変数のフォーマット

43 [Location] 位置の情報とともに変数を表示します HLL Debugging - トレーニング 43 変数のフォーマット

44 [format] [Fixed] すべての数値を固定フォーマットで表示します 配列の数値要素間に固定スペースを使用します [TREE] ツリー構造で表示します HLL Debugging - トレーニング 44 変数のフォーマット

45 [pointer] [String] / [WideString] このフォーマットは配列または文字へのポインタに使用できます [String] 各文字が 1 バイトです [WideString] 各文字が 1 ワードです ( 一部の DSP またはユニコード ) 配列を文字列として表示します symbol.addinfo.var < 変数 > ZSTRING symbol.addinfo.list symbol.addinfo.reset 変数の内容を 0 で終わる文字列として定義します すべての定義をリストします リストをリセットします symbol.addinfo.var cstr1 ZSTRING symbol.addinfo.list The contents of cstr1 is a zeroterminated string Display definition list HLL Debugging - トレーニング 45 変数のフォーマット

46 [symbol] ポインタの内容をさらにシンボリックに表示します [PDUMP] ポインタが指すアドレスから開始する 16 バイトの 16 進ダンプを表示します HLL Debugging - トレーニング 46 変数のフォーマット

47 [other] [SpotLight] 変更された変数要素をすべて強調表示します : 最後のステップで変更された変数要素には濃い赤のマークが付きます 最後のステップの前のステップで変更された変数要素には それより明るい色のマークが付きます このように 4 レベルでカラー表示されます HLL Debugging - トレーニング 47 変数のフォーマット

48 [E]( 実行時メモリアクセス ) プログラムの実行中に変数の内容を更新します これは [SYStem] ウィンドウで SYStem.MemAccess CPU/NEXUS または SYStem.CpuAccess Enable を設定した場合のみ機能します HLL Debugging - トレーニング 48 変数のフォーマット

49 コマンドラインを使用した変数のフォーマット Var.View [<% フォーマット >] < 変数 > [Change Variable Format] ダイアログボックスを使用して変数をフォーマットした場合は ウィンドウの設定を PRACTICE ファイルに保存する際にフォーマット情報は保存されません フォーマット情報が保存されるのは コマンドラインを使用して変数をフォーマットした場合だけです フォーマット定義後に コマンドで使用されたすべての変数のフォーマット定義が有効 フォーマット情報を選択的にオフに切り替え可能 HLL Debugging - トレーニング 49 変数のフォーマット

50 一般的な SETUP SETUP.Var [<% フォーマット >...] 変数のデフォルト表示フォーマットを変更します HLL Debugging - トレーニング 50 変数のフォーマット

51 関数のテスト Var.set [<% フォーマット >] < 変数 > ターゲットで関数を実行します Var.set func5(4,8,17) HLL Debugging - トレーニング 51 関数のテスト

52 Var.Call [<% フォーマット >] < 式 > Register.SWAP 1 ステップ実行するために 関数とパラメータをコールします 関数の最後で CPU レジスタを再コールします 式が関数コールの場合は この関数を入力すると プログラムカウンタが関数の最初の命令を示します Register.SWAP コマンドで 関数コールの前の CPU レジスタの値を再コールすることができます Var.set func13(3,8,5) プログラムカウンタが関数の最初の命令を示します これで 関数を 1 ステップ実行できます HLL Debugging - トレーニング 52 関数のテスト

53 関数コールのときに情報がスタックに保存されなかったため [Register Swap] を使用してすべての CPU レジスタを関数コールの前の値に復元します (return を実行する前に復元する ) HLL Debugging - トレーニング 53 関数のテスト

54 索引 ( ローカル ) HLL: トレーニング...HLL Debugging - トレーニング 2 トレーニング : HLL...HLL Debugging - トレーニング 2 HLL Debugging - トレーニング 54 索引 ( ローカル )

Yamaha Steinberg USB Driver V for Mac Release Notes

Yamaha Steinberg USB Driver V for Mac Release Notes Yamaha Steinberg USB Driver V1.10.2 for Mac Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Androidプログラミング 2 回目 迫紀徳

Androidプログラミング 2 回目 迫紀徳 Androidプログラミング 2 回目 迫紀徳 前回の復習もかねて BMI 計算アプリを作ってみよう! 2 3 BMI の計算方法 BMI = 体重 [kg] 身長 [m] 2 状態も表示できると GOOD 状態低体重 ( 痩せ型 ) 普通体重肥満 (1 度 ) 肥満 (2 度 ) 肥満 (3 度 ) 肥満 (4 度 ) 指標 18.5 未満 18.5 以上 25 未満 25 以上 30 未満 30

More information

WD/CD/DIS/FDIS stage

WD/CD/DIS/FDIS stage ISO #### All rights reserved ISO TC ###/SC ##/WG # Secretariat: XXXX テンプレート中 解説に相当する部分の和訳を黄色ボックスにて示します 一般財団法人日本規格協会 Title (Introductory element Main element Part #: Part title) WD/CD/DIS/FDIS stage Warning

More information

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic 構造体 構造体のサイズ Marshal.SizeOf メソッド 整数型等型のサイズが定義されて居る構造体の場合 Marshal.SizeOf メソッドを使う事に依り型のサイズ ( バイト数 ) を取得する事が出来る 引数に値やオブジェクトを直接指定するか typeof や GetType で取得した型情報を渡す事に依り 其の型のサイズを取得する事が出来る 下記のプログラムを実行する事に依り Marshal.SizeOf

More information

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software For evaluation only.

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software   For evaluation only. サーブレットと Android との連携 Android からサーブレットへの GET リクエスト Android からサーブレットにリクエストを出すには スレッドを使わなければなりません 枠組みは以下のようになります Android 側 * Hello JSON package jp.ac.neec.kmt.is04.takata; import の記述 public class HelloJsonActivity

More information

Quick Install Guide. Adaptec SCSI RAID 2120S Controller

Quick Install Guide. Adaptec SCSI RAID 2120S Controller Quick Install Guide Adaptec SCSI RAID 2120S Controller The Adaptec SCSI Raid (ASR) 2120S Controller is supported on the HP Workstation xw series with Microsoft Windows 2000 and Windows XP operating systems

More information

Computer Programming I (Advanced)

Computer Programming I (Advanced) Computer Programming I (Advanced) 7 th week Kazumasa Yamamoto Dept. Comp. Sci. & Eng. Computer Programming I (Adv.) 7th week 1 Exercise of last week 1. Sorting by bubble sort Compare the bubble sort with

More information

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11 Installation Guide FOR English 2 About this guide... 2 Notations used in this document... 2 Symbols... 2 Before installing MTCE... 2 Notice... 2 Recommended computer specifications... 3 Installing MTCE...

More information

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix 1 2017 Citrix Cloud Connector 徹底解説 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア 小宮山 哲司 (Satoshi Komiyama) 2 2017 Citrix このセッションのもくじ Cloud Connector 徹底解説 Cloud Connector

More information

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ]

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ] Agilent IO Libraries Suite 16.3/16.2 簡易取扱説明書 この簡易取扱説明書は Agilent IO Libraries Suite 16.3 / 16.2 ( 以後 IO Lib. ) の簡易説明書です 詳細につきましては各 Help や下記の弊社 web をご参照ください [ IO Libraries Suite 最新版 ] http://www.agilent.com/find/iolib

More information

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Installation Guide - 日本語 PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Software Version 2.x 2015 年 4 月 富士通株式会社 1 著作権および商標 Copyright 2015 FUJITSU LIMITED 使用されているハードウェア名とソフトウェア名は 各メーカーの商標です

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.9.11 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

API サーバの URL. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM "

API サーバの URL. <?xml version=1.0 encoding=utf-8?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM Policy Compliance PC スキャン結果の XML Policy Compliance(PC) スキャンの結果は ユーザインタフェースのスキャン履歴リストから XML 形式でダウンロードできます UI からダウンロードした XML 形式の PC スキャン結果には その他のサポートされている形式 (PDF HTML MHT および CSV) の PC スキャン結果と同じ内容が表示されます

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.10.4 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する 2018/03/26 10:04 - Tamura Shinji ステータス : 新規開始日 : 2018/03/26 優先度 : 通常期日 : 担当者 : 進捗率 : 0% カテゴリ : 予定工数 : 0.00 時間 対象バージョン : 作業時間 : 0.00 時間

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. Z-01K の SAR / About SAR of Z-01K ( 本語 ) この機種 Z-01K の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライン に適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. SC-02L の SAR / About SAR of SC-02L ( 本語 ) この機種 SC-02L の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライ ンに適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより Googleの強みは 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング 西尾 信彦 nishio@cs.ritsumei.ac.jp 立命館大学 情報理工学部 Cloud Computing 全地球規模で構成された圧倒的なPCクラスタ 部分的な機能不全を補う機能 あらゆる種類の情報へのサービスの提供 Web上の 全 情報 地図情報 (実世界情報) どのように利用されているかを機械学習

More information

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 日本オラクル株式会社山崎由章 / MySQL Senior Sales Consultant, Asia Pacific and Japan 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. New!! 外部キー

More information

Introduction to Information and Communication Technology (a)

Introduction to Information and Communication Technology (a) Introduction to Information and Communication Technology (a) 6 th week: 1.5 Information security and management Kazumasa Yamamoto Dept. Computer Science & Engineering Introduction to ICT(a) 6th week 1

More information

J の Lab システムの舞台裏 - パワーポイントはいらない -

J の Lab システムの舞台裏 - パワーポイントはいらない - JAPLA 研究会資料 2011/6/25 J の Lab システムの舞台裏 - パワーポイントはいらない - 西川利男 学会の発表などでは 私は J の Lab を活用している 多くの人が使っているパワーポイントなぞ使う気にはならない J の Lab システムは会場の大きなスクリーンで説明文書が出来ることはもちろんだが システム自身が J の上で動いていることから J のプログラムが即実行出来て

More information

Online Meetings with Zoom

Online Meetings with Zoom Online Meetings with Zoom Electronic Applications の下の部分に Zoom への入り口 What is Zoom? This Web Conferencing service is offered free of charge to eligible officers of technical committees, subcommittees, working

More information

TOOLS for MR V1.7.7 for Mac Release Notes

TOOLS for MR V1.7.7 for Mac Release Notes TOOLS for MR V1.7.7 for Mac Release Notes TOOLS for MR V1.7.7 for Mac consists of the following programs. - V1.7.4 - V1.6.4 - V1.7.5 Contents System Requirements for Software Main Revisions and Enhancements

More information

Methods to Detect Malicious MS Document File using File Structure Inspection

Methods to Detect Malicious MS Document File using File Structure Inspection MS 1,a) 2,b) 2 MS Rich Text Compound File Binary MS MS MS 98.4% MS MS Methods to Detect Malicious MS Document File using File Structure Inspection Abstract: Today, the number of targeted attacks is increasing,

More information

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 今日の予定 このミステリー (?) の中でメイントリックに使われました! 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 Some nets are available at http://www.jaist.ac.jp/~uehara/etc/origami/nets/index-e.html

More information

Certificate of Accreditation

Certificate of Accreditation PERRY JOHNSON LABORATORY ACCREDITATION, INC. Certificate of Accreditation Perry Johnson Laboratory Accreditation, Inc. has assessed the Laboratory of: System One Co., Ltd. 1208-1 Otai, Saku-shi, Nagano

More information

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M.

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M. フラクタル 1 ( ジュリア集合 ) PictureBox 1 TextBox 1 TextBox 2 解説 : ジュリア集合 ( 自己平方フラクタル ) TextBox 3 複素平面 (= PictureBox1 ) 上の点 ( に対して, x, y) 初期値 ( 複素数 ) z x iy を決める. 0 k 1 z k 1 f ( z) z 2 k a 写像 ( 複素関数 ) (a : 複素定数

More information

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem. Imports MySql.Data.MySqlClient Imports System.IO Public Class FrmMst Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.Click

More information

PSLT Adobe Typekit Service (2016v1.1)

PSLT Adobe Typekit Service (2016v1.1) 1. Typekit Service. 1.1 Desktop Publishing. Page 1 of 2 (A) Customer may only use Typekit Desktop (including any Distributed Code that Adobe permits to be synced or otherwise made available to Customer

More information

JASCO-HPLC Operating Manual. (Analytical HPLC)

JASCO-HPLC Operating Manual. (Analytical HPLC) JASCO-HPLC Operating Manual (Analytical HPLC) Index A) Turning on Equipment and Starting ChromNav... 3 B) For Manual Measurement... 6 (1) Making Control Method... 7 (2) Preparation for Measurement... 9

More information

Relaxed Consistency models and software distributed memory. Computer Architecture Textbook pp.79-83

Relaxed Consistency models and software distributed memory. Computer Architecture Textbook pp.79-83 Relaxed Consistency models and software distributed memory Computer Architecture Textbook pp.79-83 What is the consistency model? Coherence vs. Consistency (again) Coherence and consistency are complementary:

More information

楽天株式会社楽天技術研究所 Autumn The Seasar Foundation and the others all rights reserved.

楽天株式会社楽天技術研究所 Autumn The Seasar Foundation and the others all rights reserved. 2008 Autumn Seasar の中の中 楽天株式会社楽天技術研究所 西澤無我 1 Seasar の中の中 Javassist (Java バイトコード変換器 ) の説明 S2Container ( 特に S2AOP) は静的に 動的にコンポーネントを拡張可能 実行時に Java バイトコードを生成 編集 Javassist を利用 component interceptor1 interceptor2

More information

Quick Installation Manual

Quick Installation Manual Safety Light Curtain F3SG- RA Series http://www.ia.omron.com/f3sg-r Quick Installation Manual Document Title Safty Light Curtain /RE Series User's Manual Cat. No. Z352-E1 OMRON Corporation 2014-2018 All

More information

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original.

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original. 暗い Lena トーンマッピング とは? tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) / 2 original 元の Lena 明るい Lena tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) tone mapped 画素値 ( ) output

More information

Lecture 4 Branch & cut algorithm

Lecture 4 Branch & cut algorithm Lecture 4 Branch & cut algorithm 1.Basic of branch & bound 2.Branch & bound algorithm 3.Implicit enumeration method 4.B&B for mixed integer program 5.Cutting plane method 6.Branch & cut algorithm Slide

More information

PRODUCT DESCRIPTIONS AND METRICS

PRODUCT DESCRIPTIONS AND METRICS PRODUCT DESCRIPTIONS AND METRICS 1. Multiple-User Access. 1.1 If On-Premise Software licensed on a per-user basis is installed on a Computer accessible by more than one User, then the total number of Users

More information

HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド

HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド HPE 部品番号 : 5200-2448 発行 : 2016 年 11 月第 1 版 1 Copyright 2012, 2016 Hewlett Packard Enterprise Development LP 本書の内容は 将来予告なしに変更されることがあります Hewlett Packard

More information

UB-U01III/U02III/U03II User s Manual

UB-U01III/U02III/U03II User s Manual English UB-U01III/U02III/U03II User s Manual Standards and Approvals Copyright 2003 by Seiko Epson Corporation Printed in China The following standards are applied only to the boards that are so labeled.

More information

SteelEye Protection Suite for Linux

SteelEye Protection Suite for Linux SteelEye Protection Suite for Linux Postfix Recovery Kit v8.2.1 管理ガイド 2014 年 3 月 SteelEye and LifeKeeper are registered trademarks. Adaptec is a trademark of Adaptec, Inc. Adobe Acrobat is a registered

More information

User Guide. P6 Barcode Scanner. English 日本語

User Guide. P6 Barcode Scanner. English 日本語 User Guide P6 Barcode Scanner English 日本語 English Product Overview Laser Window Trigger Buzzer Power Switch USB Port LED1 LED2 Shockproof Cover 1 Use of Inateck P6 Startup Note: 1) Inateck P6 will start

More information

MathWorks Products and Prices Japan September 2016

MathWorks Products and Prices Japan September 2016 MATLAB Product Family page 1 of 5 MATLAB 1 295,000 1,180,000 Parallel Computing Toolbox 145,000 580,000 Math and Optimization Symbolic Math Toolbox 145,000 580,000 Partial Differential Equation Toolbox

More information

和英対訳版. IEC Standard Template のユーザーガイド 備考 : 英語原文掲載 URL ( 一財 ) 日本規格協会

和英対訳版. IEC Standard Template のユーザーガイド 備考 : 英語原文掲載 URL ( 一財 ) 日本規格協会 IEC Standard Template のユーザーガイド 和英対訳版 ( 一財 ) 日本規格協会 備考 : 英語原文掲載 URL http://www.iec.ch/standardsdev/resources/draftingpublications/layout_formatting/iec_t emplate/ IEC:2014 3 CONTENTS 1 Introduction... 5

More information

Certificate of Accreditation

Certificate of Accreditation PERRY JOHNSON LABORATORY ACCREDITATION, INC. Certificate of Accreditation Perry Johnson Laboratory Accreditation, Inc. has assessed the Laboratory of: NOISE LABORATORY CO., LTD. Customer Service Center

More information

PNRGOV/Ver11.1/ 旅客氏名表予約情報報告 (PNR01)

PNRGOV/Ver11.1/ 旅客氏名表予約情報報告 (PNR01) UNB: INTERCHANGE HEADER 項番については業務仕様書の入出力項目表の項番を参照 TAG COMP NAME PADIS EDIFACT NACCS 項番 項目名 / 設定値 特記事項 UNB INTERCHANGE HEADER C 1 M 1 S001 SYNTAX IDENTIFIER M 1 M 1 0001 Syntax identifier M a4 1 M a4 1

More information

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 )

A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) A. 展開図とそこから折れる凸立体の研究 1. 複数の箱が折れる共通の展開図 2 通りの箱が折れる共通の展開図 3 通りの箱が折れる共通の展開図そして. 残された未解決問題たち この雑誌に載ってます! 2. 正多面体の共通の展開図 3. 正多面体に近い立体と正 4 面体の共通の展開図 ( 予備 ) このミステリー (?) の中でメイントリックに使われました! 主な文献 Dawei Xu, Takashi

More information

NI TB Introduction. Conventions INSTALLATION INSTRUCTIONS Wire Terminal Block for the NI PXI-2529

NI TB Introduction. Conventions INSTALLATION INSTRUCTIONS Wire Terminal Block for the NI PXI-2529 INSTALLATION INSTRUCTIONS NI TB-2636 4 32 2-Wire Terminal Block for the NI PXI-2529 Introduction This document describes how to install and connect signals to the National Instruments TB-2636 terminal

More information

DürrConnect the clever connection. The quick connection with the Click

DürrConnect the clever connection. The quick connection with the Click DürrConnect the clever connection The quick connection with the Click 90d Elbow Securing clip 45d Elbow O-rings Double plug Plug D36 Double socket Double socket with valve カチッ と接続早い 確実 便利 新しく開発された接続システム

More information

Snoop cache. AMANO, Hideharu, Keio University Textbook pp.40-60

Snoop cache. AMANO, Hideharu, Keio University Textbook pp.40-60 cache AMANO, Hideharu, Keio University hunga@am.ics.keio.ac.jp Textbook pp.40-60 memory A small high speed memory for storing frequently accessed data/instructions. Essential for recent microprocessors.

More information

製 品 ガ イ ド NetShield for NetWare V E R S I O N 4. 6

製 品 ガ イ ド NetShield for NetWare V E R S I O N 4. 6 製品ガイド NetShield for NetWare VERSION 4.6 COPYRIGHT 2001 Networks Associates Technology, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved.

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved. Zabbix ログ解析方法 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ Zabbix ログ解析方法 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ 2 自己紹介 MIRACLE ZBXサポート担当 Zabbixソースコード調査 ドキュメント作成 ( 当社ブログも執筆 ) ときどき新規機能追加もしたりします 4.0 へ向けての機能紹介等

More information

DSK8AD1DA. 8ch A/D & 1ch D/A for DSK/EVM.

DSK8AD1DA. 8ch A/D & 1ch D/A for DSK/EVM. DSK8AD1DA 8ch A/D & 1ch D/A for DSK/EVM http://www.cepstrum.co.jp/ Rev. date remarks ------------------------------------------------------------------------ 1.1 2002.11.27 1st official release 1.2 2003.10.27

More information

Training HLL Debugging

Training HLL Debugging Training HLL Debugging TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Training... Training HLL Debugging... 1 Load the Application Program... 4 The Symbol Database... 21 Structure of the Internal

More information

サンプル. NI TestStand TM I: Introduction Course Manual

サンプル. NI TestStand TM I: Introduction Course Manual NI TestStand TM I: Introduction Course Manual Course Software Version 4.1 February 2009 Edition Part Number 372771A-01 NI TestStand I: Introduction Course Manual Copyright 2009 National Instruments Corporation.

More information

Operational Precaution

Operational Precaution User s Manual FieldMate R3.04 Operational Precaution Contents PART A PART B Operational Precaution: English version 和文版の操作注意事項が記載されております : Japanese version 17th Edition 1 PART A This document supplements

More information

ご注意. (4) 運用した結果の影響につきましては (4) の項に関わらず責任を負いかねますのでご了承ください (5) Autodesk Device Interface(ADI) および Heidi Device Interface(HDI) ドライバは 周辺機器メーカーに対応しています

ご注意. (4) 運用した結果の影響につきましては (4) の項に関わらず責任を負いかねますのでご了承ください (5) Autodesk Device Interface(ADI) および Heidi Device Interface(HDI) ドライバは 周辺機器メーカーに対応しています 日本仕様コンテンツガイド ご注意 (1) 本書の内容の全部または一部を無断で記載することは禁止されています (2) 本書の内容に関しては将来予告なしに変更することがあります (3) 本書の内容につきましては万全を期していますが 万一ご不審な点や誤り 記載漏れなどお気づきの点がございましたら 弊社またはお買い求めの販売店へご連絡ください (4) 運用した結果の影響につきましては (4) の項に関わらず責任を負いかねますのでご了承ください

More information

Web 成績登録システム利用の手引き ( 改訂版 )

Web 成績登録システム利用の手引き ( 改訂版 ) Web 成績登録システム利用の手引き ( 改訂版 ) Manual for the Online Entry of Grades 大阪国際大学 大阪国際大学短期大学部 Revised on July 4 th, 2011 Outline of Procedures for the Web Entry of Grades 1 Go to the OIU web page at http://www.oiu.ac.jp/

More information

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 国立大学法人名古屋大学 National University Corporation Nagoya University この振込依頼書は 本学が貴社にお支払いする代金をご指定の金融機関口座に銀行振込するためのものです 新規に登録される場合 あるいは内容を一部変更される場合はその都度 この申出書を提出していただくよう

More information

TestsDumps. Latest Test Dumps for IT Exam Certification

TestsDumps.   Latest Test Dumps for IT Exam Certification TestsDumps http://www.testsdumps.com Latest Test Dumps for IT Exam Certification Exam : 642-813 日本語版 Title : Implementing Cisco IP Switched Networks Vendor : Cisco Version : DEMO 1 / 12 Get Latest & Valid

More information

PGroonga 2. Make PostgreSQL rich full text search system backend!

PGroonga 2. Make PostgreSQL rich full text search system backend! PGroonga 2 Make PostgreSQL rich full text search system backend! Kouhei Sutou ClearCode Inc. PGConf.ASIA 2017 2017-12-05 Targets 対象者 Want to implement full text search with PostgreSQL PostgreSQL で全文検索したい

More information

Ritsu-Mate Registration Manual (for Undergraduate Programs)

Ritsu-Mate Registration Manual (for Undergraduate Programs) Ritsu-Mate Registration Manual (for Undergraduate Programs) - Ritsumeikan University has introduced Ritsu-Mate, an online application / enrollment system that can be used to complete a part of the undergraduate

More information

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan IRS16: 4 byte ASN Version: 1.0 Date: April 22, 2008 Cisco Systems hkanemat@cisco.com 1 目次 4 byte ASN の対応状況 運用での変更点 2 4 byte ASN の対応状況 3 4 byte ASN の対応状況 IOS XR 3.4 IOS: 12.0S 12.2SR 12.2SB 12.2SX 12.5T

More information

Vehicle Calibration Techniques Established and Substantiated for Motorcycles

Vehicle Calibration Techniques Established and Substantiated for Motorcycles Technical paper Vehicle Calibration Techniques Established and Substantiated for Motorcycles モータサイクルに特化した車両適合手法の確立と実証 Satoru KANNO *1 Koichi TSUNOKAWA *1 Takashi SUDA *1 菅野寛角川浩一須田玄 モータサイクル向け ECU は, 搭載性をよくするため小型化が求められ,

More information

MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content

MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content Master Thesis MetaSMIL : A Description Language for Dynamic Integration of Multimedia Content Supervisor Professor Katsumi TANAKA Department of Social Informatics Graduate School of Informatics Kyoto University

More information

Co-StandbyServer. AAdvanced. リリース 5.1 Microsoft Windows 版 ユーザーズ ガイド

Co-StandbyServer. AAdvanced. リリース 5.1 Microsoft Windows 版 ユーザーズ ガイド Co-StandbyServer AAdvanced リリース 5.1 Microsoft Windows 版 2003, LEGATO Systems, Inc. All rights reserved. This product may be covered by one or more of the following patents: U.S. 5,359,713; 5,519,853; 5,649,152;

More information

Appliance Edition 入門ガイド

Appliance Edition 入門ガイド [Type the document title] 1.0 2013 年 7 月 3725-69903-001/A Polycom RealPresence Capture Server - Appliance Edition 入門ガイド Polycom Document Title 1 商標情報 POLYCOM および Polycom 社製品に関連する製品名およびマークは Polycom, Inc.

More information

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること 目次 はじめにはじめに表記法前提条件使用するコンポーネント設定ネットワーク図設定 RADIUS プロファイル確認トラブルシューティングシングルサインオン SSD 2.5.1 機能とは何か SSG および SSD を設定する前に何を認知する必要がありますか PPPoA セッションが始められたが 後 SSD ログオンが設定される前にことをしますか

More information

JBoss Enterprise Application Platform 5

JBoss Enterprise Application Platform 5 JBoss Enterprise Application Platform 5 HTTP コネクタ負荷分散ガイド エディッション 5.1.2 JBoss Enterprise Application Platform 向け HTTP 負荷分散 Last Updated: 2017-10-26 JBoss Enterprise Application Platform 5 HTTP コネクタ負荷分散ガイド

More information

~ ソフトウエア認証への取り組みと課題 ~

~ ソフトウエア認証への取り組みと課題 ~ 第 1 回航空機装備品認証技術オープンフォーラム ~ ソフトウエア認証への取り組みと課題 ~ 2019 年 3 月 14 日 The information in this document is the property of Sumitomo Precision Products Co.,LTD.(SPP) and may not be duplicated, or disclosed to any

More information

Saki is a Japanese high school student who/ has just started to study/ in the US.//

Saki is a Japanese high school student who/ has just started to study/ in the US.// L3 gr8 or great? Part 1 Saki is a Japanese high school student who/ has just started to study/ in the US.// Recently,/ she received/ the following cellphone e-mail.// It says that/ her friends are going

More information

BraindumpStudy. BraindumpStudy Exam Dumps, High Pass Rate!

BraindumpStudy.   BraindumpStudy Exam Dumps, High Pass Rate! BraindumpStudy http://www.braindumpstudy.com BraindumpStudy Exam Dumps, High Pass Rate! Exam : 200-120 日本語 (JPN) Title : CCNA Cisco Certified Network Associate CCNA (803) Vendor : Cisco Version : DEMO

More information

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu

Centralized (Indirect) switching networks. Computer Architecture AMANO, Hideharu Centralized (Indirect) switching networks Computer Architecture AMANO, Hideharu Textbook pp.92~130 Centralized interconnection networks Symmetric: MIN (Multistage Interconnection Networks) Each node is

More information

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68 Synchronization with shared memory AMANO, Hideharu Textbook pp.60-68 Fork-join: Starting and finishing parallel processes fork Usually, these processes (threads) can share variables fork join Fork/Join

More information

FUJITSU Software SystemcastWizard Professional V5.1 L30 ユーザーズガイド B7FW Z0(00) 2014 年 8 月

FUJITSU Software SystemcastWizard Professional V5.1 L30 ユーザーズガイド B7FW Z0(00) 2014 年 8 月 FUJITSU Software SystemcastWizard Professional V5.1 L30 ユーザーズガイド B7FW-0261-01Z0(00) 2014 年 8 月 本書をお読みになる前に 本製品のハイセイフティ用途での使用について 本製品は 一般事務用 パーソナル用 家庭用 通常の産業用等の一般的用途を想定して設計 製造されているものであり 原子力施設における核反応制御 航空機自動飛行制御

More information

Module mjlgsys. End Module. Imports MySql.Data.MySqlClient. Public Class frmgsys 'SQL 関連の定数宣言はフォーム間共通にしておく

Module mjlgsys. End Module. Imports MySql.Data.MySqlClient. Public Class frmgsys 'SQL 関連の定数宣言はフォーム間共通にしておく Module mjlgsys Public Wkhdr As String Public Myhdr As String Public Setno As String Public Custm As String Public Umflg As Long 起動ホルダー ホルダー指定 電話番号 お客様名前 更新確認用 Public TEL_NO As String 電話番号 Public SEQ_NO

More information

マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた

マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた 8T SRAM セルレイアウト 吉本秀輔神戸大学博士課程 1 年 E-mail : yoshipy@cs28.cs.kobe-u.ac.jp 1 Outline 背景 提案 8T SRAM cell layout ソフトエラーシミュレーション結果 消費電力比較結果 まとめ 2 Outline 背景 提案 8T SRAM cell

More information

Invitrogen Custom Primer Ordering Guide

Invitrogen Custom Primer Ordering Guide Invitrogen Custom Primer Ordering Guide Rev. August,2015 Invitrogen Custom Primer Ordering Guide This guide describes how to order custom primer in Lifetechnologies Japan website. Before ordering primers,

More information

QPHY-SATA Serial ATA Serial Data オペレーターズ マニュアル

QPHY-SATA Serial ATA Serial Data オペレーターズ マニュアル QPHY-SATA Serial ATA Serial Data オペレーターズ マニュアル Revision F October, 2008 Relating to the Following Release Versions: Software Option Rev. 5.7 SATA Script Rev. 1.5 Style Sheet Rev. 1.2 LeCroy Corporation

More information

Unified System Management Technology for Data Centres

Unified System Management Technology for Data Centres Unified System Management Technology for Data Centres データセンタ向け統合システム管理技術 Abstract Fujitsu s Unified System Management Technology (USMT) is a powerful, ubiquitous infrastructure that harnesses Web Service

More information

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Chapter 3 Visualization Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Project Representative Fumiaki Araki Earth Simulator Center, Japan Agency for Marine-Earth Science and

More information

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 2 ネットワークへのアクセス ネットワークへの接続 TCP:Socket 利用 UDP:DatagramSocket 利用 URL へのアクセス 3 application String Object reader / writer char stream byte device 4 階層化された IO の利点

More information

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */ 演習コメントを参考にして を埋めてアプレットプログラムを実行させてみよ * SOFT 120 01 * AppletTest01.java * 文字表示 //java の applet 定義 // 文字 絵を描くのに必要な Graphics を定義 public

More information

UML. A Model Trasformation Environment for Embedded Control Software Design with Simulink Models and UML Models

UML. A Model Trasformation Environment for Embedded Control Software Design with Simulink Models and UML Models Simulink UML 1,a) 1, 1 1 1,b) 1,c) 2012 3 5, 2012 9 10 Simulink UML 2 MATLAB/Simulink Simulink UML Simulink UML UML UML Simulink Simulink MATLAB/Simulink UML A Model Trasformation Environment for Embedded

More information

プログラマ本体 I/F 回路図 -Programmer I/F Circuit Diagram-...2 FLASH2 内部 2 FLASHMATE5V1 内部 2

プログラマ本体 I/F 回路図 -Programmer I/F Circuit Diagram-...2 FLASH2 内部 2 FLASHMATE5V1 内部 2 F-ZTAT TM On-board Programmer For Single Power Supply FLASH2 FLASHMATE5V1 取扱説明書資料編 User s Guide 目次 Contents Important Matters To Prepare Target Board...1 About Reference Circuit Diagrams 1 Other important

More information

Rechargeable LED Work Light

Rechargeable LED Work Light Rechargeable LED Work Light 充電式 LED 作業灯 Model:SWL-150R1 Using LED:LG innotek SMD, HI-POWER(150mA 15 position) Color Temperature:5,700 kelvin Using Battery:LG chemical Li-ion Battery(2,600mA 1set) Brightness

More information

モデルのパフォーマンスに 関するテクニカルノート

モデルのパフォーマンスに 関するテクニカルノート Revit Architecture 2010, Revit MEP 2010 and Revit Structure 2010 モデルのパフォーマンスに 関するテクニカルノート 2009 年 3 月 2009 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication,

More information

BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン

BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン FEATURES: 製品の特徴 Head Up Display Socionext MB88F333BA 3.15-inch WVGA IPS LCD Techno Solutions Manufacturer Nippon Seiki Model Number 6230-9 367

More information

The Secret Life of Components

The Secret Life of Components Practical WebObjects Chapter 6 (Page 159-185): The Secret Life of Components WR WR at Csus4.net http://www.csus4.net/wr/ 目次詳細 The Hypertext Transfer Protocol Spying on HTTP The Request-Response Loop, Briefly

More information

Web Billing User Guide

Web Billing User Guide Web Billing User Guide ( Smart Phone ) This guide describes how to use Web Billing service provided by NTT Finance. Your display on the screen may vary depending on the payment methods you have. Contents

More information

Legal Notices. Autodesk MotionBuilder2013 What's New. Software Product Version:

Legal Notices. Autodesk MotionBuilder2013 What's New. Software Product Version: 新機能 Legal Notices Autodesk MotionBuilder 2013 2012 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts thereof, may not be reproduced in any

More information

Infragistics ASP.NET リリースノート

Infragistics ASP.NET リリースノート 2015.1 リリースノート AJAX は パフォーマンスに注力して設計されたグリッド 快適な UX に不可欠なツリー タブ メニューなど ASP. NET AJAX に準拠した高パフォーマンスな Web Forms アプリケーションを作成するツールセットです インストール ダウンロード 2015.1 サービスリリースダウンロード リリースノート コンポーネント カテゴリ 説明 ExcelEngine

More information

Verify99. Axis Systems

Verify99. Axis Systems Axis Systems Axis Systems Mission Axis Systems, Inc. is a technology leader in the logic design verification market. Founded in 1996, the company offers breakthrough technologies and high-speed simulation

More information

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment BABr11.5 for Linux のインストール 2007/12/21 ここでは BrightStore ARCserve Backup 11.5 for Linux のインストール手順を説明します 前提条件 1) HTTP サーバが動作している必要があります YaST > Networks Service > HTTP Server を開き HTTP サービスが動作しているか確認してください

More information

Video Annotation and Retrieval Using Vague Shot Intervals

Video Annotation and Retrieval Using Vague Shot Intervals Master Thesis Video Annotation and Retrieval Using Vague Shot Intervals Supervisor Professor Katsumi Tanaka Department of Social Informatics Graduate School of Informatics Kyoto University Naoki FUKINO

More information

Infrared Data Association Trademark and Brand Guidelines

Infrared Data Association Trademark and Brand Guidelines Infrared Data Association Trademark and Brand Guidelines March 2011 1 Infrared Data Association s (IrDA) Philosophy on Trademarks and Brands IrDA's trademarks, certification marks and brands ( Marks )

More information

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A8)

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A8) アルゴリズムの設計と解析 教授 : 黄潤和 SA: (W4022) rhuang@hosei.ac.jp 広野史明 (A4/A8) fumiaki.hirono.5k@stu.hosei.ac.jp Contents (L6 Search trees) Searching problems AVL tree 2-3-4 trees Insertion (review) Deletion 2 3 Insertion

More information

Feature Data Objects(FDO) FDO の基本操作 2009 年 4 月

Feature Data Objects(FDO) FDO の基本操作 2009 年 4 月 Feature Data Objects(FDO) FDO の基本操作 2009 年 4 月 2009 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts thereof, may not be reproduced in any

More information

NUC and its Applications

NUC and its Applications 11 NUC とその応用 手のひらの上のCore NUC and its Applications The Core in the palm of your hands ネットワーク情報学部 石原秀男 School of Network and Information Hideo Ishihara Keywords: NUC, Core, Arduino, Kinect Abstract Next

More information

Autodesk Maya 2013 Extension ( 拡張機能 )

Autodesk Maya 2013 Extension ( 拡張機能 ) Autodesk Maya 2013 Extension ( 拡張機能 ) 本書では このリリースで修正された問題に関するおよび内容を記載しています また このリリースでの新機能に関する情報も記載しています ( 該当する場合 ) このリリースをインストールする前に本書を必ずお読みください 参照用に本書をハードドライブに保存するか印刷してください 注意事項 : このリリースは すべてのオペレーティングシステムにおいて

More information

HA8000-bd シリーズ内蔵 LAN スイッチモジュールソフトウェアマニュアルメッセージ ログレファレンス. HA8000-bd/BD10X3. Ver B 対応

HA8000-bd シリーズ内蔵 LAN スイッチモジュールソフトウェアマニュアルメッセージ ログレファレンス. HA8000-bd/BD10X3. Ver B 対応 HA8000-bd シリーズ内蔵 LAN スイッチモジュールソフトウェアマニュアルメッセージ ログレファレンス HA8000-bd/BD10X3 Ver. 3.6.0.B 対応 対象製品このマニュアルは HA8000-bd シリーズ内蔵 LAN スイッチモジュールを対象に記載しています また, 内蔵 LAN スイッチモジュールのソフトウェア Ver.3.6.0.B の機能について記載しています ソフトウェア機能は,

More information