Could not find a package configuration file provided by "Vpp" with any of the following names: VppConfig.cmake vpp-config.cmake Add the installation p ...
分类:
其他好文 时间:
2020-04-26 19:13:37
阅读次数:
107
致读者 等几天在更新,最近有点吃不消了😝 完成数据结构 哈夫曼编码 实验部分代码。 函数功能 void insert(LIST head, LIST tmp) 有序插入结点 LIST find_and_insert(LIST head, LIST tmp) 弹出内部的结点,然后调用insert函数 ...
分类:
其他好文 时间:
2020-04-26 19:09:27
阅读次数:
119
gradle安装 Gradle是一个基于JVM的构建工具,是一款通用灵活的构建工具,支持maven, Ivy仓库,支持传递性依赖管理,而不需要远程仓库或者是pom.xml和ivy.xml配置文件,基于Groovy,build脚本使用Groovy编写,需要到gradle官网下载对应版本,http:// ...
分类:
编程语言 时间:
2020-04-26 18:40:21
阅读次数:
97
原因是数据库配置错误 错误配置: #数据库配置 spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.url=jdbc:mysql://localhost:3306/springboot?useUnic ...
分类:
数据库 时间:
2020-04-26 12:36:21
阅读次数:
108
Problem Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum ...
分类:
其他好文 时间:
2020-04-26 12:31:47
阅读次数:
51
项目用php开发,在生产运行的过程中,应该一段时间监测下php脚本运行状态,哪些php进程速度太慢,有哪些错误日志。问:如何来查看检测比较慢的php脚本呢?答:查看php-fpm慢日志。 1.先查找到配置文件存放地址find / -name php-fpm.conf vi /usr/servers/ ...
分类:
Web程序 时间:
2020-04-26 11:12:54
阅读次数:
70
selenium 1、导入模块: :from selenium import webdriver # 启动浏览器需要用到 from selenium.webdriver.common.keys import Keys 2、创建一个WebDriver实例: driver = webdriver.Chr ...
分类:
其他好文 时间:
2020-04-26 09:21:12
阅读次数:
76
#准备工作 配置application.yml spring: thymeleaf: #thymeleaf cache: false datasource: #datasource driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql ...
分类:
编程语言 时间:
2020-04-26 01:46:56
阅读次数:
80
1、vi命令下的查找和替换 1.1 vi下的查找 /hello<Enter> :向下查找hello匹配字符串 ?hello<Enter>:向上查找hello匹配字符串 使用了查找命令之后,使用如下两个键快速查找: n:按照同一方向继续查找 N:按照反方向查找 hello是需要匹配的字符串,例如: / ...
分类:
系统相关 时间:
2020-04-26 01:08:38
阅读次数:
100
Java专题十四:JDBC [TOC] 14.1.JDBC框架 14.2.JDBCAPI java.sql.Driver Connection connect(String url, java.util.Properties info) java.sql.DriverManager static C ...
分类:
数据库 时间:
2020-04-25 23:23:18
阅读次数:
89