问题: 今天遇到一个syslog间歇性缺失的问题,排查了一圈发现是限速导致的。 cat /var/log/message | grep rate-limit 有如下信息: Feb 9 10:22:32 localhost rsyslogd: imuxsock lost 432 messages fr ...
分类:
其他好文 时间:
2020-06-03 13:54:57
阅读次数:
134
// // WARNING!! This file is overwritten by the Block Styler while generating // the automation code. Any modifications to this file will be lost afte ...
分类:
其他好文 时间:
2020-05-30 21:56:21
阅读次数:
100
Life is short or long, sometimes lost and sinking, and sometimes fearless and strong. In the vast river of history, there is always a section of my ow... ...
分类:
其他好文 时间:
2020-05-30 15:26:55
阅读次数:
95
题目 比较两个字符串,有多少相同位置的字符是相同的,相同的字符放在不同的位置 class Solution { public: int digit[10]; string getHint(string secret, string guess) { int a = 0, b = 0; for (in ...
分类:
其他好文 时间:
2020-05-28 13:20:49
阅读次数:
49
错误分析: 数据库连接已经关闭或者失效后仍然在执行操作,导致:mysql服务没返回数据 1.客户端连接池中连接,已经失效;但是:连接池还没有检测到;当操作数据库时,启用该连接,抛出该错误 2.mysql服务器,已关闭该连接,但:客户端连接池中该连接,尚未检测到。当用该连接操作数据库时,抛出该错。处理 ...
分类:
数据库 时间:
2020-05-14 11:14:18
阅读次数:
107
(点击图片进入关卡) 使用代码块找到离开库的方法。 简介 你的代码已经一行接一行地开始工作了。 现在,你将使用 code blocks :这是一个可以反复使用的命令。 这是你创造 code blocks 的方法: # 使用":"冒号开启一个代码块 while True: # 以下,任何使用4格缩进的 ...
分类:
编程语言 时间:
2020-05-12 20:30:36
阅读次数:
91
Til the Cows Come Home "POJ 2387" 这题是最简单的最短路求解题,主要就是使用dijkstra算法,时间复杂度是$O(n^2)$. 需要注意的是,一定要看清楚题目的输入要求,是先输入边,再输入顶点,一开始我没看清,wrong answer了一次。 ...
分类:
其他好文 时间:
2020-05-09 20:41:51
阅读次数:
53
```//对于一个有向图,连通分量:对于分量中任意两点uv,//必然可以从u走到v,也可以从v走到u//强连通分量(scc):极大连通分量,也就是加上任何一个点之后,都不是连通分量//有向图通过缩点,转化为有向无环图(DAG),拓扑图//缩点是指将所有连通分量缩成一个点//Tarjan算法求scc/... ...
分类:
其他好文 时间:
2020-05-08 18:02:50
阅读次数:
74
描述:农夫 John 建造了一座很长的畜栏,它包括N (2 <= N <= 100,000)个隔间,这些小隔间依次编号为x1,...,xN (0 <= xi <= 1,000,000,000).但是,John的C (2 <= C <= N)头牛们并不喜欢这种布局,而且几头牛放在一个隔间里,他们就要发 ...
分类:
其他好文 时间:
2020-05-06 13:41:49
阅读次数:
63
Hotel POJ - 3667 The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores of Lake S ...
分类:
其他好文 时间:
2020-05-05 10:42:19
阅读次数:
58