Multiple annotations found at this line:- javax.servlet.jsp.JspException cannot be resolved to a type- Attribute (width) is obsolete. Its use is disco ...
分类:
Web程序 时间:
2020-09-03 16:28:26
阅读次数:
80
转自: https://github.com/TWKB/Specification/blob/master/twkb.md"Tiny Well-known Binary" or "TWKB"VersionRelease0.23May 1, 2015AbstractTWKB is a multi-pu... ...
分类:
其他好文 时间:
2020-08-28 14:43:00
阅读次数:
56
一文讲透“进程,线程和协程” 本文从操作系统原理出发结合代码实践讲解了以下内容: 什么是进程,线程和协程? 它们之间的关系是什么? 为什么说Python中的多线程是伪多线程? 不同的应用场景该如何选择技术方案? ... 什么是进程 进程-操作系统提供的抽象概念,是系统进行资源分配和调度的基本单位,是 ...
分类:
编程语言 时间:
2020-08-27 17:05:24
阅读次数:
57
安装 pip install tornado==4.3 hello world #coding=utf-8 import tornado.web import tornado.ioloop #单线程 #创建一个处理类 class IndexHandler(tornado.web.RequestHan ...
分类:
其他好文 时间:
2020-08-20 19:14:09
阅读次数:
65
Implement a method to find the second largest number in an array of ints. If the input array is empty or contains only a single number, the method mus ...
分类:
其他好文 时间:
2020-08-18 13:58:14
阅读次数:
82
## 简述ES6的新特性 *Default Parameters(默认参数) in ES6 *Template Literals (模板文本)in ES6 *Multi-line Strings (多行字符串)in ES6 *Destructuring Assignment (解构赋值)in ES6 ...
分类:
其他好文 时间:
2020-08-17 16:46:05
阅读次数:
54
Path: 题意:用最少的代价,删除一些边,使得最短路变长。 思路: https://blog.csdn.net/jerry99s/article/details/96907292(大佬讲得非常好) 我们将所有最短路上的边,建立一张新的图。 以1为源点,n为汇点。求最小割。 这时的最小割即为最小花费 ...
分类:
其他好文 时间:
2020-08-09 16:46:34
阅读次数:
82
2020 Multi-University Training Contest 2 Count on a Tree II Striking Back 题意: 一棵含 \(n\) 个点的树,树上每个点都有颜色,m个操作,有两种: $1,x,y$ :将节点x的颜色设置为 \(y\) $2,a,b,c,d$ ...
分类:
其他好文 时间:
2020-08-07 22:58:41
阅读次数:
77
一、MVCC是什么? Multi-Vesrion Concurrency Control多版本并发控制,MVCC是一种并发控制的方法,一般在数据库管理系统中,实现对数据库的并发访问。 你可以把MVCC看作一种行级别锁的妥协,在很多情况下避免了锁的使用,同时可以提供更小的开销。根据不同的实现,可以允许 ...
分类:
数据库 时间:
2020-08-05 19:46:45
阅读次数:
86
官网 https://clickhouse.tech/ quick start 进入下面目录,手工下载软件然后安装 https://repo.clickhouse.tech/rpm/lts/x86_64/或者直接下载这四个文件wget https://repo.clickhouse.tech/rpm ...
分类:
其他好文 时间:
2020-08-04 16:51:52
阅读次数:
85