https://docs.python.org/3/library/multiprocessing.html?highlight=imap_unordered#multiprocessing.pool.Pool.imap_unordered 注意,worker函数不能写在其他函数内部: def fu ...
分类:
编程语言 时间:
2021-06-04 19:54:54
阅读次数:
0
dremio 16 很早就发布了,今天打算升级下,但是碰到了一个意想不到的问题,驱动兼容问题 问题描述 因为dremio 16 开始,默认官方自己保证的datasource支持了ide时间处理,所以大部分以前开发的驱动运行是有问题的(目前测试16之前的基本都应该会有问题,出过官方的driver) 问 ...
分类:
其他好文 时间:
2021-06-04 19:07:15
阅读次数:
0
客户端发送tcp请求给服务端,最终所有服务端的逻辑都存在于服务端的netty中,进一步说就是channelHandler中 public class NettyServerPipelineFactory implements ChannelPipelineFactory { private Nett ...
分类:
其他好文 时间:
2021-06-04 18:49:49
阅读次数:
0
Leetcode 第243场周赛 前两题简单。 第三题一个模拟,容易边界处理不好。 第四题dp,卡精度。 第一题 https://leetcode-cn.com/problems/check-if-word-equals-summation-of-two-words/ 直接算就行。 class So ...
分类:
其他好文 时间:
2021-06-02 18:17:06
阅读次数:
0
1. chrony 服务器端配置 假设chrony服务器端192.168.1.1 $ cat /etc/chrony.conf # Use public servers from the pool.ntp.org project. server ntp1.aliyun.com iburst serv ...
分类:
其他好文 时间:
2021-06-02 16:47:45
阅读次数:
0
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, ...
分类:
其他好文 时间:
2021-05-24 13:17:05
阅读次数:
0
关于C++中 const关键字的探究理解,涉及const与引用、指针、顶层const ...
分类:
编程语言 时间:
2021-05-24 10:52:06
阅读次数:
0
注释 注释并不会被执行,是给写代码的人看的 单行注释 可以注释一行文本 使用 // 表示 多行注释 可以注释一段文本 使用/* */ 文档注释 JavaDoc 使用/** */ 标识符 类名、变量名以及方法名都被称为标识符 标识符规范 1. 所有标识符都应该以字母,美元符($), 或者下划线(_)开 ...
分类:
编程语言 时间:
2021-05-24 06:23:58
阅读次数:
0
1.连接问题 Cannot get a connection, pool error Timeout waiting for idle object 解决: 排查思路: 1.检查是否应用压力过大,无法获取空闲连接 查看cpu、内存 查看tomcat的连接数(netstat -natp | grep ...
分类:
其他好文 时间:
2021-05-24 05:29:42
阅读次数:
0
报错信息:Expected '$(student - name)' to be an inline constant of type java.lang.String in @org.springframework.beans.factory.annotation.Value 这样使用会报错,原因是 ...
分类:
其他好文 时间:
2021-05-24 00:03:03
阅读次数:
0