Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getSite (0.03 sec)

  1. src/main/java/org/codelibs/fess/storage/StorageItem.java

         */
        public boolean isDirectory() {
            return directory;
        }
    
        /**
         * Returns the size of the item in bytes.
         *
         * @return the item size
         */
        public long getSize() {
            return size;
        }
    
        /**
         * Returns the last modified timestamp.
         *
         * @return the last modified timestamp
         */
        public ZonedDateTime getLastModified() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                    final StorageItem item = new StorageItem(name, prefix, isDirectory, isDirectory ? 0 : blob.getSize(),
                            isDirectory ? null : lastModified, encodeId(blobName));
    
                    if (isDirectory) {
                        items.add(item);
                    } else {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

                    map.put("path", item.getPath());
                    map.put("name", item.getName());
                    map.put("hashCode", item.hashCode());
                    map.put("size", item.getSize());
                    map.put("directory", item.isDirectory());
                    if (!item.isDirectory()) {
                        map.put("lastModified", item.getLastModified());
                        fileList.add(map);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top