Triggered buffer support触发缓冲支持 在许多数据分析应用中,能够基于某些外部信号(触发器)捕获数据是比较有用的。 这些触发器可能是: 数据就绪信号 连接到某个外部系统的IRQ线路(GPIO或其他) 处理器周期性中断 用户空间在sysfs中读/写特定文件 数据就绪信号 连接到某 ...
分类:
系统相关 时间:
2019-04-23 21:17:26
阅读次数:
223
int(x [,base ]) 将x转换为一个整数 long(x [,base ]) 将x转换为一个长整数 float(x ) 将x转换到一个浮点数 complex(real [,imag ]) 创建一个复数 str(x ) 将对象 x 转换为字符串 repr(x ) 将对象 x 转换为表达式字符串 ...
分类:
编程语言 时间:
2019-04-22 21:17:57
阅读次数:
183
LVS + Keepalived 方案,基于DR模式的。参考文章如下: youzhibing2904,《主从热备+负载均衡(LVS + keepalived)》lvshaorong,《Keepalived实现NAT+LVS+后端健康检测》 结构图如下: 一、配置网络 Tomcat-1: 192.16 ...
分类:
其他好文 时间:
2019-04-19 18:10:32
阅读次数:
201
页面全部提示404,nginx平台下需要额外配置yii rewrite规则,配置如下: 在nginx 的配置文件nginx.conf //增加部分 location / { # Redirect everything that isn't a real file to index.php try_f... ...
分类:
其他好文 时间:
2019-04-19 11:47:06
阅读次数:
164
#include using namespace std; class Complex { private: double real,imag; public: Complex(double r=0,double i=0):real(r),imag(i){} operator double(){re... ...
分类:
其他好文 时间:
2019-04-18 20:17:59
阅读次数:
108
下载IIS扩展 1.URL Rewrite 地址: https://www.iis.net/downloads/microsoft/url rewrite 2.Application Request Routing 地址:https://www.iis.net/downloads/microsoft ...
分类:
其他好文 时间:
2019-04-17 18:17:34
阅读次数:
258
#负责压缩数据流gzip on; gzip_min_length 1000; gzip_types text/plain text/css application/x-javascript; #设定负载均衡的服务器列表#weigth参数表示权值,权值越高被分配到的几率越大upstream hello ...
分类:
其他好文 时间:
2019-04-15 14:47:14
阅读次数:
136
Unity3D×××游戏完整源码GIRacing2http://www.idoubi.net/unity3d/complete-project/3570.htmlUnity3D街机几何跳跃完整游戏源码GeometryJumphttp://www.idoubi.net/unity3d/complete-project/3561.htmlUnity3DQ版糖果消消乐完整源码CandyMatch3Kitv
分类:
编程语言 时间:
2019-04-13 23:47:54
阅读次数:
724
CMS全称?ConcurrentMarkSweep,是一款并发的、使用标记 清除算法的垃圾回收器, 如果老年代使用CMS垃圾回收器,需要添加虚拟机参数 “XX:+UseConcMarkSweepGC” 缺点: 1. CMS收集器对CPU资源非常敏感,在并发阶段,它虽然不会导致用户线程停顿,但是由于占 ...
分类:
其他好文 时间:
2019-04-13 01:21:45
阅读次数:
302
Deep Learning for Event-Driven Stock Prediction Reading time:2019/3/30-2019/4/12 Theme:Deep learning; CNN; NLP Abstract: We propose a deep learning me ...
分类:
其他好文 时间:
2019-04-12 20:45:16
阅读次数:
844