Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getRpath (0.99 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final PathInfo pi = convertToItem(id);
            if (StringUtil.isEmpty(pi.getPath()) && StringUtil.isEmpty(pi.getName())) {
                return StringUtil.EMPTY;
            }
            if (StringUtil.isEmpty(pi.getPath())) {
                return pi.getName();
            }
            return pi.getPath() + "/" + pi.getName();
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                        cookie.getName(), encoded.length(), cookie.getMaxAge(), cookie.getPath(), cookie.getDomain(),
                                        cookie.getSecure(), cookie.isHttpOnly(), fessConfig.getCookieSearchParameterSameSite());
                            }
                        });
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/StorageItem.java

         * @return the item name
         */
        public String getName() {
            return name;
        }
    
        /**
         * Returns the path of the item.
         *
         * @return the item path
         */
        public String getPath() {
            return path;
        }
    
        /**
         * Returns whether this item is a directory.
         *
         * @return true if this item is a directory, false otherwise
         */
        public boolean isDirectory() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STEMMER_OVERRIDE;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
        public synchronized OptionalEntity<StemmerOverrideItem> get(final long id) {
            if (stemmerOverrideItemList == null) {
                reload(null);
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            return MAPPING;
        }
    
        /**
         * Returns the file path of this character mapping dictionary.
         *
         * @return the file path as a string
         */
        @Override
        public String getPath() {
            return path;
        }
    
        /**
         * Retrieves a character mapping item by its ID.
         *
         * @param id the unique identifier of the mapping item to retrieve
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top