【模板整合计划】一些好玩的函数 之前闲得无聊用 $C++$ 写了几个~~小游戏~~,在这期间学了一些 $windows.h$ 里的函数。。。 (以下函数若无特殊说明均需要使用函数库 或者万能头 ) 【 clock ( ) , CLOCKS _ PER _ SEC 】 头文件: 功能: $clock( ...
分类:
其他好文 时间:
2019-05-27 13:35:44
阅读次数:
120
一,拓扑 二,配置 R1配置: R1#conf t R1(config)#int s0/0 R1(config-if)#ip add 192.168.12.1255.255.255.0 R1(config-if)#clock rate 64000 R1(config-if)#ip router is ...
分类:
其他好文 时间:
2019-05-25 22:49:07
阅读次数:
167
带参数的装饰器 先来看一个不带参数的装饰器 这里打印出来的是执行sleep函数所消耗的自然时间,但在执行此函数时所消耗的cpu时间真的有3.0034420490264893秒吗?当然不是。利用time包中的time.clock方法可以计算得到代码执行所消耗cpu的时间,那怎样来修改上边的timeit ...
分类:
编程语言 时间:
2019-05-25 12:33:19
阅读次数:
91
“The Initiation Interval, often called the Interval or the II, is the number of clock cycles between when the task can start to accept new input data” ...
分类:
其他好文 时间:
2019-05-24 10:49:56
阅读次数:
174
't have scope to measure clock rate, but you still can give it a try. please follow up https://tinkerboarding.co.uk/wiki/index....are#Kernel to downlo ...
分类:
其他好文 时间:
2019-05-18 09:55:38
阅读次数:
294
画布提供了一种可以创建圆的方法 arc(x, y, r, s, e, counterclockwise) x,y:圆心 r:圆的半径 s:起始弧度 (0) e:终止弧度 (1.5 * Math.PI) counterclockwise:弧度的方向是否是逆时针 原图 截取之后的图 首先确定图片位置x和 ...
分类:
微信 时间:
2019-05-16 12:39:11
阅读次数:
280
在统计python代码 执行速度时要使用到time包,在查找相关函数时有time.time()和time.clock()两个函数可供选择。而两者是有区别的: cpu 的运行机制:cpu是多任务的,例如在多进程的执行过程中,一段时间内会有对各进程被处理。一个进程从开始到结束其实是在这期间的一些列时间片 ...
分类:
编程语言 时间:
2019-05-15 00:43:50
阅读次数:
348
现场: 疑点:u8_PwmChannel 0x04 对应的clock为0 问题:1. Pwm_gs_PwmChannels value right? 2. Pwm_gs_PwmChannels[PWM_CLOCK_A_CH_23] ...
分类:
其他好文 时间:
2019-05-14 09:24:17
阅读次数:
114
Check the size (as in disk space) of all databases: SELECT d.datname AS Name, pg_catalog.pg_get_userbyid(d.datdba) AS Owner, CASE WHEN pg_catalog.has_ ...
分类:
数据库 时间:
2019-05-13 11:02:41
阅读次数:
120
一、sdhci pltfm说明 sdhci pltfm并不是实际某个host的driver。 sdhci pltfm是指在sdhci core的基础上,提供了统一对sdhci_host的必要属性进行解析和设置的方法。 但是,对于sdhci类的host driver来说,使用sdhci pltfm并不 ...
分类:
其他好文 时间:
2019-05-06 10:34:18
阅读次数:
131