- Sort Score
- Num 10 results
- Language All
Results 1331 - 1340 of 4,326 for 1Final (0.49 seconds)
-
android/guava/src/com/google/common/base/FinalizableReferenceQueue.java
* public class MyServer implements Closeable { * private static final FinalizableReferenceQueue frq = new FinalizableReferenceQueue(); * // You might also share this between several objects. * * private static final Set<Reference<?>> references = Sets.newConcurrentHashSet(); * // This ensures that the FinalizablePhantomReference itself is not garbage-collected. * * private final ServerSocket serverSocket; * * private MyServer(...) {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/cache/CacheBuilderSpec.java
@GwtIncompatible public final class CacheBuilderSpec { /** Parses a single value. */ private interface ValueParser { void parse(CacheBuilderSpec spec, String key, @Nullable String value); } /** Splits each key-value pair. */ private static final Splitter KEYS_SPLITTER = Splitter.on(',').trimResults(); /** Splits the key from the value. */Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java
* Maven core itself or a Maven core extension. * * @since 3.3.0 */ public class CoreExtensionEntry { private final ClassRealm realm; private final Set<String> artifacts; private final Set<String> packages; private final String key; private final XmlNode configuration; public CoreExtensionEntry( ClassRealm realm, Collection<String> artifacts,Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 4.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
} private class TestService extends AbstractScheduledService { final CyclicBarrier runFirstBarrier = new CyclicBarrier(2); final CyclicBarrier runSecondBarrier = new CyclicBarrier(2); volatile boolean startUpCalled = false; volatile boolean shutDownCalled = false; final AtomicInteger numberOfTimesRunCalled = new AtomicInteger(0); final AtomicInteger numberOfTimesExecutorCalled = new AtomicInteger(0);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CollectSpliterators.java
int splitCharacteristics, long estSplitSize); } @Weak @Nullable OutSpliteratorT prefix; final Spliterator<InElementT> from; final Function<? super InElementT, @Nullable OutSpliteratorT> function; final Factory<InElementT, OutSpliteratorT> factory; int characteristics; long estimatedSize; FlatMapSpliterator(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 20.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractScheduledServiceTest.java
} private class TestService extends AbstractScheduledService { final CyclicBarrier runFirstBarrier = new CyclicBarrier(2); final CyclicBarrier runSecondBarrier = new CyclicBarrier(2); volatile boolean startUpCalled = false; volatile boolean shutDownCalled = false; final AtomicInteger numberOfTimesRunCalled = new AtomicInteger(0); final AtomicInteger numberOfTimesExecutorCalled = new AtomicInteger(0);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 22.8K bytes - Click Count (0) -
android/guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
} private final int[] factorials = new int[ARRAY_SIZE]; private final int[][] binomials = new int[ARRAY_SIZE][2]; private final int[][] nonnegInt = new int[ARRAY_SIZE][2]; private final long[][] nonnegLong = new long[ARRAY_SIZE][2]; private final int[][] intsToAdd = new int[ARRAY_SIZE][2]; private final int[][] intsToMul = new int[ARRAY_SIZE][2]; private final long[][] longsToAdd = new long[ARRAY_SIZE][2];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 6.9K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/math/ApacheBenchmark.java
} private final int[] factorials = new int[ARRAY_SIZE]; private final int[][] binomials = new int[ARRAY_SIZE][2]; private final int[][] nonnegInt = new int[ARRAY_SIZE][2]; private final long[][] nonnegLong = new long[ARRAY_SIZE][2]; private final int[][] intsToAdd = new int[ARRAY_SIZE][2]; private final int[][] intsToMul = new int[ARRAY_SIZE][2]; private final long[][] longsToAdd = new long[ARRAY_SIZE][2];
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jul 14 14:44:08 GMT 2025 - 6.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/job/AllJobSchedulerTest.java
final AllJobScheduler scheduler = new AllJobScheduler(); assertTrue(scheduler instanceof LaJobScheduler); } public void test_AllJobScheduler_creation() { final AllJobScheduler scheduler = new AllJobScheduler(); assertNotNull(scheduler); } public void test_setJobClass() { final AllJobScheduler scheduler = new AllJobScheduler();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 1.6K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/util/ports/AvailablePortAllocator.java
import org.gradle.internal.Pair; import java.util.ArrayList; import java.util.List; public class AvailablePortAllocator { public static final int MIN_PRIVATE_PORT = 10300; public static final int MAX_PRIVATE_PORT = 13300; public static final int DEFAULT_RANGE_SIZE = 10; private final List<ReservedPortRange> reservations = new ArrayList<ReservedPortRange>();Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.6K bytes - Click Count (0)