OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DefaultThreadFactory
(Results
1 - 10
of
10
) sorted by null
/external/grpc-grpc-java/alts/src/main/java/io/grpc/alts/
HandshakerServiceChannel.java
25
import io.netty.util.concurrent.
DefaultThreadFactory
;
45
new NioEventLoopGroup(1, new
DefaultThreadFactory
("handshaker pool", true));
72
ThreadFactory clientThreadFactory = new
DefaultThreadFactory
("handshaker pool", true);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
FifoPriorityThreadPoolExecutor.java
22
* {@link com.bumptech.glide.load.engine.executor.FifoPriorityThreadPoolExecutor.
DefaultThreadFactory
}.
27
this(poolSize, poolSize, 0, TimeUnit.MILLISECONDS, new
DefaultThreadFactory
());
44
public static class
DefaultThreadFactory
implements ThreadFactory {
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/
Utils.java
41
import io.netty.util.concurrent.
DefaultThreadFactory
;
145
DefaultThreadFactory
tf = new
DefaultThreadFactory
("client-elg-", true /*daemon */);
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/
NettyFlowControlTest.java
35
import io.netty.util.concurrent.
DefaultThreadFactory
;
75
new
DefaultThreadFactory
("flowcontrol-test-pool", true));
ProxyTest.java
21
import io.netty.util.concurrent.
DefaultThreadFactory
;
42
new
DefaultThreadFactory
("proxy-test-pool", true));
TrafficControlProxy.java
21
import io.netty.util.concurrent.
DefaultThreadFactory
;
55
new
DefaultThreadFactory
("proxy-pool", true));
/external/grpc-grpc-java/benchmarks/src/jmh/java/io/grpc/benchmarks/netty/
AbstractBenchmark.java
43
import io.netty.util.concurrent.
DefaultThreadFactory
;
221
ThreadFactory serverThreadFactory = new
DefaultThreadFactory
("STF pool", true /* daemon */);
377
ThreadFactory clientThreadFactory = new
DefaultThreadFactory
("CTF pool", true /* daemon */);
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/qps/
AsyncServer.java
35
import io.netty.util.concurrent.
DefaultThreadFactory
;
96
ThreadFactory tf = new
DefaultThreadFactory
("server-elg-", true /*daemon */);
/external/grpc-grpc-java/netty/src/main/java/io/grpc/netty/
Utils.java
44
import io.netty.util.concurrent.
DefaultThreadFactory
;
193
// Use Netty's
DefaultThreadFactory
in order to get the benefit of FastThreadLocal.
195
ThreadFactory threadFactory = new
DefaultThreadFactory
(name, useDaemonThreads);
/external/grpc-grpc-java/benchmarks/src/main/java/io/grpc/benchmarks/driver/
LoadClient.java
38
import io.netty.util.concurrent.
DefaultThreadFactory
;
118
new
DefaultThreadFactory
("client-worker", true));
Completed in 2247 milliseconds