[root@localhost ~]# fdisk /dev/sdb …省略部分输出… Command (m for help): p #显示当前硬盘的分区列表 Disk /dev/sdb: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track ...
分类:
其他好文 时间:
2019-01-04 21:23:41
阅读次数:
168
Why can millions of hairs grow from our heads, and yet our palms手掌 and the soles of our feet are as bare as anything? It all comes down to a special m ...
分类:
其他好文 时间:
2018-12-03 12:47:55
阅读次数:
170
这节主要演练在线扩容 VG 和 LV 。 一 动态扩容 VG--1.1 查看硬盘信息[root@pgb lvm]# fdisk -l Disk /dev/hda: 19.3 GB, 19327352832 bytes255 heads, 63 sectors/track, 2349 cylinder ...
分类:
其他好文 时间:
2018-11-23 01:10:13
阅读次数:
316
题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1607 ...
分类:
其他好文 时间:
2018-11-01 12:03:45
阅读次数:
125
1.概述 @RequestMapping的value(请求URL)、method(请求方法)、params(请求参数)、heads(请求头)[映射条件];他们之间是与的关系,联合使用多个条件可以让请求映射更加精确化; params和headers支持简单的表达式: param1:表示请求必须包含名为 ...
分类:
移动开发 时间:
2018-09-29 21:36:22
阅读次数:
313
adnanh webhook 支持一系列的逻辑操作 AND 所有的条件都必须匹配 { "and": [ { "match": { "type": "value", "value": "refs/heads/master", "parameter": { "source": "payload", "n ...
分类:
Web程序 时间:
2018-09-25 21:51:20
阅读次数:
248
【映射请求参数、请求方法或请求头】 1.@RequestMapping 除了可以使用请求URL 映射请求外,还可以使用请求方法、请求参数及请求头映射请求。 2.@RequestMapping 的value、method、params及heads分别表示请求URL、请求方法、请求参数及请求头的映射条件 ...
分类:
移动开发 时间:
2018-09-23 22:39:27
阅读次数:
638
嘟嘟嘟 这题还是比较水的。首先O(n2)模拟显然过不了,那就换一种思路,考虑每一个数对答案的贡献,显然一个数a[i]会对后面的a[i] * 2, a[i] * 3,a[i] * 4……都贡献1,。那么就想线性求因数个数一样,对于每一个a[i],都计算出对能被他整出的数的贡献。 1 #include< ...
分类:
其他好文 时间:
2018-08-27 21:32:17
阅读次数:
147
今天净做水题了,这个题还不到十五分钟就搞定了,思路特别简单,就是直接按照线性求因子个数的思路就行了。 题干: 代码: ...
分类:
其他好文 时间:
2018-08-25 23:05:40
阅读次数:
195
题目描述 Alice and Bob are playing a simple game. They line up a row of n identical coins, all with the heads facing down onto the table and the tails upw ...
分类:
其他好文 时间:
2018-08-22 11:06:11
阅读次数:
159