- Sort Score
- Num 10 results
- Language All
Results 1711 - 1720 of 4,465 for republic (0.05 seconds)
-
src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java
* @param cause * The cause of the exception */ public InstantiationRuntimeException(final Class<?> targetClass, final InstantiationException cause) { super("ECL0041", asArray(targetClass.getName(), cause), cause); this.targetClass = targetClass; } @Override public synchronized InstantiationRuntimeException initCause(final Throwable cause) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 1.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
return new ChatPhaseCallback() { @Override public void onPhaseStart(final String phase, final String message) { // no-op } @Override public void onPhaseComplete(final String phase) { // no-op } @Override public void onChunk(final String content, final boolean done) { // no-op
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
* * <p>It extends AbstractFessFileTransformer to provide specialized file processing * capabilities using the appropriate extractor for each file type.</p> */ public class FessFileTransformer extends AbstractFessFileTransformer { /** * Default constructor. */ public FessFileTransformer() { super(); } /** Logger instance for this class */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.5K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") public class ListAddTester<E> extends AbstractListTester<E> { @CollectionFeature.Require(SUPPORTS_ADD) @CollectionSize.Require(absent = ZERO) public void testAdd_supportedPresent() { assertTrue("add(present) should return true", getList().add(e0())); expectAdded(e0()); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.4K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapForEachTester.java
// @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MapForEachTester<K, V> extends AbstractMapTester<K, V> { @CollectionFeature.Require(KNOWN_ORDER) public void testForEachKnownOrder() { List<Entry<K, V>> entries = new ArrayList<>(); getMap().forEach((k, v) -> entries.add(entry(k, v)));Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Nov 14 23:40:07 GMT 2024 - 3.3K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/Murmur3Hash128Test.java
import java.nio.ByteOrder; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** Tests for {@link Murmur3_128HashFunction}. */ @NullUnmarked public class Murmur3Hash128Test extends TestCase { public void testKnownValues() { assertHash(0, 0x629942693e10f867L, 0x92db0b82baeb5347L, "hell"); assertHash(1, 0xa78ddff5adae8d10L, 0x128900ef20900135L, "hello");Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java
* * @author higa */ public abstract class DoubleConversionUtil { /** * Do not instantiate. */ protected DoubleConversionUtil() { } /** * Converts to {@link Double}. * * @param o * The object to convert * @return The converted {@link Double} */ public static Double toDouble(final Object o) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java
} @Test public void test_init() { try { keyMatchHelper.init(); } catch (Exception e) { // Expected due to missing dependencies in test environment assertNotNull(e); } } @Test public void test_getQueryMap_exists() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/LogNotificationHelper.java
/** * Helper that manages the lifecycle of the log notification timer and * buffers log notification events for periodic flushing to OpenSearch. */ public class LogNotificationHelper { /** * Default constructor. */ public LogNotificationHelper() { // Default constructor } private TimeoutTask timeoutTask; private LogNotificationTarget logNotificationTarget;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsAccessTokenCQ.java
public void setId_Equal(String id) { setId_Term(id, null); } public void setId_Equal(String id, ConditionOptionCall<TermQueryBuilder> opLambda) { setId_Term(id, opLambda); } public void setId_Term(String id) { setId_Term(id, null); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 71.8K bytes - Click Count (0)