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
原文链接: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
Allure常用的注解 Feature: 标注主要功能模块Story: 标注Features功能模块下的分支功能Severity: 标注测试用例的重要级别Step: 标注测试用例的重要步骤Issue和TestCase: 标注Issue、Case,可加入URL 1、Features定制详解 执行命令: ...
分类:
其他好文 时间:
2020-06-22 01:13:13
阅读次数:
54
1 概要 switch case语句 for循环语句 goto语句 字符串的格式化 运算符 2 switch case语句 package main func main() { /*switch 1 + 1 { case 1: fmt.Println("equal one") case 2: fmt ...
分类:
其他好文 时间:
2020-06-21 15:42:26
阅读次数:
51
最近将windows上的mysql数据库导入到阿里云上,结果项目一直报错,提示表不存在,网上查了下应该是mysql的配置导致的,找到mysql的配置文件,我的配置文件叫“my.cnf”,在最后加一行“lower_case_table_names=1” 加上配置之后记得重启数据库 ...
分类:
数据库 时间:
2020-06-21 12:15:31
阅读次数:
52
前言 HashMap 是无论在工作还是面试中都非常常见常考的数据结构。 比如 Leetcode 第一题 Two Sum 的某种变种的最优解就是需要用到 HashMap 的,高频考题 LRU Cache 是需要用到 LinkedHashMap 的。 HashMap 用起来很简单,底层实现也不复杂,先来 ...
分类:
其他好文 时间:
2020-06-20 14:13:27
阅读次数:
68
Given a string S, consider all duplicated substrings: (contiguous) substrings of S that occur 2 or more times. (The occurrences may overlap.) Return a ...
分类:
其他好文 时间:
2020-06-20 13:20:54
阅读次数:
43