NginxStatus详解 active connections – 活跃的连接数量 server accepts handled requests — 总共处理了43个连接 , 成功创建43次握手, 总共处理了72个请求 reading — 读取客户端的连接数. writing — 响应数据到客户 ...
分类:
其他好文 时间:
2020-04-08 16:19:57
阅读次数:
76
Eight Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 41040 Accepted: 16901 Special Judge Description The 15-puzzle has been around for ove ...
分类:
其他好文 时间:
2020-04-07 20:40:18
阅读次数:
86
[toc] windows平台下在Visual Studio2019配置MPI环境 MPI下载安装 MPI windows版本的下载地址: "https://docs.microsoft.com/en us/message passing interface/microsoft mpi?redire ...
学习书籍《Python Qt GUI与数据可视化编程》 上一节学习的是内部自带的槽函数,这一节学习自己为组件编写槽函数。 回忆一下上一节的图 我们把确定按钮绑定了accept()函数,把退出按钮绑定了close()函数。接下来,我们来看一下清空按钮。 清空: 首先在__init__()里将其绑定一个 ...
分类:
其他好文 时间:
2020-04-07 09:40:04
阅读次数:
116
迭代器模式是数据访问遍历的一种行为模式。java中List、Set、Map 等都包含了迭代器。迭代器提供一个对象来顺序访问聚合对象中的一系列数据,而不暴露聚合对象的内部表示。迭代器模式的优点: 无须暴露聚合对象的内部表示 遍历任务交由迭代器完成,简化聚合类 遍历的方式可扩展 模式结构 迭代器模式主要 ...
分类:
其他好文 时间:
2020-04-07 09:23:13
阅读次数:
70
构建连接:NioSocketChannel 是什么时候激活的 [toc] __Netty 系列目录()__ 在上一节中,我们分析服务器的启动过程,接下来就是开门迎客。 1. 主线分析 1.1 主线 NioEventLoop 不断的轮询,接收 OP_ACCEPT 事件;ServerBootstrapA ...
分类:
移动开发 时间:
2020-04-06 09:27:04
阅读次数:
88
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:
其他好文 时间:
2020-04-06 09:25:29
阅读次数:
73
首先出现这个问题,都是iptables input chain 设置了默认Policy 为 Drop导致的(如果默认全都是 accept或者没有其他拒绝策略,肯定是没问题的。) 这是我服务器上的INPUT规则如下: 3306 ,6379那几个, 分别是mysql容器和 redis容器对应的端口号,第 ...
分类:
其他好文 时间:
2020-04-05 13:46:46
阅读次数:
215
html <input id="file" type="file" accept=".map" onchange="upload()" /> JS document.getElementById('file').value = null; vue <input ref="referenceUploa ...
分类:
Web程序 时间:
2020-04-05 11:36:47
阅读次数:
73
题目如下: Implement the class UndergroundSystem that supports three methods: 1. checkIn(int id, string stationName, int t) A customer with id card equal t ...
分类:
其他好文 时间:
2020-04-04 14:27:25
阅读次数:
69