linux/sdk/out/system/tdGUI/output/rules.mk %.d: %.c $(CONFIG_H_FILE) - @$(CC) -MM $(EXECFLAGS) $(LIBCFLAGS) $(CFLAGS) $(EXTRACFLAGS) $< | sed -e 's,^[ ...
分类:
其他好文 时间:
2021-03-12 12:40:52
阅读次数:
0
queue //STL之queue用法 //实现先进先出 #include<stdio.h> #include<queue> using namespace std; int main() { //定义 queue<int> qu; //进队 qu.push(1); qu.push(2); qu.p ...
分类:
其他好文 时间:
2021-03-08 13:44:24
阅读次数:
0
React源码 commit阶段详解点击进入React源码调试仓库。当render阶段完成后,意味着在内存中构建的workInProgress树所有更新工作已经完成,这包括树中fiber节点的更新、diff、effectTag的标记、effectList的收集。此时workInProgress树的完 ...
分类:
其他好文 时间:
2021-02-27 13:21:37
阅读次数:
0
Fiddler实现弱网的测试 无论是做web端还是app端的测试,我们都需要对弱网进行测试,对于弱网方法有很多种,如:Fiddler模拟弱网,控制电脑的网速等,今天介绍下Fiddler如何进行弱网测试。 1、Fiddler中启动弱网 打开Fiddler,Rules->Performance->勾选 ...
分类:
其他好文 时间:
2021-02-25 11:46:31
阅读次数:
0
discription: 给定$n$项工作的起止时间, 每个工人同一时间最多干一件工作. 问做完这些工作最少要雇佣多少工人?(万恶的资本家) \(第一行一个整数 n,(1≤n≤100000),表示工作的数目.\) \(接下来 n 行, 第 i+1 行有俩整数 S_i, E_i, (0≤Si<Ei≤1 ...
分类:
其他好文 时间:
2021-02-19 12:58:23
阅读次数:
0
(1) It Has To Work. (2) No matter how hard you push and no matter what the priority, you can't increase the speed of light. (2a) (corollary). No matte ...
分类:
Web程序 时间:
2021-02-18 13:21:47
阅读次数:
0
PG可以一主多备,目前pg93s是主,pg93和pg93s2是备节点,在主上查询: postgres=# select usename,application_name,client_addr,state,sync_state,sync_priority from pg_stat_replicati ...
分类:
其他好文 时间:
2021-02-06 12:14:28
阅读次数:
0
Why personal data matters? Why protect personal data? What is GPDR? What do companies rish when they don't play by the rules? What is personal data? T ...
分类:
其他好文 时间:
2021-02-03 10:36:39
阅读次数:
0
Canopy is hiring Postgres SQL Engineer. Database expert, knowing how to build a scalable database application. https://angel.co/company/canopy-servici ...
分类:
数据库 时间:
2021-02-03 10:35:29
阅读次数:
0
kubernetes代码版本:v1.20 看这篇文章的前提: 有 golang 的基础 对于 kubernetes 有基本的了解 kube-apiserver的启动过程可以分为以下几个步骤: 1.资源注册 2.解析命令行参数 3.创建 apiserver 通用配置 4.创建 APIExtension ...