对于代码的格式,不同的人有不同的风格,在clang-format插件的基础上,可以自定义自己的代码风格。 clang-format.exe位置(~/.vscode/extensions/ms-vscode.cpptools-0.26.1/LLVM/bin/clang-format.exe) vsco ...
分类:
其他好文 时间:
2020-01-02 20:43:36
阅读次数:
799
.disabled { outline: 0 none; cursor: default !important; opacity: .4; filter: alpha(opacity=30); -ms-pointer-events: none; pointer-events: none;} ...
分类:
其他好文 时间:
2020-01-02 15:37:36
阅读次数:
78
浏览器私有前缀是为了兼容老版本的写法,比较新版本的浏览器无须添加。 1. 私有前缀 ? moz :代表 firefox 浏览器私有属性 ? ms :代表 ie 浏览器私有属性 ? webkit :代表 safari、chrome 私有属性 ? o :代表 Opera 私有属性 2. 提倡的写法 mo ...
分类:
其他好文 时间:
2019-12-31 21:47:24
阅读次数:
73
直接上干货 /** * 毫秒倒计时成时 分 秒的形式 * @param ms * @return */ public static String[] formatSecKillTime(Long ms) { Integer ss = 1000; Integer mi = ss * 60; Integ ...
分类:
其他好文 时间:
2019-12-31 10:47:33
阅读次数:
155
参数详细解释: Sample#:编号类似id Start Time:开始时间 Thread Name:线程名称 Label:请求名称 Sample Time:取样时间ms Status:状态 Bytes:接受字节数 Sent Bytes:发送字节数 Latency:等待时间 Connect Time ...
分类:
其他好文 时间:
2019-12-30 17:09:49
阅读次数:
280
https://blog.csdn.net/zanychou/article/details/7403336 EXEC sys.sp_addextendedproperty @name=N'MS_Description', @value=N'ID' , @level0type=N'SCHEMA',@ ...
分类:
数据库 时间:
2019-12-30 14:18:50
阅读次数:
232
Flume采集的控制台提示:The channel is full or unexpected failure. The source will try again after 1000 ms 这个是因为当前被采集的文件过大,深层的原因是文件采集的速度和sink的速度没有匹配好。所以应该可以通过增大 ...
分类:
其他好文 时间:
2019-12-28 22:41:20
阅读次数:
335
以ms sql server 14 v17为例。 如下表dbo.Q中有一个字段'' 首先在数据库的系统存储过程列表中: 找到sys.sp_addextendedproperty,使用这个为字段添加一个说明。 EXECUTE [sys].[sp_addextendedproperty] @name=N ...
分类:
数据库 时间:
2019-12-27 13:30:48
阅读次数:
96
数据结构实验之链表五:单链表的拆分 Time Limit: 1000 ms Memory Limit: 65536 KiB Submit Statistic Problem Description 输入N个整数顺序建立一个单链表,将该单链表拆分成两个子链表,第一个子链表存放了所有的偶数,第二个子链表 ...
分类:
其他好文 时间:
2019-12-20 20:25:17
阅读次数:
76
[CodeForces 1225C]p binary 【数论】【二进制】 标签: 题解 codeforces题解 数论 题目描述 Time limit 2000 ms Memory limit 524288 kB Source Technocup 2020 Elimination Round 2 T ...
分类:
其他好文 时间:
2019-12-20 20:24:00
阅读次数:
83