自定义 cpp tools 的缓存文件 cpp tool 会在C:\Users%USERNAME%\AppData\Roaming\Code 下生成缓存目录 IntelliSense browse 数据库位置 C_Cpp.default.browse.databaseFilename 默认为defa ...
分类:
其他好文 时间:
2020-06-12 16:04:53
阅读次数:
112
1.pytest需要测试多个py文件,这些文件有一定的依赖关系,同时执行的时候,需要只执行一次初始化setup,结束再执行一次teardown; 2.多个py文件需要使用pytest的conftest.py,这个文件名是固定的,在同级目录还需要__init__.py; 3.由于setup这种经典的初 ...
分类:
其他好文 时间:
2020-06-12 16:04:00
阅读次数:
59
function initMixin$1 (Vue) { Vue.mixin = function (mixin) { this.options = mergeOptions(this.options, mixin); return this }; } 可以传入Vue对象,然后需要调用的时候可以进行 ...
分类:
其他好文 时间:
2020-06-12 14:59:22
阅读次数:
109
一、Sparksql隐式转换时异常描述 Cannot create encoder for Option of Product type, because Product type is represented as a row, and the entire row can not be null ...
分类:
数据库 时间:
2020-06-12 14:59:06
阅读次数:
120
1.CPU读Cache时: ●若hit,则CPU直接从Cache中读取数据即可。 ●若miss,有两种处理方式: >Read through,即直接从内存中读取数据; >Read allocate,先把数据读取到Cache中,再从Cache中读数据。 2.CPU写Cache时: ●若hit,有两种处 ...
分类:
其他好文 时间:
2020-06-12 14:58:22
阅读次数:
67
all goroutines are asleep - deadlock 简单使用: package main import ( "sync" ) type httpPkg struct{} func (httpPkg) Get(url string) {} var http httpPkg fun ...
分类:
其他好文 时间:
2020-06-12 14:57:50
阅读次数:
82
##Django中Application labels aren't unique解决方法## 准备写点什么,pip更新了所有插件,发现了按平常编码遇到些问题,记录下。 Django错误### django.core.exceptions.ImproperlyConfigured: Applicat ...
分类:
移动开发 时间:
2020-06-12 14:57:13
阅读次数:
76
D27 1. 向文件中添加或插入行 1)在文件的指定行后添加一行内容 $ cat info.txt Linux - Sysadmin Database - Oracle, MySQL etc. Security - Firewall, Network, Online Security etc. Co ...
分类:
系统相关 时间:
2020-06-12 14:56:35
阅读次数:
76
2020年6月12日13:48:33 github:https://github.com/apache/incubator-apisix 目前此项目已有成为apache孵化项目 官方中文文档 :https://github.com/apache/incubator-apisix/blob/maste ...
分类:
Windows程序 时间:
2020-06-12 14:56:21
阅读次数:
1144
时间久了,有些遗忘,回顾记录一下: 快速排序: 顾名思义,对于c++,快速排序历史上一直是实践中已知最快的泛型排序算法,平均运行时间:O(n*logn),最差就是O(n^2)。 STL中的sort用的就是快排,只不过根据数据量级穿插了别的如插入排序,堆排等算法,进行动态调整,使性能达到最优解。一般来 ...
分类:
其他好文 时间:
2020-06-12 14:55:40
阅读次数:
58
1. 创建脚本文件 /root/start.sh # !/bin/bash# program# test java open export JAVA_HOME=/root/home/vcc/java/jdk1.8.0_221export JRE=/root/home/vcc/java/jdk1.8. ...
分类:
编程语言 时间:
2020-06-12 14:55:22
阅读次数:
108
因为从业三年,还未真正接触过性能测试,面试被问到 TPS(每秒事务数)上不去的原因,百度答案以及找到参考 什么是tps呢? (transaction per second) 每秒事务数,指服务器在单位时间内(秒)可以处理的事务数量,一般以request/second为单位。 原因参考大神提供的有以下 ...
分类:
其他好文 时间:
2020-06-12 14:54:55
阅读次数:
71
由于工作需要必须将word文档内容粘贴到编辑器中使用 但发现word中的图片粘贴后变成了file:///xxxx.jpg这种内容,如果上传到服务器后其他人也访问不了,网上找了很多编辑器发现没有一个能直接解决这个问题 考虑到自己除了工作其他时间基本上不使用windows,因此打算使用nodejs来解决 ...
分类:
Web程序 时间:
2020-06-12 14:54:38
阅读次数:
87
后台主页面代码 <template> <el-container style="height:100vh"> <el-header> <div> <img src="../assets/logo.png" alt /> <span>Vue商城后台管理系统</span> </div> <el-butt ...
在前面两篇文章介绍了下载器中间件的使用,这篇文章将会介绍爬虫中间件(Spider Middleware)的使用。 爬虫中间件 爬虫中间件的用法与下载器中间件非常相似,只是它们的作用对象不同。下载器中间件的作用对象是请求request和返回response;爬虫中间件的作用对象是爬虫,更具体地来说,就 ...
分类:
其他好文 时间:
2020-06-12 14:54:01
阅读次数:
66
asy --help Asymptote version 2.49 [(C) 2004 Andy Hammerlindl, John C. Bowman, Tom Prince] http://asymptote.sourceforge.net/ Usage: asy [options] [file ...
分类:
其他好文 时间:
2020-06-12 14:52:48
阅读次数:
83
//递归删除文件夹 import java.io.File; public class Demo04 { public static void main(String[] args) { delDir(new File("E:\\abc")); } private static void delDi ...
分类:
其他好文 时间:
2020-06-12 14:52:30
阅读次数:
64