Home | History | Annotate | Download | only in inject

Lines Matching refs:I0

1086   static class I0 {
1090 I0(I1 i) {}
1161 * <p>I0 -> I1 -> I2 -> J1 and J0 -> J1 -> J2 -> K1 and K0 -> K1 -> K2, where I1, J1 and K1 are
1182 FutureTask<I0> firstThreadResult = new FutureTask<>(fetchClass(injector, I0.class));
1183 Thread i0Thread = new Thread(firstThreadResult, "I0.class");
1249 "Both I0 and J0 can not be a part of a dependency cycle",
1250 errorMessage.contains(I0.class.getName()) && errorMessage.contains(J0.class.getName()));
1255 "Both K0 and I0 can not be a part of a dependency cycle",
1256 errorMessage.contains(K0.class.getName()) && errorMessage.contains(I0.class.getName()));
1278 // NOTE: J0,K0,I0 are not reported because their locks are not part of the cycle.