一个很简单的分享

首先说一下分享起因,前几天下载 openjdk 源码时,官方提倡是这样:

$ hg clone http://hg.openjdk.java.net/jdk9/jdk9
$ cd jdk9
$ bash get_sources.sh

因为网络原因,这问题首先是出在第一条命令上,反复几次都中途报错下不完。
就在这种等待时间不能确定,而且运行结果又未知的情况下
我把它写成如下脚本,运行之后我去睡觉,第二天一看已下完!

#!/usr/bin/bash

hg clone http://hg.openjdk.java.net/jdk9/jdk9

while [ $? -ne 0 ]
do
    hg clone http://hg.openjdk.java.net/jdk9/jdk9
done

当然这只是开始,真正的源码还没开始下载,接下来对下载下来的 jdk9/get_sources.sh 还要继续做类似改动,改动部分在文件底部,改成这样之后即可,还是一样在下边加上 while 循环:

# Get clones of all absent nested repositories (harmless if already exist)
sh ./common/bin/hgforest.sh clone "$@"

while [ $? -ne 0 ]
do
    sh ./common/bin/hgforest.sh clone "$@"
done

# Update all existing repositories to the latest sources
sh ./common/bin/hgforest.sh pull -u

while [ $? -ne 0 ]
do
    sh ./common/bin/hgforest.sh pull -u
done

注意观察上边脚本,其实我第一次尝试改动的是这个文件jdk9/common/bin/hgforest.sh,只不过这个不好改,而且像这种用版本控制工具来下载代码,如果一个目录已经成功下载完成,它是会预先检查出来而不会重新下载的,所以上边的改动方法就是最简单的,起因讲述完毕。

接下来的分享回到我们熟悉的 git 上边来,还是众所周知的网络原因,在github上下载代码也时常会有上述情况发生,如果时间不是问题,例如说一宿时间下完就行,那么上述方法依然可行。
接下来继续引申一下,如果想从github上几乎同时下载多个项目源码,或者再退一步,第一个还没下完,我就想下第二个、第三个的话。到底是多开窗口,多开选项卡,还是后台运行。如果此时把之前的网络原因考虑在内,DRY断定前述种种皆不可行。可能已经被猜到了,应该写一个“多线程”的bash脚本来完成这件事。
至于“多线程”的bash脚本……,但是我想到了一个更好的方法,借助 Makefile来做这件事异常简单!
首先写一个稍微通用一点的上述简单脚本,可以叫做 get_any_sources.sh

#!/usr/bin/bash

git clone https://github.com/$1.git

while [ $? -ne 0 ]
do
    git clone https://github.com/$1.git
done

再写一个仅有两行的 Makefile即可:

%:
    bash get_any_sources.sh $@

接下来随便在 github 上找一些项目来下载,像下面这样来用:

# nice make -j4 docker/docker sunspot/sunspot apple/swift facebook/react

注意 -j 4 要加才不枉费上边的两行 Makefile,不然就没有同时下载的效果了,至于 -j 几 至少是同时下载的项目数,另外 nice 并不是必需的。
运行结果如下,发现没有 docker 第一次下载时失败了。

bash get_sources.sh docker/docker
bash get_sources.sh sunspot/sunspot
bash get_sources.sh apple/swift
bash get_sources.sh facebook/react
Cloning into 'docker'...
Cloning into 'sunspot'...
Cloning into 'react'...
Cloning into 'swift'...
remote: Counting objects: 314457, done.
remote: Compressing objects: 100% (7/7), done.
remote: Counting objects: 17273, done.
remote: Counting objects: 65503, done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 314457 (delta 0), reused 0 (delta 0), pack-reused 314450
Receiving objects: 100% (314457/314457), 64.27 MiB | 1.95 MiB/s, done.
Resolving deltas: 100% (257725/257725), done.B | 43.00 KiB/s   
Checking connectivity... done.
fatal: unable to access 'https://github.com/docker/docker.git/': SSL read: error:00000000:lib(0):func(0):reason(0), errno 104
Cloning into 'docker'...
remote: Counting objects: 126929, done.
remote: Compressing objects: 100% (10/10), done.
remote: Total 126929 (delta 6), reused 2 (delta 2), pack-reused 126917
Receiving objects: 100% (126929/126929), 76.08 MiB | 1.08 MiB/s, done.
Resolving deltas: 100% (84561/84561), done. MiB | 73.00 KiB/s   
Checking connectivity... done.
remote: Total 65503 (delta 0), reused 0 (delta 0), pack-reused 65490
Receiving objects: 100% (65503/65503), 73.17 MiB | 119.00 KiB/s, done.
Resolving deltas: 100% (41363/41363), done. MiB | 68.00 KiB/s   
Checking connectivity... done.
remote: Total 17273 (delta 0), reused 0 (delta 0), pack-reused 17273
Receiving objects: 100% (17273/17273), 148.55 MiB | 197.00 KiB/s, done.
Resolving deltas: 100% (11316/11316), done.
Checking connectivity... done.

最后用事实说明一下这个如此简单的分享的意义所在,你们看下我本地下载 jdk9 源码时多少次下载失败!每一段 WARNING *** 之后的 # Repositories: ... 就是一次中途失败之后的重新开始。

It works @ jdk9 $ bash get_source.sh 
# Repositories:  corba jaxp jaxws langtools jdk hotspot nashorn 
                corba:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/corba corba
                 jaxp:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jaxp jaxp
                corba:   requesting all changes
                 jaxp:   requesting all changes
                corba:   adding changesets
                 jaxp:   adding changesets
                corba:   adding manifests
                corba:   adding file changes
                 jaxp:   adding manifests
                 jaxp:   adding file changes
                corba:   added 735 changesets with 5227 changes to 2580 files
                corba:   updating to branch default
                corba:   1186 files updated, 0 files merged, 0 files removed, 0 files unresolved
                jaxws:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jaxws jaxws
                jaxws:   requesting all changes
                jaxws:   adding changesets
                jaxws:   adding manifests
                jaxws:   adding file changes
                 jaxp:   added 859 changesets with 11287 changes to 8203 files
                 jaxp:   updating to branch default
                 jaxp:   3174 files updated, 0 files merged, 0 files removed, 0 files unresolved
            langtools:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/langtools langtools
            langtools:   requesting all changes
            langtools:   adding changesets
            langtools:   adding manifests
            langtools:   adding file changes
            langtools:   added 3182 changesets with 29716 changes to 9483 files
                jaxws:   transaction abort!
                jaxws:   rollback completed
            langtools:   updating to branch default
                jaxws:   abort: stream ended unexpectedly (got 16588 bytes, expected 32956)
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
            langtools:   7504 files updated, 0 files merged, 0 files removed, 0 files unresolved
              hotspot:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/hotspot hotspot
                  jdk:   requesting all changes
                  jdk:   adding changesets
              hotspot:   requesting all changes
              hotspot:   adding changesets
              hotspot:   adding manifests
                  jdk:   adding manifests
              hotspot:   adding file changes
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 13753 bytes, expected 16914)
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 6117 bytes, expected 6563)
              hotspot:   transaction abort!
              hotspot:   rollback completed
              hotspot:   abort: stream ended unexpectedly (got 1111 bytes, expected 2764)
WARNING: hotspot exited abnormally (255)
WARNING: jaxws exited abnormally (255)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jaxws jdk hotspot nashorn 
                jaxws:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jaxws jaxws
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
                  jdk:   requesting all changes
                jaxws:   requesting all changes
                jaxws:   adding changesets
                  jdk:   adding changesets
                jaxws:   adding manifests
                jaxws:   transaction abort!
                jaxws:   rollback completed
                jaxws:   abort: connection ended unexpectedly
              hotspot:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/hotspot hotspot
              hotspot:   requesting all changes
              hotspot:   adding changesets
              hotspot:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 322 bytes, expected 327)
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              hotspot:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 3043939 bytes, expected 5631663)
              hotspot:   added 9699 changesets with 55379 changes to 7785 files
              hotspot:   updating to branch default
              hotspot:   5911 files updated, 0 files merged, 0 files removed, 0 files unresolved
WARNING: jaxws exited abnormally (255)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jaxws jdk nashorn 
                jaxws:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jaxws jaxws
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
                  jdk:   requesting all changes
                  jdk:   adding changesets
                jaxws:   requesting all changes
                jaxws:   adding changesets
                jaxws:   adding manifests
                jaxws:   adding file changes
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 39 bytes, expected 82)
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                jaxws:   transaction abort!
                jaxws:   rollback completed
                jaxws:   abort: stream ended unexpectedly (got 1998 bytes, expected 10818)
WARNING: jaxws exited abnormally (255)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jaxws jdk nashorn 
                jaxws:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jaxws jaxws
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
                jaxws:   requesting all changes
                jaxws:   adding changesets
                jaxws:   adding manifests
                  jdk:   requesting all changes
                  jdk:   adding changesets
                jaxws:   adding file changes
                jaxws:   added 654 changesets with 21107 changes to 10761 files
                jaxws:   updating to branch default
                jaxws:   3717 files updated, 0 files merged, 0 files removed, 0 files unresolved
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 9281 bytes, expected 12428)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 322 bytes, expected 327)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
              nashorn:   requesting all changes
              nashorn:   adding changesets
                  jdk:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 2 bytes, expected 80)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 32 bytes, expected 8245)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
              nashorn:   requesting all changes
                  jdk:   adding changesets
              nashorn:   adding changesets
              nashorn:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 103 bytes, expected 245)
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: connection ended unexpectedly
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 208 bytes, expected 304)
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 9154 bytes, expected 13169)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: connection ended unexpectedly
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: Connection reset by peer
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 19253 bytes, expected 22530)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 322 bytes, expected 327)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
                  jdk:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 100683 bytes, expected 134527)
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 133822 bytes, expected 192443)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 322 bytes, expected 327)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
              nashorn:   requesting all changes
              nashorn:   adding changesets
                  jdk:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
                  jdk:   adding manifests
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 28837 bytes, expected 73222)
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 44518 bytes, expected 68365)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
              nashorn:   requesting all changes
                  jdk:   adding changesets
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 103 bytes, expected 245)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
                  jdk:   transaction abort!
                  jdk:   rollback completed
                  jdk:   abort: stream ended unexpectedly (got 128 bytes, expected 542)
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 6 bytes, expected 80)
WARNING: jdk exited abnormally (255)
WARNING: nashorn exited abnormally (255)
# Repositories:  jdk nashorn 
                  jdk:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/jdk jdk
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
                  jdk:   requesting all changes
                  jdk:   adding changesets
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
                  jdk:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 5259 bytes, expected 5633)
                  jdk:   adding file changes
                  jdk:   added 13344 changesets with 128118 changes to 44542 files
                  jdk:   updating to branch default
                  jdk:   24310 files updated, 0 files merged, 0 files removed, 0 files unresolved
WARNING: nashorn exited abnormally (255)
# Repositories:  nashorn 
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   transaction abort!
              nashorn:   rollback completed
              nashorn:   abort: stream ended unexpectedly (got 3763 bytes, expected 12310)
WARNING: nashorn exited abnormally (255)
# Repositories:  nashorn 
              nashorn:   hg clone http://hg.openjdk.java.net/jdk9/jdk9/nashorn nashorn
              nashorn:   requesting all changes
              nashorn:   adding changesets
              nashorn:   adding manifests
              nashorn:   adding file changes
              nashorn:   added 1581 changesets with 13304 changes to 3961 files
              nashorn:   updating to branch default
              nashorn:   3093 files updated, 0 files merged, 0 files removed, 0 files unresolved
# Repositories:  . corba jaxp jaxws langtools jdk hotspot nashorn 
                    .:   cd . && hg pull -u
                corba:   cd corba && hg pull -u
                 jaxp:   cd jaxp && hg pull -u
                jaxws:   cd jaxws && hg pull -u
                    .:   pulling from http://hg.openjdk.java.net/jdk9/jdk9
            langtools:   cd langtools && hg pull -u
                corba:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/corba
                  jdk:   cd jdk && hg pull -u
                 jaxp:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/jaxp
              hotspot:   cd hotspot && hg pull -u
              nashorn:   cd nashorn && hg pull -u
                jaxws:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/jaxws
                  jdk:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/jdk
              nashorn:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/nashorn
            langtools:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/langtools
              hotspot:   pulling from http://hg.openjdk.java.net/jdk9/jdk9/hotspot
                    .:   searching for changes
                    .:   no changes found
                 jaxp:   searching for changes
                 jaxp:   no changes found
                jaxws:   searching for changes
                jaxws:   no changes found
            langtools:   searching for changes
            langtools:   no changes found
              nashorn:   searching for changes
              nashorn:   no changes found
                  jdk:   searching for changes
                  jdk:   no changes found
              hotspot:   searching for changes
              hotspot:   no changes found
                corba:   searching for changes
                corba:   no changes found
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,616评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,020评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,078评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,040评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,154评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,265评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,298评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,072评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,491评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,795评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,970评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,654评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,272评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,985评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,815评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,852评论 2 351

推荐阅读更多精彩内容