Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,662 for republic (0.11 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: 2025-05-26 08:04
    - Last Modified: 2018-01-01 05:12
    - 5.2K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/repair.html
    repair
    
    // report : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/report.html
    report
    
    // republican : Dog Beach, LLC
    // https://www.iana.org/domains/root/db/republican.html
    republican
    
    // rest : Punto 2012 Sociedad Anonima Promotora de Inversion de Capital Variable
    // https://www.iana.org/domains/root/db/rest.html
    rest
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 309.7K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/Public-Domain.txt

    Public Domain...
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-05-17 19:14
    - 13 bytes
    - Viewed (0)
  4. istioctl/pkg/analyze/testdata/analyze-file/public-gateway.yaml

    apiVersion: networking.istio.io/v1
    kind: Gateway
    metadata:
      name: public-gateway
      namespace: istio-system
    spec:
      selector:
        istio: gateway
      servers:
        - port:
            number: 80
            name: http
            protocol: HTTP
          hosts:
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-08-01 20:04
    - 256 bytes
    - Viewed (0)
  5. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    # ADR-0003 - Avoid introducing Groovy types to public API
    
    ## Date
    
    2024-01-12
    
    ## Context
    
    Gradle's public API requires equal access from all JVM-based languages.
    Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library.
    
    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-03-10 20:38
    - 1.8K bytes
    - Viewed (0)
  6. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    Justin Van Dort <******@****.***> 1746885862 -0400
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-16 18:26
    - 5.6K bytes
    - Viewed (0)
  7. 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: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 7.3K bytes
    - Viewed (0)
  8. 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: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 7.4K bytes
    - Viewed (0)
  9. 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: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 7.2K bytes
    - Viewed (0)
  10. 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: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 2.4K bytes
    - Viewed (0)
Back to top