IPv6 with Docker Estimated reading time: 10 minutes The information in this section explains IPv6 with the Docker default bridge. This is a bridgenetw ...
分类:
其他好文 时间:
2018-06-20 21:13:47
阅读次数:
448
Reading english refs is a wonderful and amazing thing. Do you know what I mean? ...
分类:
其他好文 时间:
2018-06-17 18:53:12
阅读次数:
144
POJ1161——The Suspects The Suspects Time Limit: 1000MS Memory Limit: 20000K Total Submissions: 48220 Accepted: 23072 Description Severe acute respirato ...
分类:
其他好文 时间:
2018-06-16 20:32:10
阅读次数:
187
Fpm之tomcat-7.0.88rpm包定制一、tomcat-7.0.88编译包安装1.编译包下载[root@localhostsoftware]wgethttp://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-7/v7.0.88/bin/apache-tomcat-7.0.88.tar.gz2.解压,并重定向到指定的安装存放路路[root
分类:
其他好文 时间:
2018-06-14 18:31:43
阅读次数:
179
信号量是用来控制线程并发数的一内置计数器,每当调用acquire()时-1,调用release时+1,计数器不能小于0。 semaphore=threading.Semaphore(5) #设置信号量为5 4把锁用来做同步: 1)同步锁、互斥锁:lock() 2)递归锁:Rlock() 3)信号量: ...
分类:
编程语言 时间:
2018-06-14 11:38:51
阅读次数:
181
1. 深度阅读 The impact of the Internet on people's reading habits is vividly revealed in the picture above: a young woman says to a young man, "It's a pit ...
分类:
其他好文 时间:
2018-06-13 15:09:08
阅读次数:
190
背景以及问题描述: Inception-style models的基本单元是Inception module。Inception model是Inception module堆砌而成,这与VGG-style network这种由简单的conv layer堆砌而成的网络不一样。虽然Inception ...
分类:
其他好文 时间:
2018-06-13 01:03:07
阅读次数:
619
问题背景 我们这边是一个基于Nginx的API网关(以下标记为A),最近两天有调用方反馈,偶尔会出现502错误,我们从Nginx的error日志里看,就会发现有" upstream prematurely closed connection while reading response header ...
分类:
其他好文 时间:
2018-06-08 19:26:29
阅读次数:
29449
用EXPLAIN看MySQL的执行计划时经常会看到Impossible WHERE noticed after reading const tables这句话,意思是说MySQL通过读取“const tables”,发现这个查询是不可能有结果输出的。比如对下面的表和数据: create table ...
分类:
数据库 时间:
2018-06-08 12:05:05
阅读次数:
178
使用 EXPLAIN 执行计划的时候,在 Extra 中偶尔会看到这样的描述: Impossible WHERE noticed after reading const tables 字面上的意思是:读取const tables表之后, 没有发现匹配的行。 通过示例我们重现一下该场景。首先创建两张表 ...
分类:
数据库 时间:
2018-06-08 11:54:35
阅读次数:
227