Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1451 - 1460 of 2,766 for republic (0.18 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. guava-tests/test/com/google/common/collect/ImmutableBiMapFloodingTest.java

    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.stream.Stream;
    import org.jspecify.annotations.NullUnmarked;
    
    @GwtIncompatible
    @NullUnmarked
    public class ImmutableBiMapFloodingTest extends AbstractHashFloodingTest<BiMap<Object, Object>> {
      public ImmutableBiMapFloodingTest() {
        super(
            EnumSet.allOf(ConstructionPathway.class).stream()
                .flatMap(
                    path ->
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jul 28 19:11:14 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/AbstractMapEntryTest.java

          public V getValue() {
            return value;
          }
        };
      }
    
      private static <K extends @Nullable Object, V extends @Nullable Object> Entry<K, V> control(
          K key, V value) {
        return singletonMap(key, value).entrySet().iterator().next();
      }
    
      public void testToString() {
        assertThat(entry("foo", 1).toString()).isEqualTo("foo=1");
      }
    
      public void testToStringNull() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

        }
    
        // Test getDataStore with non-existing name
        @Test
        public void test_getDataStore_nonExistingName() {
            DataStore retrieved = dataStoreFactory.getDataStore("nonExisting");
            assertNull(retrieved);
        }
    
        // Test getDataStore with null name
        @Test
        public void test_getDataStore_nullName() {
            DataStore retrieved = dataStoreFactory.getDataStore(null);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/core/crypto/CachedCipher.java

         * @return the key
         */
        public String getKey() {
            return key;
        }
    
        /**
         * Sets the key.
         *
         * @param key
         *            the key
         */
        public void setKey(final String key) {
            this.key = key;
        }
    
        /**
         * Returns the charset name.
         *
         * @return the charset name
         */
        public String getCharsetName() {
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java

    import org.opensearch.index.query.QueryBuilder;
    
    public class PhraseQueryCommandTest extends QueryTestBase {
        private PhraseQueryCommand queryCommand;
    
        @Override
        protected void setUpChild() throws Exception {
            // Initialize and register PhraseQueryCommand
            queryCommand = new PhraseQueryCommand();
            queryCommand.register();
        }
    
        @Test
        public void test_getQueryClassName() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/plugin/DeleteForm.java

     * Contains validation rules for plugin name and version information.
     */
    public class DeleteForm {
    
        /**
         * Creates a new instance of DeleteForm.
         * This constructor initializes the form for plugin deletion operations
         * in the admin interface with validation rules for plugin information.
         */
        public DeleteForm() {
            // Default constructor with explicit documentation
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/core/exception/IllegalPropertyRuntimeException.java

        }
    
        /**
         * Returns the target class.
         *
         * @return Target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the property name.
         *
         * @return Property name
         */
        public String getPropertyName() {
            return propertyName;
        }
    
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 2K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/hash/AbstractNonStreamingHashFunctionTest.java

    /** Tests for AbstractNonStreamingHashFunction. */
    @NullUnmarked
    public class AbstractNonStreamingHashFunctionTest extends TestCase {
      /**
       * Constructs two trivial HashFunctions (output := input), one streaming and one non-streaming,
       * and checks that their results are identical, no matter which newHasher version we used.
       */
      public void testExhaustive() {
        List<Hasher> hashers =
            ImmutableList.of(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 4.5K bytes
    - Click Count (0)
  9. guava-tests/test/com/google/common/graph/ImmutableNetworkTest.java

    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.JUnit4;
    
    /** Tests for {@link ImmutableNetwork}. */
    @RunWith(JUnit4.class)
    @NullUnmarked
    public class ImmutableNetworkTest {
    
      @Test
      public void immutableNetwork() {
        MutableNetwork<String, Integer> mutableNetwork = NetworkBuilder.directed().build();
        mutableNetwork.addNode("A");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 30 17:09:51 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java

     * when maximumSize is reached, etc.
     *
     * @author mike nonemacher
     */
    @NullUnmarked
    public class CacheEvictionTest extends TestCase {
      static final int MAX_SIZE = 100;
    
      public void testEviction_setMaxSegmentSize() {
        IdentityLoader<Object> loader = identityLoader();
        for (int i = 1; i < 1000; i++) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15K bytes
    - Click Count (0)
Back to Top