- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 15 for finaluser (0.07 seconds)
-
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
TestAuthenticationChain chain1 = new TestAuthenticationChain(); TestAuthenticationChain chain2 = new TestAuthenticationChain(); chain1.loadResult = null; chain2.loadResult = createTestUser("finaluser"); authenticationManager.addChain(chain1); authenticationManager.addChain(chain2); User result = authenticationManager.load(user); assertEquals(chain2.loadResult, result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.3K bytes - Click Count (0) -
android/guava/src/com/google/common/base/internal/Finalizer.java
* * 2) To detect when FinalizableReference's class loader has to be garbage collected, at which * point, Finalizer can stop running */ Finalizer finalizer = new Finalizer(finalizableReferenceClass, queue, frqReference); String threadName = "com.google.common.base.internal.Finalizer"; Thread thread = null; if (bigThreadConstructor != null) { try { boolean inheritThreadLocals = false;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 03:19:29 GMT 2026 - 9.6K bytes - Click Count (0) -
guava/src/com/google/common/base/internal/Finalizer.java
* * 2) To detect when FinalizableReference's class loader has to be garbage collected, at which * point, Finalizer can stop running */ Finalizer finalizer = new Finalizer(finalizableReferenceClass, queue, frqReference); String threadName = "com.google.common.base.internal.Finalizer"; Thread thread = null; if (bigThreadConstructor != null) { try { boolean inheritThreadLocals = false;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 11 03:19:29 GMT 2026 - 9.6K bytes - Click Count (0) -
android/guava/src/com/google/common/base/FinalizableReferenceQueue.java
/** Reference to Finalizer.startFinalizer(). */ private static final FinalizerStarter finalizerStarter; static { Class<?> finalizer = loadFinalizer(new SystemLoader(), new DecoupledLoader()); finalizerStarter = finalizer != null ? new ReflectiveStarter(getStartFinalizer(finalizer)) : new DirectStarter(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 19:26:59 GMT 2026 - 15.8K bytes - Click Count (0) -
guava/src/com/google/common/base/FinalizableReferenceQueue.java
/** Reference to Finalizer.startFinalizer(). */ private static final FinalizerStarter finalizerStarter; static { Class<?> finalizer = loadFinalizer(new SystemLoader(), new DecoupledLoader()); finalizerStarter = finalizer != null ? new ReflectiveStarter(getStartFinalizer(finalizer)) : new DirectStarter(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 19:26:59 GMT 2026 - 15.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java
@Test public void testGetFinalizerUrl() { assertThat(getClass().getResource("internal/Finalizer.class")).isNotNull(); } @Test public void testFinalizeClassHasNoNestedClasses() throws Exception { // Ensure that the Finalizer class has no nested classes. // See https://github.com/google/guava/issues/1505 assertThat(Finalizer.class.getDeclaredClasses()).isEmpty(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Feb 27 21:20:19 GMT 2026 - 8.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
assertThat(frqC).isNotSameInstanceAs(sepFrqC); // Check the assumptions above. // FRQ tries to load the Finalizer class (for the reference-collecting thread) in a few ways. // If the class is accessible to the system ClassLoader (ClassLoader.getSystemClassLoader()) // then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 26 02:41:17 GMT 2026 - 7.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java
assertThat(frqC).isNotSameInstanceAs(sepFrqC); // Check the assumptions above. // FRQ tries to load the Finalizer class (for the reference-collecting thread) in a few ways. // If the class is accessible to the system ClassLoader (ClassLoader.getSystemClassLoader()) // then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 26 02:41:17 GMT 2026 - 7.7K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/GcFinalization.java
throw formatRuntimeException( "Latch failed to count down within %d second timeout", timeoutSeconds); } /** * Creates a garbage object that counts down the latch in its finalizer. Sequestered into a * separate method to make it somewhat more likely to be unreachable. */ private static void createUnreachableLatchFinalizer(CountDownLatch latch) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 20:19:19 GMT 2026 - 12.3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
throw formatRuntimeException( "Latch failed to count down within %d second timeout", timeoutSeconds); } /** * Creates a garbage object that counts down the latch in its finalizer. Sequestered into a * separate method to make it somewhat more likely to be unreachable. */ private static void createUnreachableLatchFinalizer(CountDownLatch latch) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 20:19:19 GMT 2026 - 12.3K bytes - Click Count (0)