- Sort Score
- Num 10 results
- Language All
Results 1851 - 1860 of 4,465 for republic (0.25 seconds)
-
guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 9K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Preconditions.java
* its caller has made a mistake. This allows constructs such as * * {@snippet : * public static double sqrt(double value) { * if (value < 0) { * throw new IllegalArgumentException("input is negative: " + value); * } * // calculate square root * } * } * * <p>to be replaced with the more compact * * {@snippet : * public static double sqrt(double value) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 53.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSortedMap.java
} @Override public @Nullable Entry<K, V> floorEntry(K key) { return headMap(key, true).lastEntry(); } @Override public @Nullable K floorKey(K key) { return keyOrNull(floorEntry(key)); } @Override public @Nullable Entry<K, V> ceilingEntry(K key) { return tailMap(key, true).firstEntry(); } @Override public @Nullable K ceilingKey(K key) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 08 18:10:02 GMT 2026 - 54.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
} @Override public java.io.OutputStream getOutputStream() { return null; } @Override public java.io.InputStream getInputStream() { return new java.io.ByteArrayInputStream(new byte[0]); } @Override public java.io.InputStream getErrorStream() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/AbstractDataStoreTest.java
import org.lastaflute.di.core.factory.SingletonLaContainerFactory; import groovy.lang.Binding; import groovy.lang.GroovyClassLoader; import groovy.lang.GroovyShell; public class AbstractDataStoreTest extends UnitFessTestCase { public AbstractDataStore dataStore; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); dataStore = new AbstractDataStore() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
*/ public RelatedQueryHelper() { super(); } /** * Initializes the RelatedQueryHelper after dependency injection is complete. * This method is called automatically by the dependency injection framework * and loads the initial related query configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* Provides helper methods for working with XContent builders, scrolling through search results, * and converting XContent objects to different output formats. */ public final class SearchEngineUtil { private static final Logger logger = LogManager.getLogger(SearchEngineUtil.class); /** * Private constructor to prevent instantiation of this utility class. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
import java.util.Locale; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatSymbolsUtil; /** * Utility class for conversions related to {@link Number}. * * @author higa */ public abstract class NumberConversionUtil { /** * Do not instantiate. */ protected NumberConversionUtil() { } /** * Converts to the appropriate {@link Number}. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 5.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/TestInputStream.java
/** * @author Colin Decker */ @NullUnmarked public class TestInputStream extends FilterInputStream { private final ImmutableSet<TestOption> options; private boolean closed; public TestInputStream(InputStream in, TestOption... options) throws IOException { this(in, Arrays.asList(options)); } public TestInputStream(InputStream in, Iterable<TestOption> options) throws IOException {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 2.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/DescendingImmutableSortedSet.java
} @Override public @Nullable E lower(E element) { return forward.higher(element); } @Override public @Nullable E floor(E element) { return forward.ceiling(element); } @Override public @Nullable E ceiling(E element) { return forward.floor(element); } @Override public @Nullable E higher(E element) { return forward.lower(element);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 3.2K bytes - Click Count (0)