查看当前编译 nginx -V 增加 --with-http_stub_status_module 监控nginx状态 进入我们之前的解压包路径 ./configure --prefix=/data/nginx --with-stream --with-http_stub_status_module ...
分类:
其他好文 时间:
2020-06-24 11:48:29
阅读次数:
61
泊松分布泊松分布适用于在随机时间和空间上发生事件的情况,其中,我们只关注事件发生的次数。当以下假设有效时,则称为泊松分布:* 任何一个成功的事件都不应该影响另一个成功的事件。* 在短时间内成功的概率必须等于在更长的时间内成功的概率。* 时间间隔很小时,成功的概率趋近于零。 𝛌是事件发生的频率,也就 ...
分类:
其他好文 时间:
2020-06-23 15:51:30
阅读次数:
113
题目如下: Given a rectangular cake with height h and width w, and two arrays of integers horizontalCuts and verticalCuts where horizontalCuts[i] is the di ...
分类:
其他好文 时间:
2020-06-22 15:31:47
阅读次数:
45
2020-06-19 10:36:40.117 [dd47dcbc-c72f-4791-8c4f-ef4019382537] ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[dispatcherServle ...
分类:
编程语言 时间:
2020-06-22 10:56:08
阅读次数:
236
使用mpich搭建MPI集群 1. 下载mpich wget http://www.mpich.org/static/downloads/3.3/mpich-3.3.tar.gz 2. 解压 tar xzf mpich-3.3.tar.gz 3. 创建mpi的安装路径 /home/omnisky/x ...
分类:
其他好文 时间:
2020-06-21 17:53:27
阅读次数:
88
nginx环境搭建 准备工作 nginx是C语言开发的所以安装gcc必不可少 yum install gcc-c++ 安装PCRE yum install -y pcre pcre-devel zlib压缩解压缩 yum install -y zlib zlib-devel openssl协议 yu ...
分类:
其他好文 时间:
2020-06-21 11:33:04
阅读次数:
58
Figure/绘图 Figure表示整个绘图,可以理解为一个画布,绘图中可以包含多个子图形(subplot)。 如果不显式创建figure,会使用默认的figure。 示例 显式创建figure # 创建一个大小为8x6英寸的图形,每英寸80个点 plt.figure(figsize=(8, 6), ...
分类:
编程语言 时间:
2020-06-21 00:27:00
阅读次数:
66
查询数据,前面已经讲过简单的查询单个用户数据,在这里将查询出用户列表,要查询出列表,也就是返回 List, 在我们这个例子中也就是List<User> , 要以这种方式返回数据,需要在User.xml里面配置返回的类型 resultMap, 注意不是 resultType, 而这个resultMap ...
分类:
其他好文 时间:
2020-06-21 00:04:04
阅读次数:
43
个图(figure)中可以包含多个子图(subplot)。 subplot 可以使用subplot()添加子图。 示例 创建2个子图,水平排列。 # 导入numpy库与matplotlib.pyplot库 import numpy as np import matplotlib.pyplot as ...
分类:
编程语言 时间:
2020-06-20 23:46:40
阅读次数:
65
要构建LSQUIC,您需要CMake,zlib和BoringSSL。该示例程序使用libevent提供事件循环。 BoringSSL git clone https://boringssl.googlesource.com/boringssl cd boringssl; mkdir build; c ...
分类:
其他好文 时间:
2020-06-20 01:26:45
阅读次数:
89