Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 779 for Republic (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                assertTrue("processThreadDump should be public", java.lang.reflect.Modifier.isPublic(processMethod.getModifiers()));
                assertEquals("processThreadDump should return void", void.class, processMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        public void test_utilityClass_pattern() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

          public InMemoryPrintWriter() {
            super(new StringWriter());
          }
        }
    
        @Keep
        public static final class DeterministicRandom extends Random {
          @Keep
          public DeterministicRandom() {
            super(0);
          }
        }
    
        @Keep
        public static final class DummyScheduledThreadPoolExecutor extends ScheduledThreadPoolExecutor {
          @Keep
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

        }
    
        @Override
        public Field getField() {
            return field;
        }
    
        /**
         * Sets the public field recognized as a property.
         *
         * @param field
         *            The public field recognized as a property.
         */
        public void setField(final Field field) {
            this.field = field;
            if (field != null && ModifierUtil.isPublic(field)) {
                readable = true;
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 24 01:52:43 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessLabelsTest extends UnitFessTestCase {
    
        private FessLabels fessLabels;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            fessLabels = new FessLabels();
        }
    
        /**
         * Test that assertPropertyNotNull throws exception for null input
         */
        public void test_assertPropertyNotNull_withNull() {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

    public class FessHtmlPathTest extends UnitFessTestCase {
    
        public void test_allPathsInitialized() throws Exception {
            // Get all public static final fields of HtmlNext type
            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
                int modifiers = field.getModifiers();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                assertTrue("validate should be public", java.lang.reflect.Modifier.isPublic(validateMethod.getModifiers()));
                assertEquals("validate should return void", void.class, validateMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        public void test_constant_WEB_API_EXCEPTION() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/Invokable.java

      public final boolean isPublic() {
        return Modifier.isPublic(getModifiers());
      }
    
      /** Returns true if the element is protected. */
      public final boolean isProtected() {
        return Modifier.isProtected(getModifiers());
      }
    
      /** Returns true if the element is package-private. */
      public final boolean isPackagePrivate() {
        return !isPrivate() && !isPublic() && !isProtected();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 18.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/hash/HashingTest.java

     */
    @NullUnmarked
    public class HashingTest extends TestCase {
      public void testMd5() {
        HashTestUtils.checkAvalanche(Hashing.md5(), 100, 0.4);
        HashTestUtils.checkNo2BitCharacteristics(Hashing.md5());
        HashTestUtils.checkNoFunnels(Hashing.md5());
        HashTestUtils.assertInvariants(Hashing.md5());
        assertEquals("Hashing.md5()", Hashing.md5().toString());
      }
    
      public void testSha1() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 26.4K bytes
    - Viewed (2)
  9. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

                assertTrue("quoteEscape should be public", java.lang.reflect.Modifier.isPublic(quoteEscapeMethod.getModifiers()));
                assertEquals("quoteEscape should return String", String.class, quoteEscapeMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        public void test_utilityClass_pattern() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/lang/MethodUtil.java

         */
        public static boolean isAbstract(final Method method) {
            return Modifier.isAbstract(method.getModifiers());
        }
    
        /**
         * Returns whether the method is <code>public</code>.
         *
         * @param method
         *            The method. Cannot be {@literal null}
         * @return <code>public</code> if the method is public
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top