配置文件 1、文件类型 1.1、properties 同以前的properties用法 1.2、yaml 1.2.1、简介 YAML 是 "YAML Ain't Markup Language"(YAML 不是一种标记语言)的递归缩写。在开发的这种语言时,YAML 的意思其实是:"Yet Anoth ...
分类:
编程语言 时间:
2021-03-10 13:12:08
阅读次数:
0
安装完gpu版本的tensorflow,导入正常,但是tf.test.is_gpu_available()一直返回False,解决办法: 1、打开NVIDIA控制面板,查看CUDA的驱动版本,如果版本太低,到Nvidia Experience更新驱动程序。默认安装即可。(安装过程自行百度) 2、如果 ...
分类:
其他好文 时间:
2021-03-10 13:07:41
阅读次数:
0
#include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ ...
分类:
其他好文 时间:
2021-03-10 12:57:35
阅读次数:
0
 中生成的,where条件中 1=1 之后的条件是通过 if 块动态变化的。例如: String sql="select * from table_name where 1=1"; if( conditon 1) { sql=sql+" and var2=value ...
分类:
数据库 时间:
2021-03-09 13:11:19
阅读次数:
0
学习java的每日小收获 字符串连接符 以下面代码为例: public static Medo02{ public static void main(String agrs[]){ int i=10; int j=20; System.out.println(" "+i+j);//字符串连接符号 S ...
分类:
编程语言 时间:
2021-03-09 13:04:21
阅读次数:
0
A - Eating Symbols Easy 没什么好说的,按题意模拟,为 \(+\) 时就 \(sum++\) ,为 \(-\) 时就 \(sum--\) 。 \(code\) B - Digit Sums 分离数位判断即可。 \(code\) C - Minimization 有点小思维的结论 ...
分类:
其他好文 时间:
2021-03-08 14:22:49
阅读次数:
0
tomcat conf目录下的server.xml appBase 配置上下文Context 设置:autoDeploy="false" deployOnStartup="false", 原来: <Host name="localhost" appBase="webapps" unpackWARs= ...
分类:
编程语言 时间:
2021-03-08 14:16:45
阅读次数:
0