Android系统启动:Init篇 原文:http://gityuan.com/2016/02/05/android-init/ 概述 init进程是Linux系统中用户空间的第一个进程,进程号固定为1。Kernel启动后,在用户空间启动init进程,并调用init中的main()方法执行init进 ...
分类:
移动开发 时间:
2021-03-31 12:02:01
阅读次数:
0
在做监控的时候,有可能会发生agent挂掉,无法采取到告警的时候。 这个时候可能就无法发送告警了 # 解决方法 这个时候需要用《nodata》触发器 《nodata触发器》表达式参考 {docker container check health:net.tcp.listen[{#TCP_PORT}] ...
分类:
其他好文 时间:
2021-03-31 11:35:11
阅读次数:
0
fabrci源码记录2 writer:布羽 ProtoBuf 在fabric中,交换数据的格式采用protobuf,而非XML或者JSON。其引入了fabric-rpotos-go这个底层项目。 https://github.com/hyperledger/fabric-protos-go fabr ...
分类:
其他好文 时间:
2021-03-30 12:58:01
阅读次数:
0
背景与思路来源 目前 SR 模型中合成 LR 使用的模糊核问题 目前大多数 SR 的 model 都是用的合成下采样图片来进行训练的,而这些合成的图片常常使用的是 MATLAB 里面的 imresize 函数来进行实现的,这样的做法也就是会使得 SR-kernel 是固定和理想。当然还有很多是用各向 ...
分类:
其他好文 时间:
2021-03-18 14:01:13
阅读次数:
0
本文介绍的是k8s证书介绍以及通过kubeadm 安装的集群的证书更新方式。 证书默认的安装位置 /etc/kubernetes/pki 涉及到的证书 各个证书介绍 Kubernetes 集群根证书 其他证书都是由此根证书签发的 /etc/kubernetes/pki/ca.crt /etc/kub ...
分类:
其他好文 时间:
2021-03-16 13:23:16
阅读次数:
0
Each year some languages die out. Some say this is good because fewer languages would make communication easier and relieve people of the burden of le ...
分类:
其他好文 时间:
2021-03-02 12:23:31
阅读次数:
0
统计1-2000000中的素数 php采用的是最版的php7.4 golang采用的是最新版的1.16,开启4个协程 <?php $startTime = time(); $number = 2000000; $primeNumbers = []; for ($i=1;$i<$number;$i++ ...
分类:
Web程序 时间:
2021-02-22 11:53:43
阅读次数:
0
jq Bash, unfortunately, doesn’t ship with a command that can work with JSON natively. In this lesson, we’ll learn how to read and do basic queries on ...
分类:
Web程序 时间:
2021-02-15 12:41:34
阅读次数:
0
字符串类型 声明变量 //声明字符串 String str1 = 'hello'; String str2 = 'dart'; //字符串拼接 print('$str1 $str2'); print(str1 + " " + str2); 属性 String str = 'hello world'; ...
分类:
其他好文 时间:
2021-02-01 12:21:53
阅读次数:
0
shader之threejs应用 shader用作编写threejs自定义材质的着色器。 效果: 代码: <template> <div class="threeModel"> <div id="modelBox"></div> </div> </template> <script> import ...
分类:
Web程序 时间:
2021-01-25 11:14:53
阅读次数:
0