Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for za (0.03 sec)

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

            assertTrue(log.contains(", max "));
            assertTrue(log.endsWith("}"));
    
            // Verify format contains expected memory units
            assertTrue(log.matches(".*used [0-9.]+[a-zA-Z]+, heap [0-9.]+[a-zA-Z]+, max [0-9.]+[a-zA-Z]+.*"));
        }
    
        public void test_byteCountToDisplaySize_edgeCases() {
            // Test negative values - should throw NullPointerException in private method via BigInteger.valueOf
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    yukuhashi.fukuoka.jp
    yun
    yura.wakayama.jp
    yurihonjo.akita.jp
    yusuhara.kochi.jp
    yusui.kagoshima.jp
    yuu.yamaguchi.jp
    yuza.yamagata.jp
    yuzawa.niigata.jp
    z.bg
    z.se
    za.bz
    za.com
    za.net
    za.org
    zachpomor.pl
    zagan.pl
    zakarpattia.ua
    zakopane.pl
    zama.kanagawa.jp
    zamami.okinawa.jp
    zao.miyagi.jp
    zap.cloud
    zaporizhzhe.ua
    zaporizhzhia.ua
    zappos
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  3. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        @Required
        @Size(max = 100)
        public String name;
    
        /**
         * The value of the label type (alphanumeric and underscore only).
         */
        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        /**
         * The paths to include for this label type.
         */
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  4. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    yukuhashi.fukuoka.jp
    yun
    yura.wakayama.jp
    yurihonjo.akita.jp
    yusuhara.kochi.jp
    yusui.kagoshima.jp
    yuu.yamaguchi.jp
    yuza.yamagata.jp
    yuzawa.niigata.jp
    z.bg
    z.se
    za.bz
    za.com
    za.net
    za.org
    zachpomor.pl
    zagan.pl
    zakarpattia.ua
    zakopane.pl
    zama.kanagawa.jp
    zamami.okinawa.jp
    zao.miyagi.jp
    zap.cloud
    zaporizhzhe.ua
    zaporizhzhia.ua
    zappos
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  5. android/guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java

          new UnicodeEscaper() {
            @Override
            protected char @Nullable [] escape(int c) {
              return null;
            }
          };
    
      // Escapes everything except [a-zA-Z0-9]
      private static final UnicodeEscaper SIMPLE_ESCAPER =
          new UnicodeEscaper() {
            @Override
            protected char @Nullable [] escape(int cp) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/escape/UnicodeEscaperTest.java

          new UnicodeEscaper() {
            @Override
            protected char @Nullable [] escape(int c) {
              return null;
            }
          };
    
      // Escapes everything except [a-zA-Z0-9]
      private static final UnicodeEscaper SIMPLE_ESCAPER =
          new UnicodeEscaper() {
            @Override
            protected char @Nullable [] escape(int cp) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt

      override fun equals(other: Any?): Boolean = other is MediaType && other.mediaType == mediaType
    
      override fun hashCode(): Int = mediaType.hashCode()
    
      companion object {
        private const val TOKEN = "([a-zA-Z0-9-!#$%&'*+.^_`{|}~]+)"
        private const val QUOTED = "\"([^\"]*)\""
        private val TYPE_SUBTYPE = Regex("$TOKEN/$TOKEN")
        private val PARAMETER = Regex(";\\s*(?:$TOKEN=(?:$TOKEN|$QUOTED))?")
    
        /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:08 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  8. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    ye
    com.ye
    edu.ye
    gov.ye
    net.ye
    mil.ye
    org.ye
    
    // za : https://www.zadna.org.za/content/page/domain-information/
    ac.za
    agric.za
    alt.za
    co.za
    edu.za
    gov.za
    grondar.za
    law.za
    mil.za
    net.za
    ngo.za
    nic.za
    nis.za
    nom.za
    org.za
    school.za
    tm.za
    web.za
    
    // zm : https://zicta.zm/
    // Submitted by registry <******@****.***>
    zm
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/PercentEscaper.java

        // TODO(dbeaumont): Support escapers where alphanumeric chars are not safe.
        checkNotNull(safeChars); // eager for GWT.
        // Avoid any misunderstandings about the behavior of this escaper
        if (safeChars.matches(".*[0-9A-Za-z].*")) {
          throw new IllegalArgumentException(
              "Alphanumeric characters are always 'safe' and should not be explicitly specified");
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

         */
        public void test_labelConstantsNamingConvention() throws Exception {
            Field[] fields = FessLabels.class.getDeclaredFields();
            Pattern labelPattern = Pattern.compile("^LABELS_[A-Za-z0-9_]+$");
    
            for (Field field : fields) {
                if (Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers()) && Modifier.isPublic(field.getModifiers())
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top