摘要:
family is the only thing that matters! 阅读全文
摘要:
https://blog.csdn.net/qq_36643282/article/details/105190759 yum install https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd. 阅读全文
摘要:
Game of Thrones Season 4 — The Laws of Gods and Men Shaes: "……I took his face in my hands and said,'I am yours and you are mine.'" Tyrion: "Shae……(dee 阅读全文
摘要:
https://juejin.im/post/6844903985158045703 主要观点: 同步与异步关注的是方法的执行方是主线程还是其他线程,主线程的话需要等待方法执行完成,其他线程的话无需等待立刻返回方法调用,主线程可以直接执行接下来的代码。 阻塞和非阻塞仅能与同步进行组合。而异步天然就是 阅读全文
摘要:
为什么 (s = head.next)== null || s.thread != Thread.currentThread() 可以实现判断是否阻塞队列中还有线程。 后面可以理解,s 不等于null,并且关联的线程不是当前线程,所以说明阻塞队列中还有其他线程。 但是当s 等于null的时候,为什么 阅读全文
摘要:
1. centos自身的准备 关闭防火墙 systemctl stop firewalld.service systemctl disable firewalld.service 然后在 /usr/local文件夹下面分别创建jdk,mysql,redis,nginx等文件夹 2 . jdk的安装 阅读全文
摘要:
https://www.cnblogs.com/yangyuanhu/p/12960669.html 主要参考该文章 安装redis的时候,一直编译报错,经排查应该是gcc版本过低,主要解决方案: yum -y install centos-release-scl yum -y install de 阅读全文
摘要:
On Mac OS brew install pstree On Fedora/Red Hat/CentOS yum install psmisc using psmisc package for pstree On Ubuntu/Debian APT apt get install psmisc 阅读全文
摘要:
https://blog.csdn.net/topwqp/article/details/8595936 解释的很清楚 注: javaw classpath . javaw.HelloWorldSwing 启动的进程为javaw.exe java classpath . javaw.HelloWor 阅读全文