Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Z0 (0.01 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

        public void test_mergeResponseData_baseAndOverwrite() {
            Map<String, Object> dataMap = new HashMap<>();
            Map<String, Object> responseDataMap = new HashMap<>();
            responseDataMap.put("z", "Z0");
            responseDataMap.put("z.overwrite", "Z1");
    
            indexUpdateCallback.mergeResponseData(dataMap, responseDataMap);
    
            assertFalse(dataMap.containsKey("z.overwrite"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

        private static final String PDF_DATE = "pdf_date";
    
        /** Regular expression pattern for matching email addresses */
        private static final Pattern EMAIL_ADDRESS_PATTERN =
                Pattern.compile("[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,6}", Pattern.CASE_INSENSITIVE);
    
        /**
         * Cache for storing resource file modification timestamps to enable cache busting.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  4. 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)
  5. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                public Integer getUserCodeMaxLengthAsInteger() {
                    return 20;
                }
    
                @Override
                public String getUserCodePattern() {
                    return "[a-zA-Z0-9_]+";
                }
            };
    
            assertTrue(fessConfig.isValidUserCode("1234567890"));
            assertTrue(fessConfig.isValidUserCode("12345678901234567890"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final List<Artifact> list = new ArrayList<>();
            final String repoContent = getRepositoryContent(url);
            final Matcher matcher = Pattern.compile("href=\"[^\"]*(" + artifactType.getId() + "[a-zA-Z0-9\\-]+)/?\"").matcher(repoContent);
            while (matcher.find()) {
                final String name = matcher.group(1);
                if (isExcludedName(artifactType, name)) {
                    continue;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        final String[] v2 = v1[0].split(":", 2);
                        if (v2.length == 2) {
                            return new Tuple3<>(v2[0].trim(), v2[1].trim(), v1[1].replaceAll("[^a-zA-Z0-9_]", StringUtil.EMPTY).trim());
                        }
                    }
                    return null;
                }).filter(v -> {
                    if (v == null) {
                        return false;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                } else if (url.startsWith("file:")) {
                    returnUrl = url.replaceFirst("^file:/+", "/");
                } else {
                    returnUrl = url.replaceFirst("^[a-zA-Z0-9]*:/+", "");
                }
                final int size = fessConfig.getResponseMaxSitePathLengthAsInteger();
                if (size > 3) {
                    return StringUtils.abbreviate(returnUrl, size);
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_config.properties

    user.code.request.parameter=userCode
    # User code minimum length.
    user.code.min.length=20
    # User code maximum length.
    user.code.max.length=100
    # User code pattern for validation.
    user.code.pattern=[a-zA-Z0-9_]+
    
    # ----------------------------------------------------------
    #                                                       Mail
    #                                                     ------
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String USER_CODE_MIN_LENGTH = "user.code.min.length";
    
        /** The key of the configuration. e.g. 100 */
        String USER_CODE_MAX_LENGTH = "user.code.max.length";
    
        /** The key of the configuration. e.g. [a-zA-Z0-9_]+ */
        String USER_CODE_PATTERN = "user.code.pattern";
    
        /** The key of the configuration. e.g. Administrator */
        String MAIL_FROM_NAME = "mail.from.name";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top