- Sort Score
- Num 10 results
- Language All
Results 1461 - 1470 of 2,766 for republic (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/misc/AssertionUtil.java
import org.codelibs.core.exception.NullArgumentException; import org.codelibs.core.lang.StringUtil; /** * Utility class for assertions. * * @author shot */ public abstract class AssertionUtil { /** * Do not instantiate. */ protected AssertionUtil() { } /** * Asserts that the argument is not <code>null</code>. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingQueue.java
@Override public @Nullable E poll() { return delegate().poll(); } @CanIgnoreReturnValue @Override @ParametricNullness public E remove() { return delegate().remove(); } @Override public @Nullable E peek() { return delegate().peek(); } @Override @ParametricNullness public E element() { return delegate().element(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/CompactHashMapTest.java
import org.jspecify.annotations.NullUnmarked; /** * Tests for {@code CompactHashMap}. * * @author Louis Wasserman */ @NullUnmarked public class CompactHashMapTest extends TestCase { @AndroidIncompatible // test-suite builders public static Test suite() { TestSuite suite = new TestSuite(); suite.addTest( MapTestSuiteBuilder.using( new TestStringMapGenerator() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 5.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java
import org.lastaflute.core.json.JsonMappingOption.JsonFieldNaming; public class FessJsonResourceProviderTest extends UnitFessTestCase { private FessJsonResourceProvider provider; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); provider = new FessJsonResourceProvider(); } @Test public void test_isNullsSuppressed() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
*/ public KuromojiFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return KUROMOJI; } @Override public String getPath() { return path; } @Override public synchronized OptionalEntity<KuromojiItem> get(final long id) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java
@Override protected Executor executor() { return new Executor() { @Override public void execute(Runnable command) {} }; } @Override protected void run() throws Exception {} } public void testStopWhileStarting_runNotCalled() throws Exception { CountDownLatch started = new CountDownLatch(1); FakeService service =Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 12.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/HashMultimap.java
* way that affects its {@link Object#equals} behavior. Undefined behavior and bugs will result. * * @author Jared Levy * @since 2.0 */ @GwtCompatible public final class HashMultimap<K extends @Nullable Object, V extends @Nullable Object> extends AbstractSetMultimap<K, V> { private static final int DEFAULT_VALUES_PER_KEY = 2;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 05 23:15:58 GMT 2025 - 5.8K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestStringSortedMapGenerator.java
* * @author Chris Povirk */ @GwtCompatible @NullMarked public abstract class TestStringSortedMapGenerator extends TestStringMapGenerator implements TestSortedMapGenerator<String, String> { @Override public Entry<String, String> belowSamplesLesser() { return mapEntry("!! a", "below view"); } @Override public Entry<String, String> belowSamplesGreater() { return mapEntry("!! b", "below view");Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 2.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/AbstractImmutableTableTest.java
/** * Tests {@link ImmutableTable} * * @author Gregory Kick */ @GwtCompatible @NullMarked public abstract class AbstractImmutableTableTest extends TestCase { abstract Iterable<ImmutableTable<Character, Integer, String>> getTestInstances(); public final void testClear() { for (Table<Character, Integer, String> testInstance : getTestInstances()) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 2.5K bytes - Click Count (0) -
samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/UnixDomainSocketFactory.java
import jnr.unixsocket.UnixSocketChannel; /** Impersonate TCP-style SocketFactory over UNIX domain sockets. */ public final class UnixDomainSocketFactory extends SocketFactory { private final File path; public UnixDomainSocketFactory(File path) { this.path = path; } @Override public Socket createSocket() throws IOException { UnixSocketChannel channel = UnixSocketChannel.open();Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Dec 03 21:33:52 GMT 2023 - 2.1K bytes - Click Count (0)