Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 326 for Pattern (0.1 sec)

  1. src/main/resources/fess_message_ko.properties

    constraints.Min.message = {item}는 {value} 이상이어야 합니다.
    constraints.NotNull.message = {item}는 필수 항목입니다.
    constraints.Null.message = {item}는 null이어야 합니다.
    constraints.Past.message = {item}는 과거의 값이어야 합니다.
    constraints.Pattern.message = {item}가 "{regexp}"와 일치하지 않습니다.
    constraints.Size.message = {item}의 크기는 {min}자에서 {max}자 사이여야 합니다.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/resources/fess_message_fr.properties

    constraints.Min.message = {item} doit être supérieur ou égal à {value}.
    constraints.NotNull.message = {item} est requis.
    constraints.Null.message = {item} doit être nul.
    constraints.Past.message = {item} doit être une valeur passée.
    constraints.Pattern.message = {item} ne correspond pas à « {regexp} ».
    constraints.Size.message = La taille de {item} doit être comprise entre {min} et {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_zh_CN.properties

    constraints.Min.message = {item} 必须大于或等于 {value}。
    constraints.NotNull.message = {item} 不能为空。
    constraints.Null.message = {item} 必须为 null。
    constraints.Past.message = {item} 必须是过去的值。
    constraints.Pattern.message = {item} 不匹配 "{regexp}"。
    constraints.Size.message = {item} 的大小必须在 {min} 到 {max} 个字符之间。
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

        fun assertLogMatch(regex: Regex) =
          apply {
            assertThat(index, "No more messages found")
              .isLessThan(logs.size)
            assertThat(logs[index++])
              .matches(Regex(prefix.pattern + regex.pattern, RegexOption.DOT_MATCHES_ALL))
          }
    
        fun assertNoMoreLogs() {
          assertThat(logs.size, "More messages remain: ${logs.subList(index, logs.size)}")
            .isEqualTo(index)
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            assertTrue(result.contains("secretkey={cipher}"));
            assertFalse(result.contains("secretkey=unencrypted"));
    
            // Test with keys that don't match pattern
            value = "normalfield=value\npassword=secret";
            result = ParameterUtil.encrypt(value);
            assertTrue("Result should contain normalfield=value, but was: " + result, result.contains("normalfield=value"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Throwables.java

        checkNotNull(t);
        /*
         * TODO(cpovirk): Consider optimizing iterator() to catch IOOBE instead of doing bounds checks.
         *
         * TODO(cpovirk): Consider the UnsignedBytes pattern if it performs faster and doesn't cause
         * AOSP grief.
         */
        return new AbstractList<StackTraceElement>() {
          /*
           * The following requireNonNull calls are safe because we use jlaStackTrace() only if
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/net/InternetDomainName.java

       * defined as a suffix may not produce {@code true} results from {@link #isPublicSuffix()} or
       * {@link #isRegistrySuffix()} if the domain ends with an excluded domain pattern such as {@code
       * "nhs.uk"}.
       *
       * <p>If a {@code desiredType} is specified, this method only finds suffixes of the given type.
       * Otherwise, it finds the first suffix of any type.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/BaseEncodingTest.java

      }
    
      private static void assertFailsToDecode(
          BaseEncoding encoding, String cannotDecode, @Nullable String expectedMessage) {
        // We use this somewhat weird pattern with an enum for each assertion we want to make as a way
        // of dealing with the fact that one of the assertions is @GwtIncompatible but we don't want to
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ldap/LdapManager.java

         *
         * @param ldapUser the LDAP user to retrieve roles for
         * @param bindDn the bind DN for LDAP connection
         * @param accountFilter the account filter pattern
         * @param groupFilter the group filter pattern
         * @param lazyLoading the lazy loading consumer for roles
         * @return an array of role names
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  10. .github/workflows/build.yml

        steps:
          - uses: actions/checkout@v5
          - uses: gradle/actions/wrapper-validation@v4
          - name: Validate Renovate
            uses: rinchsan/renovate-config-validator@v0.2.0
            with:
              pattern: '.github/renovate.json'
    
      checkjdk11:
        permissions:
          checks: write # for mikepenz/action-junit-report
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout
            uses: actions/checkout@v5
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top