2020-05-08T03:25:12.059499+08:00 2863585 [ERROR] Disk is full writing '/data/mysql/mysql3306/logs/mysql-bin.000086' (Errcode: 16044192 - No space left ...
分类:
数据库 时间:
2020-05-08 09:15:41
阅读次数:
231
It can be understood as: the value of an addition revenue if the constraint is relaxed. or How much you would be willing to pay for an additional reso ...
分类:
其他好文 时间:
2020-05-08 00:28:57
阅读次数:
110
import tkinter as tk#建立窗口window=tk.Tk()window.title('My window')window.geometry('500x300')#创建一个标签label用以显示并放置var=tk.StringVar()#定义一个var用来将radiobotton的 ...
分类:
其他好文 时间:
2020-05-07 22:46:47
阅读次数:
93
Merge Conflict 参考https://www.cnblogs.com/dev2007/p/5830210.html 1.把几个merge conflict的commit在Gerrit上abandon 2.git log找到未提交的编号*****,git reset --soft **** ...
分类:
其他好文 时间:
2020-05-07 15:36:15
阅读次数:
267
1.FFmpeg 是视频处理最常用的开源软件,它功能强大,用途广泛,大量用于视频网站和商业软件(比如 Youtube 和 iTunes),也是许多音频和视频格式的标准编码/解码实现。FFmpeg 本身是一个庞大的项目,包含许多组件和库文件,最常用的是它的命令行工具。 2.下载地址:http://ww ...
分类:
其他好文 时间:
2020-05-07 13:54:56
阅读次数:
264
将ArrayList中的元素按照给定字符拼接起来 public static void main(String[] args) { List<String> list = Arrays.asList("nice","to","meet","you"); System.out.println(list ...
分类:
编程语言 时间:
2020-05-07 00:34:55
阅读次数:
81
1. Good Morning! 2. Good Morning! 3. How can help you? 4. I unserstand that the school organises... 5. umm, trips to different... 6. Yes, we run five ...
分类:
其他好文 时间:
2020-05-06 20:10:54
阅读次数:
95
``` //单点修改 pushup //查询区间内的最大字段和 #include #include #include #include using namespace std; const int N = 500010; int n, m; int w[N]; struct Node { //端点 ... ...
分类:
其他好文 时间:
2020-05-06 20:03:08
阅读次数:
53
Dubbo是什么? Dubbo是一个分布式服务框架,致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。 简单的说,dubbo就是个服务框架,如果没有分布式的需求,其实是不需要用的,只有在分布式的时候,才有dubbo这样的分布式服务框架的需求,并且本质上是个服务调用的东东,说白 ...
分类:
其他好文 时间:
2020-05-06 14:07:39
阅读次数:
69
1.内容小结 数据结构第四章学习的是串,数组和广义表。重点学习了串和串的模式匹配和数组的压缩存储 两个串模式匹配算法 1.BF算法 BF算法的思想就是将目标串第一个字符与模式串的第一个字符进行匹配,若相等,则继续比较的第二个字符; 若不相等,则比较原字符串的第二个字符和模式串的第一个字符,依次比较下 ...
分类:
其他好文 时间:
2020-05-05 23:10:52
阅读次数:
74