1、安装 mariadb-install-db.exe mysqld install 2、修改utf8编码 [mysqld] default-storage-engine = innodb innodb_file_per_table max_connections = 4096 collation- ...
分类:
数据库 时间:
2020-09-17 19:21:40
阅读次数:
38
看以往的教材中R.java都是在项目的\app\build\generated\source\r\debug\包名下的 通常AS会自动在项目的R.java中创建代表项目中资源的资源ID,大致格式如下 public final class R { public static final class l ...
分类:
移动开发 时间:
2020-09-17 18:45:39
阅读次数:
46
with_items遍历列表中每个元素,包括嵌套列表with_list将嵌套列表作为整体元素遍历with_together将多个列表中的子列表元素,一起输出,不成对则null补位示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_items:[1,2,3][a,b]debug
分类:
其他好文 时间:
2020-09-17 17:19:57
阅读次数:
31
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:
其他好文 时间:
2020-09-17 17:19:41
阅读次数:
32
with_indexed_items示例:hosts:jack6_1remote_user:rootgather_facts:notasks:debug:msg:"{{item}}"with_indexed_items:[t1,t2][t3,[t4,t5]][t6]输出结果如下:[root@jack7-1work]#ansible-playbook--syntax-checki
分类:
其他好文 时间:
2020-09-17 17:19:20
阅读次数:
33
Debug版本:通常称为调试版本,它包含调试信息,并且不作任何优化,便于程序员调试程序。 Release版本:称为发布版本,它往往是进行了各种优化,使得程序在代码大小和运行速度上都是最优的,以便用户很好地使用。 实际上,Debug版本和 Release 并没有本质的界限,他们只是一组编译选项的集合, ...
分类:
其他好文 时间:
2020-09-17 17:15:25
阅读次数:
20
#重复列表按重复次数排序方法1s = 'aacbddbcdadb'lists1=list(s)uniques1 = set(lists1)dict_str = {}for unique1 in uniques1: i=0 for list1 in lists1: if list1 == unique ...
分类:
编程语言 时间:
2020-09-17 16:44:45
阅读次数:
37
IDA 调试安卓 工具: Nox IDA 进入Nox\bin目录 cd C:\Program Files (x86)\Nox\bin adb连接模拟器 nox_adb.exe connect 127.0.0.1:62001 上传ida 监听文件 adb push 'C:\Users\b\Deskto ...
分类:
移动开发 时间:
2020-09-17 16:19:30
阅读次数:
38
错误:找不到实体类 解决办法:放错了包,在相应包的平行位置创建了相同的包所以找不到实体类 DEBUG [main] - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. DEBUG ...
分类:
其他好文 时间:
2020-09-17 16:04:31
阅读次数:
55
register注册变量可以将输出信息作为变量值示例:[root@jack7-1work]#catregister.ymlhosts:PCremote_user:roottasks:name:testshellshell:"echotest>/root/test"register:testvar==================>将shell输出的结果赋值给tes
分类:
其他好文 时间:
2020-09-17 16:02:37
阅读次数:
28