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

Size: px
Start display at page:

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

Transcription

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

2 memory A small high speed memory for storing frequently accessed data/instructions. Essential for recent microprocessors. Basis knowledge for uni-processor s cache is reviewed first.

3 Memory Hierarchy Locality is used. Small high speed C L1 L2 Transparent from Software On-Chip cache ~64KB 1-2clock ~256KB 3-10clock L3 SRAM 2M~4MB 10-20clock Large low speed Main memory DRAM 4~16GB clock Managed by Operating System Secondary Memory μ-msec TB

4 Controlling cache Mapping direct map n-way set associative map full-map Write policy write through write back Replace policy LRU(Least Recently Used)

5 Direct Map From C = Yes:Hit Data (1KB=128Lines) (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit ) Simple Directory structure

6 Direct Map (Conflict Miss) From C = No: Miss Hit Conflict Miss occurs between two lines with the same index Directory (Tag Memory)

7 2-way set associative Map From C = Yes: Hit Data (1KB=128Lines) (64B=8Lines) = No Directory (Tag Memory) 4 entries X 5bit X 2

8 2-way set associative Map From C = No (1KB=128Lines) (64B=8Lines) = Yes: Hit Directory (Tag Memory) 4 entries X 5bit X 2 Data Conflict Miss is reduced

9 Write Through (Hit) From C (1KB=128Lines) The main memory is updated 0011 Hit Directory (Tag Memory) 8 entries X (4bit ) Write Data (64B=8Lines)

10 Write Through (Miss:Direct Write) From C (1KB=128Lines) Only main memory is updated 0011 Miss (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit ) Write Data

11 Write Through (Miss:Fetch on Write 1) From C (1KB=128Lines) Miss (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit ) Write Data

12 Write Through (Miss:Fetch on Write 2) From C (1KB=128Lines) Miss (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit ) Write Data

13 Write Back (Hit) From C Dirty (1KB=128Lines) Hit (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit+1bit ) Write Data

14 Write Back (Replace) From C Dirty Write Back (1KB=128Lines) Miss Directory (Tag Memory) 8 entries X (4bit+1bit ) (64B=8Lines)

15 Write Back (Replace) From C Replace (1KB=128Lines) Clean (64B=8Lines) Directory (Tag Memory) 8 entries X (4bit+1bit )

16 Shared memory connected to the bus is required Shared cache Often difficult to implement even in on-chip multiprocessors Private cache Consistency problem cache

17 Shared PE PE PE PE Shared 1 port shared cache Severe access conflict 4-port shared cache A large multi-port memory is hard to implement Bus Interface Shared cache is often used for L2 cache of on-chip multiprocessors

18 Private() Each provides its own private cache

19 Bus as a broadcast media A single module can send (write) data to the media All modules can receive (read) the same data Broadcasting Tree Crossbar + Bus Network on Chip (NoC) Here, I show as a shape of classic bus but remember that it is just a logical image.

20 coherence (consistency) problem A A The same block is cached in two cache modules

21 coherence (consistency) problem A A A Data in each cache is not the same

22 Coherence vs. Consistency Coherence and consistency are complementary: Coherence defines the behavior of reads and writes to the same memory location, while Consistency defines the behavior of reads and writes with respect to accesses to other memory location. Hennessy & Patterson Computer Architecture the 5 th edition pp.353

23 Consistency Protocol Each cache keeps consistency by monitoring (snooping) bus transactions. Write Through:Every written data updates the shared memory. Frequent access of bus will degrade performance Write Back: Invalidate Update (Broadcast) Basis(Synapse) Ilinois Berkeley Firefly Dragon

24 Glossary 1 Shared : 共有キャッシュ Private : 占有キャッシュ : スヌープキャッシュ バスを監視することによって内容の一致を取るキャッシュ 今回のメインテーマ ちなみに は こそこそかぎまわる という意味で チャーリーブラウンに出てくる犬の名前と語源は ( 多分 ) 同じ Coherent(Consistency) Problem: マルチプロセッサで各 PE がキャッシュを持つ場合にその内容の一致が取れなくなる問題 一致を取る機構を持つ場合 Coherent と呼ぶ Conherence と Consistency の違いは同じアドレスに対するものか違うアドレスに対するものか Direct map: ダイレクトマップ キャッシュのマッピング方式の一つ n-way set associative: セットアソシアティブ 同じくマッピング方式 Write through, Write back: ライトスルー ライトバック 書き込みポリシーの名前 Write through は二つに分かれ Direct Write は直接主記憶を書き込む方法 Fetch on Write は 一度取ってきてから書き換える方法 Dirty/Clean: ここでは主記憶と内容が一致しない / すること この辺のキャッシュの用語はうまく翻訳できないので カタカナで呼ばれているため よくわかると思う

25 Write Through (Invalidation type:data read out) I:Invalidated V:Valid Read Read V V

26 Write Through (Invalidate type:data write into) I:Invalidate V:Valid Monitoring (ing) V V I Write

27 Write Through (Invalidate type Direct Write) The target cache line is not existing in the cache I:Invalidated V:Valid Monitoring (ing) V I Write

28 Write Through (Invalidate type:fetch On Write) line is not existing in the target cache I:Invalidated V:Valid V Write

29 Write Through (Invalidate type:fetch On Write) First, Fetch I:Invalidated V:Valid V V Write Fetch and write

30 Write Through (Invalidate type:fetch On Write) I:Invalidated V:Valid Monitoring () V V I Write Fetch and write

31 Write Through (Update type) I:Invalidated V:Valid Monitoring () V V Write Data is updated

32 The structure of cache Shared bus Directory The same Directory (Dual Port) Directory Memory Entity Directory can be accessed simultaneously from both sides. The bus transaction can be checked without caring the access from C. C

33 Quiz Following accesses are done sequentially into the same cache line of Write through Direct Write and Fetch-on Write protocol. How the state of each cache line is changed? A: Read B: Read A: Write B: Read B: Write A: Write

34 The Problem of Write Through In uniprocessors, the performance of the write through cache with well designed write buffers is comparable to that of write back cache. However, in bus connected multiprocessors, the write through cache has a problem of bus congestion.

35 Basic Protocol States attached to each line C:Clean (Consistent to shared memory) D: Dirty I:Invalidate C C Read Read

36 Basic Protocol(A writes the data) Invalidation signal C I C D Write Invalidation signal: address only transaction

37 Basic Protocol (A reads out) Read request I D Read

38 Basic Protocol (A reads out) C I D C Read

39 Basic Protocol (A reads out) Read request Read I D

40 Basic Protocol (A reads out) C D C Read

41 Basic Protocol (A writes into again) Write request I D W

42 Basic Protocol (A writes into again) D D I W

43 State Transition Diagram of the Basic Protocol read Replace I C write write hit Replace Invalidate write miss Replace read miss Write back & Replace write miss Write back & Replace D I C Invalidate write miss for the block D read miss for the block read miss Replace C request Bus snoop request

44 Illinois s Protocol States for each line CE:Clean Exclusive CS:Clean Sharable DE:Dirty Exclusive I:Invalidate CE The first reads

45 Illinois s Protocol States for each line CE:Clean Exclusive CS:Clean Sharable DE:Dirty Exclusive I:Invalidate CE CS CS The second reads

46 Illinois s Protocol (The role of CE) CE:Clean Exclusive CS:Clean Sharable DE:Dirty Exclusive I:Invalidate CE DE W CE is changed into DE without using the bus

47 Berkeley s protocol US R Ownership responsibility of write back OS:Owned Sharable OE:Owned Exclusive US:Unowned Sharable I:Invalidated

48 Berkeley s protocol US US R Ownership responsibility of write back OS:Owned Sharable OE:Owned Exclusive US:Unowned Sharable I:Invalidated

49 Berkeley s protocol (A writes into) snoop W US OE US I Invalidation is done like the basic protocol

50 Berkeley s protocol The line with US is not required to be written back snoop OE I R A reads a block owned by the other

51 Berkeley s protocol The line with US is not required to be written back OE OS I US R Inter-cache transfer occurs! In this case, the line with US is not consistent with the shared memory.

52 Firefly protocol The usage of CE is the same as that in Illinois. CE CS CS R R First read: CE Second read: CS CE:Clean Exclusive CS:Clean Sharable DE:Dirty Exclusive I: Invalidate is not used!

53 Firefly protocol (Writes into the CS line) CS CS W All caches and shared memory are updated Like update type Write Through

54 Firefly protocol (The role of CE) CE DE W Like Illinoi s, writing CE does not require bus transactions

55 Dragon protocol UE R Ownership Resposibility of write back OS:Owned Sharable OE:Owned Exclusive US:Unowned Sharable UE:Unowned Exclusive

56 Dragon protocol snoop UE US R US Ownership Resposibility of write back OS:Owned Sharable OE:Owned Exclusive US:Unowned Sharable UE:Unowned Exclusive

57 Dragon protocol update US OS US W Only corresponding cache line is updated. The line with US is not required to be written back.

58 Dragon protocol Miss hit OE R A reads a block owned by the other.

59 Dragon protocol OE OS US R Direct inter-cache data transfer like Berkeley s protocol

60 Dragon protocol (The role of the UE) UE OE W No bus transaction is needed like CE is Illinois

61 MOESI Protocol class Valid Owned S:Sharable Exclusive O: Owned M: Modified E: Exclusive I: Invalid

62 MOESI protocol class Basic:MSI Illinois:MESI Berkeley:MOSI Firefly:MES Dragon:MOES Theoretically well defined model. Detail of cache is not characterized in the model.

63 Invalidate vs.update The drawback of Invalidate protocol Frequent data writing to shared data makes bus congestion ping-pong effect The drawback of Update protocol Once a line shared, every writing data must use shared bus. Improvement Competitive ing Variable Protocol

64 Ping-pong effect(a writes into) Invalidation C I C D W

65 Ping-pong effect (The other reads out) R I C D C

66 Ping-pong effect (The other writes again) Invalidation C D C I W

67 Ping-pong effect(a reads again) D C R I C A cache line goes and returns iteratively Ping-pong effect

68 The drawback of update protocol (Firefly protocol) CS CS W B Once a line becomes CS, a line is sent even if B the line is not used any more. False Sharing causes unnecessary bus transaction.

69 Glossary 2 Invalidation: 無効化 Update: 更新 Consistency Protocol: キャッシュの一致性を維持するための取り決め Illinois, Berkeley, Dragon, Firefly: プロトコルの名前 Illinois と Berkeley は提案した大学名 Dragon,Firefly はそれぞれ Xerox と DEC のマシン名 Exclusive: 排他的 つまり他にコピーが存在しないこと Modify: 変更したこと Owner: オーナ 所持者だが実は主記憶との一致に責任を持つ責任者である Ownership は所有権 Competitive: 競合的 この場合は二つの方法を切り替える意に使っている Injection: 注入 つまり取ってくるというよりは押し込んでしまう意

70 Summary is the most successful technique for parallel architectures. In order to use multiple buses, a single line for sending control signals is used. Sophisticated techniques do not improve the performance so much. Variable structures can be considerable for on-chip multiprocessors. Recently, snoop protocols using NoC(Network-onchip) are researched.

71 Exercise Following accesses are done sequentially into the same cache line of Illinois protocol and Firefly protocol. How the state of each cache line is changed? A: Read B: Read A: Write B: Read B: Write A: Write

72 L2 Private FIQ Lines MPCore (ARM+NEC) It uses MESI Protocol Interrupt Distributor Timer Wdog C interface Timer Wdog C interface Timer Wdog C interface Timer Wdog IRQ IRQ IRQ IRQ C interface C/VFP C/VFP C/VFP C/VFP L1 Memory L1 Memory L1 Memory L1 Memory Private Peripheral Bus Duplicated L1 Tag Control Unit (SCU) Private AXI R/W 64bit Bus Coherence Control Bus

73 Competitive ing CS CS I W Update n times, and then invalidates The performance is degraded in some cases.

74 Write Once (Goodman Protocol) Invalidation C I C D CE W Main memory is updated with invalidation. Only the first written data is transferred to the main memory.

75 Read Broadcast(Berkeley) W US OE US I US I Invalidation is the same as the basic protocol.

76 Read Broadcast OE OS US US I I R Read data is broadcast to other invalidated cache.

77 injection I US US US I I R The same line is injected.

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

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

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

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

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

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

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

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

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

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

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

More information

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

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

サーブレットと 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

今日の予定 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

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

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

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

振込依頼書記入要領 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

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

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

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

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

サンプル. 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

フラクタル 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

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

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

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. SC-02L の SAR / About SAR of SC-02L ( 本語 ) この機種 SC-02L の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライ ンに適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

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

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

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

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

Preparing Information Design-Oriented. Posters. easy to. easy to. See! Understand! easy to. Convey!

Preparing Information Design-Oriented. Posters. easy to. easy to. See! Understand! easy to. Convey! Preparing Information Design-Oriented Posters easy to Convey! easy to See! easy to Understand! Introduction What is the purpose of a presentation? It is to convey accurately what you want to convey to

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

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

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

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

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

Dream the sky. Make it yours.

Dream the sky. Make it yours. Dream the sky. Make it yours. Index Please note this is an interactive (so clickable) guideline. Visual identity Logo Visual elements Imagery Visual identity Logo Visual elements Imagery Visual identity

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

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

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

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

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

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

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

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

マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた 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

楽天株式会社楽天技術研究所 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

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

IPv6 関連 WG の状況 (6man, v6ops, softwire)

IPv6 関連 WG の状況 (6man, v6ops, softwire) 第 88 回 IETF 報告会 IPv6 関連 WG の状況 (6man, v6ops, softwire) 2013 年 12 月 20 日 NECアクセステクニカ株式会社川島正伸 kawashimam vx.jp.nec.com 目次 自己紹介 6man WG v6ops WG softwire WG 最後に 2001:db8:café::2 自己紹介 氏名 : 川島正伸 (Nickname:

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

暗い 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

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939

Peering 101. August 2017 TPF. Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Peering 101 August 2017 TPF Walt Wollny, Director Interconnection Strategy Hurricane Electric AS6939 Who is Walt Wollny? Hurricane Electric AS6939 3 years Director Interconnection Strategy supporting the

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

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

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

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

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

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

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

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

ウウウウ ( お天天 ) ススウスススを作っっっっっ

ウウウウ ( お天天 ) ススウスススを作っっっっっ 概概 Application Note AP0110 (v2.0) February 28, 2008 LCD VGA 1. RS232 2. GSM HTTP 3. HTML CAN RS232 GSM VGA Altium Designer NanoBoard PC A 1:1 1 1 RS232_HTTP_Enabled Weather station #1 Amersfoort Router

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

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~

Chapter 1 Videos Lesson 61 Thrillers are scary ~Reading~ LESSON GOAL: Can read about movies. 映画に関する文章を読めるようになろう Choose the word to match the underlined word. 下線の単語から考えて どんな映画かを言いましょう 1. The (thriller movie, sports video) I watched yesterday was scary. 2. My

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

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

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

https://login.microsoftonline.com/ /oauth2 Protected API Your Client App Your Client App Your Client App Microsoft Account v2.0 endpoint Unified AuthN/Z endpoint Outlook.com (https://login.microsoftonline.com/common/oauth2/v2.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

Industrial Solar Power PoE Switch

Industrial Solar Power PoE Switch Industrial Solar Power Switch の技術や太陽光発電システムの業界をリードする統合ネットワークインストールの需要の増加のためにどこでも 惑星の 産業用太陽光発電の スイッチは現在 理想的なソリューションを提供します ゼロ炭素放出源アトス - 太陽の光 は パルス幅変調 (PWM) 充電コントローラが効果的にソーラーパネルが充電中にバッテリーバンクと同じ電圧で動作するように強制的に組み込まれています

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

アルゴリズムの設計と解析 (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

Autodesk Maya 2013 Extension ( 拡張機能 )

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

More information

Kb xp download. Мобильный портал WAP версия: wap.altmaster.ru

Kb xp download. Мобильный портал WAP версия: wap.altmaster.ru Мобильный портал WAP версия: wap.altmaster.ru Kb932716 xp download Jul 22, 2008. Image Mastering API v2.0 (IMAPIv2.0) for Windows XP x64 Edition (KB932716). Important! Selecting a language below will dynamically

More information

Analysis on the Multi-stakeholder Structure in the IGF Discussions

Analysis on the Multi-stakeholder Structure in the IGF Discussions Voicemail & FAX +1-650-653-2501 +81-3-4496-6014 m-yokozawa@i.kyoto-u.ac.jp http://yokozawa.mois.asia/ Analysis on the Multi-stakeholder Structure in the IGF 2008-2013 Discussions February 22, 2014 Shinnosuke

More information

Infragistics ASP.NET リリースノート

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

More information

Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case

Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case Nonfinancial Reporting Track:03 Providing non-financial information to reporters, analysts and asset managers; the EDINET Case Nomura Research Institute, Ltd. Data Analyst Chie Mitsui Contents for today

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

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

HA8000V シリーズ. Service Pack for HA8000V (SPH) Version Readme. All Rights Reserved. Copyright (c) 2018 Hitachi, Ltd.

HA8000V シリーズ. Service Pack for HA8000V (SPH) Version Readme. All Rights Reserved. Copyright (c) 2018 Hitachi, Ltd. HA8000V シリーズ Service Pack for HA8000V (SPH) Version 4.00 30 Readme 2018 年 7 月 All Rights Reserved. Copyright (c) 2018 Hitachi, Ltd. 1. はじめに このたびは 日立アドバンストサーバ HA8000V シリーズをご利用いただき誠にありがとうございます ご使用になる前に 必ず本内容をご確認ください

More information

Codegate 2014 オンライン予選 Write Up Chrono (Logical) 300

Codegate 2014 オンライン予選 Write Up Chrono (Logical) 300 Codegate 2014 オンライン予選 Write Up Chrono (Logical) 300 ソース : www.blue-lotus.net/2014-02-25-codegate-ctf-quals-2014-chrono-writeup/ 和訳 : 田中ザック 説明 : ssh guest@58.229.183.16 / ExtremelyDangerousGuest ssh guest@58.229.183.16

More information

Apollo-LakeタブレットにUbuntu17.10を Install Ubuntu17.10 on Apollo-Lake Tablet

Apollo-LakeタブレットにUbuntu17.10を Install Ubuntu17.10 on Apollo-Lake Tablet Apollo-LakeタブレットにUbuntu17.10を Install Ubuntu17.10 on Apollo-Lake Tablet 1 自己紹介 Self introduction 2 Apollo-Lake Tablet 3 UEFI概要とNVRAMおさらい UEFI and NVRAM 4 refind概要 5 Apollo-LakeへUbuntuインストール Ubuntu17.10

More information

Specification Sheet for Network Upgrade for Data Center and Research

Specification Sheet for Network Upgrade for Data Center and Research Specification Sheet for Network Upgrade for Data Center and Research (1)General Information Network Switches and devices to support OIST researchers and admin staff, including: Additional Nexus to facilitate

More information

OPTICAL TALK SET 光トークセット MODEL 415/430/450/450XL INSTRUCTION MANUAL 取扱説明書

OPTICAL TALK SET 光トークセット MODEL 415/430/450/450XL INSTRUCTION MANUAL 取扱説明書 OPTICAL TALK SET 光トークセット MODEL 415/430/450/450XL INSTRUCTION MANUAL 取扱説明書 HR1028-13J-11/110906 ** TABLE OF CONTENTS ** 1. GENERAL INFORMATION 1 2. SPECIFICATIONS 1 3. OPERATING INSTRUCTIONS 2 3-1. Descriptions

More information

びんぼうでいいの による LCD シールド aitendo UL024TF のオシロスコープモード試験

びんぼうでいいの による LCD シールド aitendo UL024TF のオシロスコープモード試験 びんぼうでいいの による LCD シールド aitendo UL024TF のオシロスコープモード試験 2016.7.7 試験信号 :50Hz, 4Vp-p,Offset=2V nf=wf1973 ファンクションジェネレータ 100Hz が限界周波数 Aitendo UL024TF 2.4 吋 (240x320) aitendou http://www.aitendo.com/product/10471

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

Effects of Aging and Visual Acuity on the Legible Point Size for a Single Character on an E-paper Display 電子ペーパーディスプレイの単一文字の読み取れるポイントサイズに対する加齢と視力の影響

Effects of Aging and Visual Acuity on the Legible Point Size for a Single Character on an E-paper Display 電子ペーパーディスプレイの単一文字の読み取れるポイントサイズに対する加齢と視力の影響 原著 Effects of Aging and Visual Acuity on the Legible Point Size for a Single Character on an E-paper Display 電子ペーパーディスプレイの単一文字の読み取れるポイントサイズに対する加齢と視力の影響 R. Paul Lege 1), Nobuhiro Ishio 2), Ichizo Morita

More information

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K.

Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS. Brocade Communications Systems, K.K. Interdomain Routing Security Workshop 21 BGP, 4 Bytes AS Ken ichiro Hashimoto Brocade Communications Systems, K.K. September, 14 th, 2009 BGP Malformed AS_PATH そもそもうちは as0 を出せるのか? NetIron MLX-4 Router(config-bgp)#router

More information

Modern editor-independent development environment for PHP

Modern editor-independent development environment for PHP エディタ中立な PHP 開発環境の現在 Modern editor-independent development environment for PHP 2018-11-23 Akiba Tokyo, Japan VimConf 2018 #vimconf 日本語でおk 筆者の英語は残念なので 発表済みの日本語資料を 先に読むことをおすすめ Who am I...? aka @tadsan Kenta

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

さまざまなニーズにお応えできるラインナップ!

さまざまなニーズにお応えできるラインナップ! さまざまなニーズにお応えできるラインナップ! The Line-up that meets your various needs! 永い歴史を有する エレクトロニクス通信の沖電気 の豊富な経験と技術をベースに 一貫して船内通信分野に 多種多用途の電話機 自動 共電 バッテリーレス式及び各種の防爆型 を供給し続けております Based on a wide spectrum of experience

More information

Project to Transfer Mission-critical System of Banks to Private Cloud

Project to Transfer Mission-critical System of Banks to Private Cloud Project to Transfer Mission-critical System of Banks to Private Cloud 倉田明憲 あらまし BCP Business Continuity Planning BCP DBMS Database Management System Abstract In post-2011-earthquake Japan, there is a heightened

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

Book Template. GGerry.

Book Template. GGerry. by GGerry GGerry@users.noreply.github.com 2017 10 19 DISCLAIMER This document and the information contained herein is provided on an As Is basis and the author disclaims all warranties, express or implied,

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

Structured Report Implement rev2.1. Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20

Structured Report Implement rev2.1. Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20 Structured Report Implement rev2.1 Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20 Contents SINR IHE Profile レポート系プロファイル SINR-Diagram SINR Actors

More information

Clinical Data Acquisition Standards Harmonization (CDASH)

Clinical Data Acquisition Standards Harmonization (CDASH) Revision History Clinical Data Acquisition Standards Harmonization (CDASH) Prepared by: CDISC CDASH Core and Domain Teams Document Number Release Date Updates Initial release Note: See 7.7 Representations

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

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