nginx -s reload 有时候重新加载配置文件没有生效 检查/var/log/nginx/error.log [notice] 29410#0: signal process started [emerg] 2999#0: bind() to 0.0.0.0:9091 failed (13: ...
分类:
其他好文 时间:
2020-12-28 10:54:15
阅读次数:
0
如图:打印日志 首先,adb shell进入data/system目录下会看到一个叫做dropbox的文件夹 只要你的Android系统出现ANR或者Crash等,系统就会保存日志到这个文件夹中,对你分析问题的产生有巨大帮助。话不多说,我们把这个dropbox拷出来,看看里面的内容 可以看到,我们的 ...
分类:
其他好文 时间:
2020-12-24 12:31:14
阅读次数:
0
Dear Prof. X I am XX, a Ph.D. candidate in the XX group of YY University, which is under the supervision of Prof. ZZ.I am about to finish my Ph.D. stu ...
分类:
其他好文 时间:
2020-12-23 12:24:19
阅读次数:
0
overview:概述页面;categories:分类目录;suites:按套件和类分组的已执行测试的标准结构;graphs:图表;timeline:时间线;behaviors:可根据epic、feature和story标签对测试结果进行分组;packages:测试结果的树状布局,按不同的软件包分组 ...
分类:
其他好文 时间:
2020-12-23 12:19:41
阅读次数:
0
一、问题描述 现有一个需求:要求加载出来的网络图片等比缩放并居中显示。外层布局用的是RelativeLayout,子View是一个ImageView和一个视频播放器的View。所以理所当然的就给子View设置了 android:layout_centerInParent="true",运行后并没有达 ...
分类:
其他好文 时间:
2020-12-19 13:32:48
阅读次数:
2
<!DOCTYPE html> <html lang="en" xmlns:v-bind="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--vie ...
分类:
其他好文 时间:
2020-12-19 13:04:13
阅读次数:
2
TVM中的调度原语 TVM是一种用于高效内核构造的领域专用语言。 本文将展示如何通过TVM提供的各种原语来调度计算。 from __future__ import absolute_import, print_function import tvm from tvm import te import ...
分类:
其他好文 时间:
2020-12-18 13:20:58
阅读次数:
4
let obj={ name:'金毛' } function test(){ console.log(123,this) } test.call(obj,'123') //手写 Function.prototype.myCall=function(thisObj,arr){ let Fn = thi ...
分类:
其他好文 时间:
2020-12-18 12:55:04
阅读次数:
3
alter table tablename add id serial ...
分类:
数据库 时间:
2020-12-18 12:52:36
阅读次数:
4
前言 开发中很多地方都会遇到密码输入,这时候往往需要根据UI设计自定义。这里遵守UIKeyInput,实现协议中的方法,让自定义View可以进行文字输入;再通过func draw(_ rect: CGRect)绘制现自定义UI;使用配置类来统一接口;使用代理来管理各种输入相关的事件。文章末尾有提供O ...
分类:
移动开发 时间:
2020-12-17 12:12:48
阅读次数:
3