https://www.jianshu.com/p/51f3653d87ad https://blog.csdn.net/qq_39591507/article/details/81288644?utm_medium=distribute.pc_relevant_t0.none-task-blog- ...
分类:
系统相关 时间:
2020-06-24 15:57:57
阅读次数:
54
有向图 无向图 概念 时间戳 \(dfn[x]\),在深度优先遍历中,按照每个节点第一次被访问的顺序,依次做整数标记 追溯值 \(low[x]\),通过非搜索边能到达的最小时间戳 割边判定法则 无向边$(x,y)$是割边/桥,当且仅当存在x的一个子节点满足$dfn[x] < low[y]$ 删除无向 ...
分类:
编程语言 时间:
2020-06-24 15:53:36
阅读次数:
48
--方式1AND CASE WHEN new_imei LIKE @imei THEN 1 WHEN new_enterimei LIKE @imei THEN 1 ELSE 0 END = 1 --方式2AND CASE WHEN SUBSTRING(new_imei,0,LEN(@imei)+1 ...
分类:
其他好文 时间:
2020-06-24 11:44:36
阅读次数:
78
有时候会看见IS_ENABLED(CONFIG_XXXX)来测试某个Kconfig选项是否开启(即选中为y或者m). 如 if (IS_ENABLED(CONFIG_TIME_LOW_RES) && timer->is_rel) rem -= hrtimer_resolution;当TIME_LOW ...
分类:
系统相关 时间:
2020-06-23 17:25:00
阅读次数:
89
JSON Web Token (JWT) Abstract JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The clai ...
分类:
Web程序 时间:
2020-06-23 15:28:12
阅读次数:
96
SELECT TOP 10 execution_count as [Number Of Executions],total_worker_time/execution_count as [Average CPU Time],total_elapsed_time/execution_count as ...
分类:
数据库 时间:
2020-06-23 11:38:09
阅读次数:
93
数据结构 #include <stdio.h> #include <stdlib.h> int search(int arr[],int len,int key) { int mid,low = 1; int high = len; //printf("%d!",high); while(low < ...
分类:
其他好文 时间:
2020-06-22 18:37:56
阅读次数:
79
原文链接:https://www.cnblogs.com/eastonliu/p/9141457.html 初识 unittest是python内置的一个单元测试框架,在学习怎么使用它之前,我们先来了解它的一些概念和原理。 Test Case:测试用例,一个TestCase的实例就是一个测试用例。什 ...
分类:
其他好文 时间:
2020-06-22 14:45:39
阅读次数:
72
低层级GPU虚拟内存管理引论 Introducing Low-Level GPU Virtual Memory Management CUDA应用程序越来越需要尽可能快速高效地管理内存。在CUDA 10.2之前,开发人员可用的选项数量仅限于CUDA提供的类似malloc的抽象。 CUDA10.2为虚 ...
分类:
其他好文 时间:
2020-06-22 12:50:43
阅读次数:
52