- Sort Score
- Num 10 results
- Language All
Results 2781 - 2790 of 7,812 for republic (0.09 seconds)
-
src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java
} @Test public void test_normalizeCanonicalUrl_withPercent() throws Exception { final FessXpathTransformer transformer = new FessXpathTransformer(); final String value = transformer.normalizeCanonicalUrl("http://example.com/", "/100%25/done"); assertNotNull(value); assertEquals("http://example.com/100%25/done", value); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 62.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java
import static org.junit.jupiter.api.Assertions.assertNotSame; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class ProtwordsItemTest extends UnitFessTestCase { @Test public void test_constructor_withIdZero() { // Test constructor with id = 0 (create mode) ProtwordsItem item = new ProtwordsItem(0, "testword");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.7K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetIteratorTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") @NullMarked public class MultisetIteratorTester<E extends @Nullable Object> extends AbstractMultisetTester<E> { @CollectionFeature.Require({SUPPORTS_ITERATOR_REMOVE, KNOWN_ORDER}) public void testRemovingIteratorKnownOrder() { new IteratorTester<E>( 4, MODIFIABLE,Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 4.5K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/util/concurrent/SingleThreadAbstractFutureBenchmark.java
@VmOptions({"-Xms8g", "-Xmx8g"}) @NullUnmarked public class SingleThreadAbstractFutureBenchmark { @Param Impl impl; private final Exception exception = new Exception(); private Facade<?> notDoneFuture; @BeforeExperiment void setUp() throws Exception { notDoneFuture = impl.newFacade(); } @Benchmark public long timeComplete_Normal(int reps) throws Exception { long r = 0;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 3.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/escape/EscapersTest.java
*/ @GwtCompatible @NullUnmarked public class EscapersTest extends TestCase { public void testNullEscaper() throws IOException { Escaper escaper = Escapers.nullEscaper(); EscaperAsserts.assertBasic(escaper); String s = "\0\n\t\\az09~\uD800\uDC00\uFFFF"; assertWithMessage("null escaper should have no effect").that(escaper.escape(s)).isEqualTo(s); } public void testBuilderInitialStateNoReplacement() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 4.1K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactoryTest.java
import java.util.Map; import java.util.Set; import org.codelibs.core.beans.ParameterizedClassDesc; import org.junit.Test; /** * @author koichik */ public class ParameterizedClassDescFactoryTest { /** * @throws Exception */ @Test public void testFieldType() throws Exception { final Map<TypeVariable<?>, Type> map = ParameterizedClassDescFactory.getTypeVariables(Hoge.class);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4.4K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/transfer/SimplexTransferListenerTest.java
public void transferProgressed(TransferEvent event) throws TransferCancelledException { throw new TransferCancelledException(); } @Override public void transferCorrupted(TransferEvent event) throws TransferCancelledException { throw new TransferCancelledException(); } @Override
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Feb 06 11:28:05 GMT 2025 - 5.1K bytes - Click Count (0) -
docs/tls/kubernetes/README.md
```yaml volumes: - name: secret-volume secret: secretName: tls-ssl-minio items: - key: public.crt path: public.crt - key: private.key path: private.key - key: public.crt path: CAs/public.crt ``` Note that the `secretName` should be same as the secret name created in previous step. Then add the below section underCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryExpiredException.java
* This constructor initializes the exception to indicate that a dictionary * has expired and is no longer valid for use. */ public DictionaryExpiredException() { super(); } // public DictionaryExpiredException() { // super("errors.expired_dict_id"); // }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/impl/Log4j2Configuration.java
package org.apache.maven.cling.logging.impl; import org.apache.maven.cling.logging.BaseSlf4jConfiguration; /** * Configuration for slf4j-log4j2. * * @since 3.1.0 */ public class Log4j2Configuration extends BaseSlf4jConfiguration { @Override public void setRootLoggerLevel(Level level) { String value = switch (level) { case DEBUG -> "debug"; case INFO -> "info";Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 17 09:56:12 GMT 2024 - 1.4K bytes - Click Count (0)