MySQL spring.datasource.url=jdbc:mysql://localhost:3306/twitter_test?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8spring. ...
分类:
移动开发 时间:
2021-04-27 14:38:30
阅读次数:
0
vue打包时配置不同的环境变量(vue-cli4) 以配置测试环境test为例 1、在package.json文件中配置script文件 "scripts": { "serve": "vue-cli-service serve", "build": "vue-cli-service build", ...
分类:
其他好文 时间:
2021-04-27 14:20:31
阅读次数:
0
D. Explorer Space 一点一点把题目理顺。看看哪些是可以推断出来的。 对于 dp 的题目而言,要一点一点去分析其中什么东西是可以递推的,正如这道题中 \(dp[x][y][k]=min\{dp[xx][yy][k-1]+d[x][y][i]\}\) 然后再进行记忆化搜索即可。 // C ...
分类:
其他好文 时间:
2021-04-27 14:17:50
阅读次数:
0
参考 https://blog.csdn.net/Simon798/article/details/103161482 先上代码: // Test_Console.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include <afx.h> #includ ...
分类:
编程语言 时间:
2021-04-27 14:13:15
阅读次数:
0
参考网址:https://www.bejson.com (网站文件部分有坑,需要擦亮眼睛) nginx k8s版本:v1.20 apiVersion: apps/v1 kind: Deployment metadata: name: my-nginx namespace: test spec: re ...
分类:
其他好文 时间:
2021-04-26 14:08:07
阅读次数:
0
Flask API 登录 零、起因 最近要写uniapp客户端,服务器使用的是Python的Flask框架,为了实现用户登录,在网上查到了一些Flask的扩展,其中比较简单的就是flask_httpauth(此时版本__version__ = '4.2.1dev'),其官网给出的基本示例: from ...
分类:
编程语言 时间:
2021-04-26 13:14:41
阅读次数:
0
__thread 线程局部存储 Thread Local Storage(tls),是一种机制,通过这一机制分配的变量,每个当前线程有一个该变量的实例。 在用户层,用一个新的存储类型关键字:__thread 表示这一扩展。 __thread 使用规则: 如果一个线程局部存储变量有一个初始化器,它必须 ...
分类:
其他好文 时间:
2021-04-26 12:57:45
阅读次数:
0
R语言中求分位数 1、测试1 test <- 1:10 test a <- quantile(test,c(0.25,0.75)) a ...
分类:
编程语言 时间:
2021-04-24 13:48:00
阅读次数:
0
1 Ruby@DESKTOP-4INK1I3 MINGW64 /f/Git/test (master) 2 $ git push origin master 3 fatal: unable to access 'https://github.com/xxx/test.git/': OpenSSL S ...
分类:
其他好文 时间:
2021-04-24 13:43:19
阅读次数:
0
copy running-config startup-config 重启后保存的配置不会重置。 test#copy running-config startup-config Destination filename [startup-config]? Building configuration ...
分类:
其他好文 时间:
2021-04-24 13:28:32
阅读次数:
0