Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,558 for Republic (0.04 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/location.js

    darussalam","bulgaria","burkina faso","burundi","cabo verde","cambodia","cameroon","canada","cayman islands","central african republic","chad","chile","china","christmas island","cocos islands","colombia","comoros","democratic republic of the congo","congo","cook islands","costa rica","côte d'ivoire","croatia","cuba","curaçao","cyprus","czechia","denmark","djibouti","dominica","dominican republic","ecuador","egypt","el salvador","equatorial guinea","eritrea","estonia","ethiopia","falkland islands","faroe isl...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    gift
    
    // gifts : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/gifts.html
    gifts
    
    // gives : Public Interest Registry
    // https://www.iana.org/domains/root/db/gives.html
    gives
    
    // giving : Public Interest Registry
    // https://www.iana.org/domains/root/db/giving.html
    giving
    
    // glass : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/glass.html
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

        @Override
        public <T> Class<T> getReturnType() {
            return (Class<T>) returnType;
        }
    
        @Override
        public boolean isPublic() {
            return MethodUtil.isPublic(method);
        }
    
        @Override
        public boolean isStatic() {
            return MethodUtil.isStatic(method);
        }
    
        @Override
        public boolean isFinal() {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CacheControlJvmTest.kt

      }
    
      @Test
      fun parseCacheControlAndPragmaAreCombined() {
        val headers = headersOf("Cache-Control", "max-age=12", "Pragma", "must-revalidate", "Pragma", "public")
        val cacheControl = parse(headers)
        assertThat(cacheControl.toString()).isEqualTo("max-age=12, public, must-revalidate")
      }
    
      @Test
      fun parseCacheControlHeaderValueIsRetained() {
        val value = "max-age=12"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/lang/ModifierUtilTest.java

        }
    
        /**
         *
         */
        public static class Hoge {
    
            /**
             *
             */
            public static final String s = null;
    
            /**
             * @return 何か
             */
            public static String hoge() {
                return "aaa";
            }
    
            /**
             *
             */
            public String aaa;
    
            /**
             *
             */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-CacheControlCommon.kt

      }
    
      return CacheControl(
        noCache = noCache,
        noStore = noStore,
        maxAgeSeconds = maxAgeSeconds,
        sMaxAgeSeconds = sMaxAgeSeconds,
        isPrivate = isPrivate,
        isPublic = isPublic,
        mustRevalidate = mustRevalidate,
        maxStaleSeconds = maxStaleSeconds,
        minFreshSeconds = minFreshSeconds,
        onlyIfCached = onlyIfCached,
        noTransform = noTransform,
        immutable = immutable,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            assertFalse("FessWebResourceRoot should not be abstract",
                    java.lang.reflect.Modifier.isAbstract(FessWebResourceRoot.class.getModifiers()));
        }
    
        public void test_constructorSignature() {
            // Verify constructor parameter types
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top