Introduction In LTE the Downlink Shared Channel (DL-SCH) is a transport channel used for the transmission of user data, dedicated control and user-spe ...
分类:
其他好文 时间:
2020-07-05 00:30:22
阅读次数:
93
一、报错日志java.lang.IllegalStateException: Async support must be enabled on a servlet and for all filters involved in async request processing. This is do ...
分类:
其他好文 时间:
2020-07-03 17:54:31
阅读次数:
134
OLTP(on-line transaction processing)翻译为联机事务处理, OLAP(On-Line Analytical Processing)翻译为联机分析处理。从字面上来看OLTP是做事务处理,OLAP是做分析处理。从对数据库操作来看,OLTP主要是对数据的增删改,OLAP是... ...
分类:
其他好文 时间:
2020-07-03 17:08:45
阅读次数:
52
# translate words through youdao.com // discription about the code # the problem is the form data of youdao webpage has been coded # import necessary ...
分类:
编程语言 时间:
2020-07-03 01:19:17
阅读次数:
120
给定一个链表,旋转链表,将链表每个节点向右移动 k 个位置,其中 k 是非负数。 示例 1: 输入: 1->2->3->4->5->NULL, k = 2 输出: 4->5->1->2->3->NULL 解释: 向右旋转 1 步: 5->1->2->3->4->NULL 向右旋转 2 步: 4->5 ...
分类:
其他好文 时间:
2020-07-02 13:42:53
阅读次数:
57
怎么打印日志 ? 开发中好的日志打印方式,可以提高我们debug速度,线上故障得时候也可以快速定位问题。 ? 怎么打印日志呢? 基本格式: ? 1:必须使用参数化信息的方式: logger.debug("[xxService]Processing trade with id:[{}] and sym ...
分类:
其他好文 时间:
2020-07-01 23:57:05
阅读次数:
105
在网页进行css布局时居中是经常需要用到的,其中就有css绝对定位居中,那么,css绝对定位如何实现居中?今天的这篇文章将给大家来介绍关于css绝对定位居中的实现方法。 css绝对定位居中的实现方法有很多,下面将给大家介绍css绝对定位居中的四种方法。 前端10K面试准备,最完整面试真题分享(含答案 ...
分类:
Web程序 时间:
2020-06-30 20:41:33
阅读次数:
55
异常兴奋,今天要做一个小动画,fighting CSS动画 transform rotate旋转 transform-rotate(value) 2D旋转 translate偏移 transform-translateX(value) X轴方向偏移value元素 父元素为原点 正值从左到右 valu ...
分类:
Web程序 时间:
2020-06-30 10:30:18
阅读次数:
69
该教程基于VSCode 加一些插件 youdao translate https://marketplace.visualstudio.com/items?itemName=Yao-Translate.yao-translate 插件比较好用 按 Cmd+Shift+T 或 Ctrl+Shift+T ...
分类:
其他好文 时间:
2020-06-29 18:39:18
阅读次数:
90
python并发编程之多进程理论部分 阅读目录 一 什么是进程 二 进程与程序的区别 三 并发与并行 四 同步\异步and阻塞\非阻塞(重点) 五 进程的创建(了解) 六 进程的终止(了解) 七 进程的层次结构 八 进程的状态 九 进程并发的实现(了解) 一 什么是进程 进程:正在进行的一个过程或者 ...
分类:
编程语言 时间:
2020-06-29 15:01:09
阅读次数:
59