查看显卡驱动: nvidia-smi 报错: NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is instal ...
分类:
其他好文 时间:
2021-01-27 12:52:58
阅读次数:
0
背景:gitalk需要人工访问文章页才能触发创建issue 其实有个更简便的方式,当我们push代码到github时,可以利用github action的自动化流程自动执行下面的python脚本来创建issue,在编写Github Action时,设定触发条件为push,详细的yml脚本内容为: c ...
分类:
编程语言 时间:
2021-01-26 12:36:45
阅读次数:
0
1,右值引用和move语义 C++ 标准库使用比如vector::push_back 等这类函数时,会对参数的对象进行复制,连数据也会复制.这就会造成对象内存的额外创建, 本来原意是想把参数push_back进去就行了,通过std::move,可以避免不必要的拷贝操作。 std::move是将对象的 ...
分类:
编程语言 时间:
2021-01-26 12:25:33
阅读次数:
0
中文社区 常量 1.字符串常量 在SQL中,一个字符串常量是一个由单引号(')包围的任意字符序列,例如'This is a string'。为了在一个字符串中包括一个单引号,可以写两个相连的单引号,例如'Dianne''s horse'。注意这和一个双引号(")不同。 2.美元引用的字符串常量 虽然 ...
分类:
数据库 时间:
2021-01-26 11:53:53
阅读次数:
0
解决CentOS启动nginx出现nginx: [emerg] open() "/var/run/nginx/nginx.pid" failed (2: No such file or director) 问题: 1.进入sbin:cd /usr/local/nginx/sbin/ 2.启动ngin ...
分类:
其他好文 时间:
2021-01-26 11:49:10
阅读次数:
0
Homebrew是mac的包管理器,他可以安装任何你想安装的东西 安装方法:在命令行输入 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Failed ...
分类:
其他好文 时间:
2021-01-26 11:44:27
阅读次数:
0
问题描述 报错内容如下: yarn run v1.22.10 $ vue-cli-service electron:serve INFO Starting development server... 98% after emitting CopyPlugin ERROR Failed to comp ...
分类:
Web程序 时间:
2021-01-25 11:30:27
阅读次数:
0
Sort the Matrix Diagonally (M) 题目 A matrix diagonal is a diagonal line of cells starting from some cell in either the topmost row or leftmost column a ...
分类:
其他好文 时间:
2021-01-25 11:27:14
阅读次数:
0
@Value和@Autowired这两个注解都是由AutoWiredAnnotationBeanPostProcessor来处理的,这两个注解被处理的地方也是一样的,就是在一个bean被new出来之后,要填充属性的populateBean方法里。 会调用 AutoWiredAnnotationBea ...
分类:
编程语言 时间:
2021-01-25 11:15:20
阅读次数:
0
##std::list <list> ###列表性质 1、双向链表 2、只支持双向顺序访问,不支持下标访问(随机访问迭代器)(元素随机访问) 3、因为不支持随机访问迭代器,所以不能使用std::sort进行排序,需要调用成员函数list::sort 4、在list中任何位置进行插入/删除操作速度都很 ...
分类:
编程语言 时间:
2021-01-25 11:13:54
阅读次数:
0