在bionic/linker/linker.cpp中有一个系统库函数的豁免列表,但是只有target sdk version小于24才能被豁免。 static bool is_exempt_lib(android_namespace_t* ns, const char* name, const so ...
分类:
移动开发 时间:
2021-01-30 12:18:43
阅读次数:
0
坐标函数 https://www.geogebra.org/graphing https://www.desmos.com/calculator 通用画图,简易Visio https://c.runoob.com/more/shapefly-diagram/ ...
分类:
Web程序 时间:
2021-01-29 12:08:03
阅读次数:
0
Soundness & Soundiness Soundness: the analysis captures all program behaviors, or the analysis result models all possible executions of the program ? ...
分类:
数据库 时间:
2021-01-29 12:01:47
阅读次数:
0
参考:https://juejin.cn/post/6844903655108280328 效果 BetterScroll //安装 npm install better-scroll --save //导入 import Bscroll from "better-scroll"; 滚动原理:需要一 ...
分类:
其他好文 时间:
2021-01-27 13:55:07
阅读次数:
0
删除数据库时提示:message:Database DBname is not empty. One or more tables exist. ##解决方案1: 先删除数据库中的所有表,再删除数据库 ##解决方案2: 强制删除 drop database db_hive cascade; ...
分类:
数据库 时间:
2021-01-26 11:44:00
阅读次数:
0
Linux 下有很多实用工具可以让你在终端界面查看文本文件。其中一个就是 more。 more 跟我之前另一篇文章里写到的工具 —— less 很相似。它们之间的主要不同点在于 more 只允许你向前查看文件。 尽管它能提供的功能看起来很有限,不过它依旧有很多有用的特性值得你去了解。下面让我们来快速 ...
分类:
系统相关 时间:
2021-01-25 11:24:37
阅读次数:
0
用户信息存储 /** * 通过重载,配置user-detail服务<!--more--> * @param auth * @throws Exception */ @Override protected void configure(AuthenticationManagerBuilder auth ...
分类:
其他好文 时间:
2021-01-21 11:00:48
阅读次数:
0
/**<!--more--> * 通过重载,配置如果通过拦截器保护请求 * @param http * @throws Exception */ @Override protected void configure(HttpSecurity http) throws Exception {// su ...
分类:
其他好文 时间:
2021-01-21 11:00:01
阅读次数:
0
文件權限 什么是文件权限: 我们对当前文件可以干什么 看 写入 删除 执行 root 拥有最高执行权限 一个权限可以控制它 普通文件的默认权限 我们创建 vim touch echo后默认的权限 rw-r--r-- r 4 read 读取文件 cat less more vim sed w 2 wr ...
分类:
系统相关 时间:
2021-01-21 10:55:18
阅读次数:
0
1473G - Tiles 画图分析,可以发现路径形成了网格图,每一次的状态是一条斜线上的所有点,增加操作就是将网格图向外拓展,减少操作就是将网格图向内收拢。 可以分阶段统计,因为每次阶段上点的数量最大只会变化 \(5\),点数是 \(O(n)\) 级别的,相邻阶段之间可以用组合数转移。 \(f_{ ...
分类:
其他好文 时间:
2021-01-16 11:50:20
阅读次数:
0