码迷,mamicode.com
首页 >  
搜索关键字:usage report    ( 3968个结果
UVM基础之---------Reporting Classes
Reporting 类提供了一组工具用于格式化报告输出report机制大概包括四个主要的类uvm_report_object,uvm_report_handler, uvm_report_server,uvm_report_catcher,UVM reporting主要的接口是uvm_report_...
分类:其他好文   时间:2014-07-30 00:34:22    阅读次数:1088
UVM基础之---------uvm report 机制分析
uvm 中的信息报告机制相对来说比较简单,功能上来说主要分为两部分:第一通过ID对component的信息报告冗余级别进行控制,针对每个冗余级别进行不同的行为控制。这部分工作主要由uvm_report_hander来实现: 主要涉及到的方法有get_report_verbosity_level(se...
分类:其他好文   时间:2014-07-30 00:26:02    阅读次数:1421
SHELL脚本--用于检测一个或者多个对象是文件或者目录
#!/bin/bash # #Judgingtheelementisafileorafolder if[$#-lt1];then echo"ERROE!!Usage:ckfile.shARGS1[ARGS2...]" exit4 fi foriin`seq1$#` do if[-f$1];then echo$1isacommomfile elif[-d$1];then echo$1isadirectory else echo"$1isnotexsitorunknown!" fi shift done知识..
分类:其他好文   时间:2014-07-29 16:01:19    阅读次数:184
【DataStructure】The description and usage of Stack
A stack is collection that implements the last-in-first-out protocal.This means that the only access object in the collections is the last one thatwas inserted.The fundamental  operations of a stack a...
分类:其他好文   时间:2014-07-29 14:53:28    阅读次数:218
Crystal Report在.net中的两种显示方式
Crystal Report在.net中的两种显示方式编写人:CC阿爸2014-7-29近来在完成深圳一公司的项目,对方对各方面要求相当严格,一不满意就拒绝签收,为了对修正水晶报表显示及导出的一些小问题,无赖之下,仔细了解一下水晶报表的操作方法,逼苦我们这些苦逼的程序,虽说在以前的项目中,也常使用c...
分类:Web程序   时间:2014-07-29 13:54:48    阅读次数:306
OZ Report ?? ??? ??
//这只单元格数据颜色if( (int)getattr("caption") > 100) setattr("bgcolor", "$0,0,255");else if ((int)getattr("caption") < 100) setattr("bgcolor", "$255,0,0");el...
分类:其他好文   时间:2014-07-29 12:41:46    阅读次数:255
LeetCode "First Missing Positive"
Similar with "Longest Consecutive Sequence". Another usage to hashset.Take care of corner cases!class Solution {public: int firstMissingPositive(in...
分类:其他好文   时间:2014-07-28 15:16:43    阅读次数:206
LeetCode "Clone Graph"
A BFS usage.class Solution {public: UndirectedGraphNode *cloneGraph(UndirectedGraphNode *node) { if (!node) return NULL; UndirectedGr...
分类:其他好文   时间:2014-07-28 15:07:53    阅读次数:266
adb shell am 的用法
adb shell am使用此命令可以从cmd控制台启动 activity, services;发送 broadcast等等: 1 C:\Users\Administrator>adb shell am 2 usage: am [subcommand] [options] 3 4 star...
分类:数据库   时间:2014-07-28 11:31:50    阅读次数:452
Gartner:Hype Cycle for Emerging Technologies-2013
The “Hype Cycle for Emerging Technologies” report is the longest-running annual Hype Cycle, providing a cross-industry perspective on the technologies...
分类:其他好文   时间:2014-07-27 11:00:12    阅读次数:290
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!