码迷,mamicode.com
首页 >  
搜索关键字:interruptedexception    ( 191个结果
Jaeger-Opentracing的Java-client完整分布式追踪链
jaegeropentracing的Java-client完整分布式追踪链,在分布式系统中透传trace信息 下面是代码: client端代码如下: public static void main(String[] args) throws InterruptedException { Config ...
分类:编程语言   时间:2020-03-14 18:19:42    阅读次数:63
Java多线程(三)模拟龟兔赛跑
用Runnable接口实现多线程 public class ThreadDemo { public static void main(String[] args) throws InterruptedException { Racer racer = new Racer(); new Thread( ...
分类:编程语言   时间:2020-03-06 17:24:08    阅读次数:70
ReentrantReadWriteLock读写锁
使用分析 四种读写情况:读读 读写 写读 写写, 接下来分四种情况看最终结果 情况一:读读使用 public static void main(String[] args) throws InterruptedException { ReentrantReadWriteLock readWriteL ...
分类:其他好文   时间:2020-02-18 13:23:22    阅读次数:71
ReentrantLock
一、源码 1、Lock接口 void lock(); 锁 void lockInterruptibly() throws InterruptedException; 在等待锁时被中断会抛异常 boolean tryLock(); 判断锁是否可用,可用就获取 boolean tryLock(long ...
分类:其他好文   时间:2020-02-18 10:09:04    阅读次数:56
Metaspace 内存溢出分析
class Metaspace extends ClassLoader { public static List<Class<?>> createClasses() throws InterruptedException { // 类持有 List<Class<?>> classes = new A ...
分类:Web程序   时间:2019-12-30 19:16:00    阅读次数:149
HDFS知识点
1.通过代码验证集群的配置文件的优先级 HDFS文件上传 1.编写源代码 @Test public void testCopyFromLocalFile() throws IOException, InterruptedException, URISyntaxException { // 1 获取文 ...
分类:其他好文   时间:2019-12-23 20:44:08    阅读次数:90
(20)ElasticSearch java项目中的根据指定条件删除文档和查询所有文档
1、删除index1中,title包含工厂的文档 @Test public void testQueryDelete() throws IOException, InterruptedException, ExecutionException { //指定集群 Settings settings = ...
分类:编程语言   时间:2019-12-23 00:47:44    阅读次数:242
(21)ElasticSearch java项目中match、multimath、term、terms以及范围、前缀、通配符、模糊、类型、ids等查询示例
1、查询index1中content字段包含工厂的文档 @Test public void testMatch() throws IOException, InterruptedException, ExecutionException { //指定集群 Settings settings = Se ...
分类:编程语言   时间:2019-12-23 00:37:12    阅读次数:88
(19)ElasticSearch java项目中的批量操作mget和bulk
1、查询索引是index1,类型是blog,id是8、10和索引是lib3,类型是user,id是1、2、3的文档 @Test public void testMultiGet() throws IOException, InterruptedException, ExecutionExceptio ...
分类:编程语言   时间:2019-12-23 00:27:49    阅读次数:131
lambda concurrent List<Map> to Map
Object c = Stream.of( CompletableFuture.supplyAsync(() -> { Map m = new HashMap(); try { Thread.sleep(2000); } catch (InterruptedException e) { e.prin ...
分类:其他好文   时间:2019-12-22 18:28:58    阅读次数:88
191条   上一页 1 2 3 4 5 ... 20 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!