在dc家族系列中,DC_V,DC_E为基本的DC(Design Compiler)工具,具有dc所具备的基本fearture,DC在synopys工具系列中位置,举足轻重,也是业界使用最广泛的综合工具,相比candence的RC(RTL compiler)有更大的客户群。进入到亚微米工艺下,DCT/ ...
分类:
其他好文 时间:
2020-05-01 10:22:47
阅读次数:
895
问题描述 antd: 4.2.0, react: 16.13.1 Modal 中使用 Form ,使用 React Hooks const [form] = Form.useForm(); 创建实例时,会出现以下警告。 原因 Modal 挂载的 HTML 节点默认为 document.body,页面 ...
分类:
其他好文 时间:
2020-05-01 01:13:12
阅读次数:
734
Scanner 2019年4月25日 11:07 HasNextInt(); 获取指定int类型的数据,如果数据正确则返回true否则返回false。 HasNextDouble(); 获取指定Double类型的数据,如果数据正确则返回true否则返回false。 HasNextString(); ... ...
分类:
编程语言 时间:
2020-05-01 00:48:47
阅读次数:
75
import org.apache.commons.lang3.StringUtils; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * Created by */ public class RegexUti ...
分类:
移动开发 时间:
2020-04-30 21:17:37
阅读次数:
73
1. 基本使用: 输出 #re #pattern = re.compile() #生成pattern对象#pattern.match #pattern.search#pattern.find str1 = "itest python" pa = re.compile(r"itest")#加r代表是原 ...
分类:
编程语言 时间:
2020-04-30 21:14:33
阅读次数:
71
迭代器模式 迭代器模式(Iterator Pattern)是 Java 和 .Net 编程环境中非常常用的设计模式。 这种模式用于顺序访问集合对象的元素,不需要知道集合对象的底层表示。 迭代器模式属于行为型模式。 TS版本: 介绍 意图:提供一种方法顺序访问一个聚合对象中各个元素, 而又无须暴露该对 ...
分类:
其他好文 时间:
2020-04-30 19:36:42
阅读次数:
55
https://shapeshifter.design/ https://www.jianshu.com/p/6ded490b5961 ...
分类:
移动开发 时间:
2020-04-30 19:01:28
阅读次数:
74
board:zcu106 tool: vivado 2019.2 vitis 2019.2 petalinux 2019.2 doc:PG252 UG1209 ref:http://www.zynqnotes.com/a-simple-vcu-design ref:https://xilinx-wi ...
分类:
其他好文 时间:
2020-04-30 17:06:33
阅读次数:
93
原始语句: INSERT INTO mail_send ( createTime, updateTime, flag, accountId, messageID, sender, senderName, fromer, replyTo, toer, ccer, bccer, SUBJECT, tex ...
分类:
其他好文 时间:
2020-04-30 15:34:27
阅读次数:
64
Proxy Pattern 代理模式 The proxy pattern provides an object that controls access to another object, intercepting all calls. 代理模式提供一个对象,该对象控制对另一个对象的访问,拦截所有 ...
分类:
编程语言 时间:
2020-04-30 15:33:57
阅读次数:
78