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

Size: px
Start display at page:

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

Transcription

1 NI TestStand TM I: Introduction Course Manual Course Software Version 4.1 February 2009 Edition Part Number A-01 NI TestStand I: Introduction Course Manual Copyright 2009 National Instruments Corporation. All rights reserved. Under the copyright laws, this publication may not be reproduced or transmitted in any form, electronic or mechanical, including photocopying, recording, storing in an information retrieval system, or translating, in whole or in part, without the prior written consent of National Instruments Corporation. National Instruments respects the intellectual property of others, and we ask our users to do the same. NI software is protected by copyright and other intellectual property laws. Where NI software may be used to reproduce software or other materials belonging to others, you may use NI software only to reproduce materials that you may reproduce in accordance with the terms of any applicable license or other legal restriction. Trademarks National Instruments, NI, ni.com, NI TestStand, and LabVIEW are trademarks of National Instruments Corporation. Refer to the Terms of Use section on ni.com/legal for more information about National Instruments trademarks. Other product and company names mentioned herein are trademarks or trade names of their respective companies. Members of the National Instruments Alliance Partner Program are business entities independent from National Instruments and have no agency, partnership, or joint-venture relationship with National Instruments. Patents For patents covering National Instruments products/technology, refer to the appropriate location: Help»Patents in your software, the patents.txt file on your media, or the National Instruments Patent Notice at ni.com/legal/patents.

2 Contents Student Guide A. NI Certification...vii B. Course Description...vii C. What You Need to Get Started...viii D. Installing the Course Software...ix E. TestStand Directories...ix F. Course Goals...x G. Course Conventions...x Lesson 1 Introduction to Testing A. Types of Tests B. Automated Testing C. Test System Terminology D. Components of an Automated Test System E. Testing Roles F. Test System Development Process G. Covering and Tracking Requirements Lesson 2 Introduction to TestStand A. Role of Test Management Software B. TestStand Terminology C. TestStand Components D. Using the TestStand Sequence Editor E. TestStand Execution Architecture Lesson 3 Analyzing Sequences A. Debugging and Diagnostics B. Informational Tools Lesson 4 Creating Sequences A. Overview B. Creating Steps C. Code Modules D. Subsequences E. Sequence Properties F. Sequence File Properties National Instruments Corporation iii NI TestStand I: Introduction Course Manual

3 Contents Lesson 5 Managing Data A. TestStand Data Layout B. Expressions C. Custom Data Types D. Variables E. Importing and Exporting Properties Lesson 6 Overriding Callbacks A. Callbacks B. Process Model Callbacks C. Engine Callbacks Lesson 7 Configuring TestStand A. Station Options B. Adapter Configuration C. Edit Search Directories D. Report Options E. Database Options Lesson 8 Executing Tests in Parallel A. Multi-UUT Testing B. Multithreading C. Executing Sequences in New Threads D. Multithreaded Process Models E. Multithreading Caveats F. Synchronization Step Types Lesson 9 Best Practices for Test Development A. Creating Modular Test Systems B. Using Appropriate Data Scope C. Using Setup and Cleanup Groups D. Handling Non-Product-Specific Operations E. Documenting Test Systems F. Additional Resources NI TestStand I: Introduction Course Manual iv ni.com

4 Contents Lesson 10 User Management A. TestStand User Management B. User Groups C. Privileges D. Synchronizing with Other User Management Systems Lesson 11 Deploying a Test System A. Introduction to Deployment B. Deployment Considerations C. Deployment Process D. Common Deployment Scenarios Appendix A Additional Information and Resources Course Evaluation National Instruments Corporation v NI TestStand I: Introduction Course Manual

5

6 A. Callbacks Callbacks are optional sequences that allow you to perform actions when certain events occur. The process model and TestStand Engine both define callbacks. Each callback corresponds to a certain point in the execution of a process model or to a certain event that can occur when the TestStand Engine performs operations. For each callback, the process model or TestStand Engine contains a default sequence to execute, although, in many cases, the default sequence is empty. The process model or sequence file can override the default sequence and replace the default actions. Process models override engine callbacks, and sequence files can override process model callbacks or engine callbacks.

7 Callbacks Creating a Callback Sequence Each sequence file can include sequences that override callbacks. To override a callback within a sequence file, open the sequence file, right-click in the Sequences pane and select Sequence File Callbacks. Select a callback from the available list and click Add. You can also edit or delete existing callbacks. Process model sequence files can also override callbacks. Refer to the NI TestStand II: Customization course for more information about modifying process model sequence files.

8 B. Process Model Callbacks Process models define process model callbacks, which are sequences that you call as steps in an entry point sequence. You can customize a process model to add new process model callbacks. Client sequence files can override process model callbacks. Examples of process model callbacks in the default SequentialModel process model are MainSequence, PreUUT, and TestReport. Some process model callbacks have default actions associated with them. For example, the TestReport callback generates a report for the test. Overriding a callback that includes default actions disables the default action. For example, if you override the TestReport callback, the SequentialModel generates a test report only if the overridden version of the callback contains the code to do so. Other callbacks do not have default code associated with them. For example, you can override the PreUUT callback to add steps that the process model executes each time a UUT is tested before prompting for the UUT serial number. Another example is the MainSequence callback, which most client sequence files override to define the basic behavior of the test routine.

9 Process Model and Callbacks Consider two separate client sequence files, Client #1 and Client #2, that use the same process model. Client #1 contains code that reads a serial number from a database, and Client #2 uses the default PreUUT callback that prompts the user to enter the serial number. Client #2 does not display the Pass/Fail banner of the default PostUUT callback, but Client #1 does. Instead of creating two separate process models for each client sequence file, you can use callbacks to implement the unique requirements of each client and use the same process model for the client sequence files. When execution of Client #1 begins, the process model detects that there are two callback sequences within the sequence file PreUUT and MainSequence. When the process model reaches these callbacks, it executes the callback of the client file instead of the callback sequence that the process model defines. Therefore, the default code that displays a serial number dialog box does not appear. Instead, TestStand executes the code contained in the callback. A Pass/Fail banner displays because Client #1 does not override the PostUUT Callback. When execution of Client #2 begins, the process model detects that there are two callback sequences within the client sequence file PostUUT and MainSequence. When the process model reaches these callbacks, it executes the callback of the client sequence file instead of the callback sequence that is defined in the process model. Therefore, the default code that displays the Pass/Fail banner dialog box does not appear. Instead, the code contained in the PostUUT callback executes. Because Client #2 does not override the PreUUT Callback, the user is prompted to enter a serial number.

10 Contents Lesson 5 Managing Data A. TestStand Data Layout B. Expressions C. Custom Data Types D. Variables E. Importing and Exporting Properties Lesson 6 Overriding Callbacks A. Callbacks B. Process Model Callbacks C. Engine Callbacks Lesson 7 Configuring TestStand A. Station Options B. Adapter Configuration C. Edit Search Directories D. Report Options E. Database Options Lesson 8 Executing Tests in Parallel A. Multi-UUT Testing B. Multithreading C. Executing Sequences in New Threads D. Multithreaded Process Models E. Multithreading Caveats F. Synchronization Step Types Lesson 9 Best Practices for Test Development A. Creating Modular Test Systems B. Using Appropriate Data Scope C. Using Setup and Cleanup Groups D. Handling Non-Product-Specific Operations E. Documenting Test Systems F. Additional Resources NI TestStand I: Introduction Course Manual iv ni.com/ja

11 Contents Contents Lesson 5 ナショナルインスツルメンツのトレーニングコース Managing Data Lesson A. 5 TestStand Data ナショナルインスツルメンツでは Layout LabVIEW ユーザのためのトレーニングコー Managing B. Expressions Data A. C. TestStand Custom Data Data Types Layout B. D. Expressions Variables C. E. Custom Importing Data and Types Exporting Properties ナシ D. Variables ョナルイ ンスツルメンツの認定プログラム Lesson E. 6 Importing and Exporting Properties Overriding Callbacks NI 認定資格は NI 製品および技術に関する専門性を認定するものです 計測 Lesson A. 6 Callbacks Overriding B. Process Callbacks Model Callbacks A. C. Callbacks Engine なお LabVIEW 認定試験の詳細については ni.com/jp/training を参照し B. Process Model てください Callbacks Lesson C. 7 Engine Callbacks Configuring LabVIEW TestStand リソース Lesson A. 7 Station Options このセクションでは LabVIEW に関する上記以外の情報源をご紹介します Configuring B. Adapter TestStand Configuration A. C. Station Edit Search Options Directories LabVIEW B. D. Adapter Report 関連の出版物 Options Configuration C. E. Edit Database Search Options LabVIEW Directories 関連書籍 D. Report Options LabVIEW プログラミングおよびアプリケーションに関する書籍は数多く出版さ Lesson E. 8 Database Options れています ナショナルインスツルメンツのウェブサイトには LabVIEW に関 Executing Tests in Parallel Lesson A. 8 Multi-UUT Testing Executing B. Multithreading Tests in Parallel A. C. Multi-UUT Executing Sequences Testing in New Threads B. D. Multithreading Multithreaded Process Models C. E. Executing Multithreading Sequences Caveats in New Threads D. F. Multithreaded Synchronization Process Step Types Models E. Multithreading Caveats Lesson F. 9 Synchronization Step Types Best Practices for Test Development Lesson A. 9 Creating Modular Test Systems Best Practices B. Using for Appropriate Test Development Data Scope A. C. Creating Using Setup Modular and Cleanup Test Systems Groups B. D. Using Handling Appropriate Non-Product-Specific Data Scope Operations C. E. Using Documenting Setup and Test Cleanup Systems Groups D. F. Handling Additional Non-Product-Specific Resources Operations E. Documenting Test Systems F. Additional Resources スを多数実施しています 今回受講されたトレーニングの次のコースや 他の分 野を扱うコースもご用意しています コーステキストのご購入や 講師によるト レーニングのお申し込みについては ni.com/jp/training をご覧ください オートメーション業界において NI 認定資格は当該分野における経験やスキル 知識の証として 雇用主 クライアント 同僚により高く評価されるものです する書籍の一覧と これらの本を購入できるサイトへのリンクがあります 詳細 は をご覧ください NI TestStand I: Introduction Course Manual iv ni.com/ja NI TestStand I: Introduction Course Manual iv ni.com/ja

携帯電話の 吸収率 (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

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

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

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

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

本書について... 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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

~ ソフトウエア認証への取り組みと課題 ~ 第 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

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

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

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

Denso Lexus GS250 TCU Teardown

Denso Lexus GS250 TCU Teardown Denso Lexus GS250 TCU Teardown FEATURES: Telematics Control Unit CDMA Cypress MB91F577BH, 32-bit, 80MHz Techno Solutions Manufacturer Denso Model Number 86741-53045 Carrier - Assembled in unknown Retail

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

CA PRIMERGY. ファイバーチャネルスイッチブレード (8Gbps 18/8) (PG-FCS104) Web Tools リファレンスガイド. Fabric OS v6.2.0

CA PRIMERGY. ファイバーチャネルスイッチブレード (8Gbps 18/8) (PG-FCS104) Web Tools リファレンスガイド. Fabric OS v6.2.0 PRIMERGY ファイバーチャネルスイッチブレード (8Gbps 18/8) (PG-FCS104) CA92276-8600-01 Web Tools リファレンスガイド Fabric OS v6.2.0 本書をお読みになる前に 外国為替及び外国貿易法に基づく特定技術について 当社のドキュメントには 外国為替および外国貿易管理法 に基づく特定技術が含まれていることがあります 特定技術が含まれている場合は

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

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

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

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

Emporio Armani Replica Handbags Fake Watches

Emporio Armani Replica Handbags Fake Watches Emporio Armani Replica Handbags Fake Watches 1 / 6 2 / 6 3 / 6 Emporio Armani Replica Handbags Fake Our Replica Designer Handbags, fake watches and accessories collections are vast and discerning at the

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

高速鉄道に関する日本国政府とインド共和国政府との間の協力覚書 日本国政府及びインド共和国政府 ( 以下 両者 という ) は ムンバイ アーメダバード間高速鉄道路線 (MAHSR) に関する共同調査の 成功裡の完了に留意し MAHSR の整備に協力することについて 次のとおり確認した

高速鉄道に関する日本国政府とインド共和国政府との間の協力覚書 日本国政府及びインド共和国政府 ( 以下 両者 という ) は ムンバイ アーメダバード間高速鉄道路線 (MAHSR) に関する共同調査の 成功裡の完了に留意し MAHSR の整備に協力することについて 次のとおり確認した 高速鉄道に関する日本国政府とインド共和国政府との間の協力覚書 日本国政府及びインド共和国政府 ( 以下 両者 という ) は 鉄道分野における二国間協力を強化することを希望し ムンバイ アーメダバード間高速鉄道路線 (MAHSR) に関する共同調査の 成功裡の完了に留意し 2015 年 12 月 12 日の安倍内閣総理大臣及びモディ首相による首脳会談及び同日 に発出された共同声明を踏まえ MAHSR

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

TS-M2M-0008v onem2m 技術仕様書サービス層 API 仕様 (CoAP 用 )

TS-M2M-0008v onem2m 技術仕様書サービス層 API 仕様 (CoAP 用 ) TS-M2M-0008v1.0.1 onem2m 技術仕様書サービス層 API 仕様 (CoAP 用 ) onem2m Technical Specification CoAP Protocol Binding 2015 年 3 月 16 日制定 一般社団法人情報通信技術委員会 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE 本書は 一般社団法人情報通信技術委員会が著作権を保有しています

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

(Lexus GS250 用 ) ティアダウン

(Lexus GS250 用 ) ティアダウン デンソー製テレマコントロールユニット (Lexus GS250 用 ) ティアダウン 製品の特徴 : Telematics Control Unit CDMA Cypress MB91F577BH, 32-bit, 80MHz Techno Solutions Manufacturer Denso Model Number 86741-53045 Carrier - Assembled in unknown

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

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

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

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

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

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.  1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

More information

4M Change Notice. NTC Lead type for Temperature Sensor : NXR Series

4M Change Notice. NTC Lead type for Temperature Sensor : NXR Series Date: Section: Name: Document Receipt Acknowledgement Attention: MOUSER/MANSFIELD/TX/HQ Document No.: E2Z1-N24C-A2102 Date; Sep.,29,2017 4M Change Notice NTC Lead type for Temperature Sensor : NXR Series

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

present on a local docker container to Kong. This special event is open only to Cisco Customers and Partners. This project contains sample code to be

present on a local docker container to Kong. This special event is open only to Cisco Customers and Partners. This project contains sample code to be Uccx rest api Anthony Holloway Please use the star ratings to help drive great content to the top of searches. First, Why are you using the Create File Document and Cache Document steps? If you simply

More information

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.   1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

More information

4M Change Notice NTC Lead type for Temperature Sensor : NXR Series

4M Change Notice NTC Lead type for Temperature Sensor : NXR Series Date: Section: Name: Attention: TTI Document Receipt Acknowledgement Document No.: E2Z1-N24C-D7300 Date; Sep.,29,2017 4M Change Notice NTC Lead type for Temperature Sensor : NXR Series Dear. Valued Customer

More information

Audi Virtual Cockpit Teardown

Audi Virtual Cockpit Teardown Audi Virtual Cockpit Teardown FEATURES: Virtual Cockpit NVIDIA Tegra 3, 4-core 1.4GHz 12.3-inch 1440 x 540 IPS LCD Techno Solutions Manufacturer Bosch Model Number Audi FPK gen1 Carrier - Assembled in

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

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

Infragistics ASP.NET リリースノート

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

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

船舶保安システムのセルフチェックリスト. Record No. Name of Ship 船名 flag 国籍 Name of Company 会社名 Date 点検日 Place 場所 Checked by 担当者名. MS-SELF-CHK-SHIP-j (2012.

船舶保安システムのセルフチェックリスト. Record No. Name of Ship 船名 flag 国籍 Name of Company 会社名 Date 点検日 Place 場所 Checked by 担当者名. MS-SELF-CHK-SHIP-j (2012. 船舶保安システムのセルフチェックリスト Record No. Name of Ship 船名 flag 国籍 Name of Company 会社名 Date 点検日 Place 場所 Checked by 担当者名 Is a copy of valid DOC and a valid SMC placed onboard the ship? 有効な DOC の写し及び SMC は備え置かれているか

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

2018 年 2 月 16 日 インテル株式会社

2018 年 2 月 16 日 インテル株式会社 2018 年 2 月 16 日 インテル株式会社 HPC 事業開発マネージャ 矢澤克巳 HPC Trends Exascale Computing Artificial Intelligence Workflow Convergence 2 Intel Scalable System Framework for HPC Modeling & Simulation HPC Data Analytics

More information

Introduction to Optical Prisms

Introduction to Optical Prisms Edmund Optics は当社ウェブサイトの技術サービス機能最適化のため 自社並びに第三者のクッキーを使用します 当社クッキーの取り扱いについて スプリングセール : 在庫処分品や再認証品全品が全て 50% 引き 買い物を始める 検索ワード or 商品コード ( 商品コード検索時は # を含めずに半角でご入力ください ) (+81) 03 3944 6210 製品対応力技術資料企業情報お問い合わせ

More information

AXIS T W Splitter 12/24 V DC

AXIS T W Splitter 12/24 V DC Installation Guide Legal Considerations Video and audio surveillance can be regulated by laws that vary from country to country. Check the laws in your local region before using this product for surveillance

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

JCCT U.S.-China Cloud Computing Seminar

JCCT U.S.-China Cloud Computing Seminar JCCT U.S.-China Cloud Computing Seminar Organized by the JCCT Information Industry Working Group (IIWG) 概要 2012 年 5 月 3 日 JEITA 北京事務所陳明曦 中国工業信息化部 (MIIT) と米国商務省 (U.S Department of Commerce) が共同主催する米中クラウドコンピューティングフォーラムは

More information

2017 年 12 月 14 日 インテル株式会社

2017 年 12 月 14 日 インテル株式会社 2017 年 12 月 14 日 インテル株式会社 HPC 事業開発マネージャ 矢澤克巳 HPC Trends Exascale Computing Artificial Intelligence Workflow Convergence 2 Intel Scalable System Framework for HPC Modeling & Simulation HPC Data Analytics

More information

ビジネス情報の検索 : 議論の探索と専門家の探索

ビジネス情報の検索 : 議論の探索と専門家の探索 ビジネス情報の検索 : 議論の探索と専門家の探索 Research on Enterprise Search: Discussion Search and Expert Search ガンメイヨウ * ヤオジエル * ガンリ * ユエヤンイン * Ganmei YOU Yaojie LU Gang LI Yueyan YIN 要旨本論文は, ビジネス情報における議論に関する探索と専門家の探索に関する新規な知見を述べている

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

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

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

ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ

ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ Android ポータブルメディア機器向けプロセッサ フォトフレーム向けメディアプロセッサ Dual プロセッサ構造による 低消費電力 & 高性能 の両立 データ処理 (ARM11) と 音声 動画像の圧縮 伸張処理 (DSP あるいは専用 HW) が同時実行できる 各々の処理の切り替え等によるオーバーヘッドがない 動作周波数を低く抑えられるため 低消費電力プロセスの適用が可能となる 高度な低消費電力化の仕組み

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

TS-M2M-0007v onem2m Technical Specification Service Components

TS-M2M-0007v onem2m Technical Specification Service Components TS-M2M-0007v2.0.0 onem2m 技術仕様書サービスコンポーネント onem2m Technical Specification Service Components 2016 年 11 月 30 日制定 一般社団法人 情報通信技術委員会 THE TELECOMMUNICATION TECHNOLOGY COMMITTEE 本書は 一般社団法人情報通信技術委員会が著作権を保有しています

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

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

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

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

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

More information

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.   1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

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

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

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

ハードウェア製品の営業活動終了 : IBM Power システム モデル アップグレード 関連付けられているフィーチャーおよびフィーチャー コンバージョン

ハードウェア製品の営業活動終了 : IBM Power システム モデル アップグレード 関連付けられているフィーチャーおよびフィーチャー コンバージョン IBM Japan Withdrawal Announcement JG15-0045, dated February 24, 2015 ハードウェア製品の営業活動終了 : IBM Power システム モデル アップグレード 関連付けられているフィーチャーおよびフィーチャー コンバージョン レターの一部は 英語で記載されています Table of contents 24 AP distribution

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