Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for last_modified (0.15 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. has_cache */
        String INDEX_FIELD_has_cache = "index.field.has_cache";
    
        /** The key of the configuration. e.g. last_modified */
        String INDEX_FIELD_last_modified = "index.field.last_modified";
    
        /** The key of the configuration. e.g. anchor */
        String INDEX_FIELD_ANCHOR = "index.field.anchor";
    
        /** The key of the configuration. e.g. segment */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/fess/storage/StorageItem.java

         */
        public StorageItem(final String name, final String path, final boolean directory, final long size, final ZonedDateTime lastModified,
                final String encodedId) {
            this.name = name;
            this.path = path;
            this.directory = directory;
            this.size = size;
            this.lastModified = lastModified;
            this.encodedId = encodedId;
        }
    
        /**
         * Returns the name of the item.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                        final String fileName = getName(objectKey);
                        final ZonedDateTime lastModified =
                                s3Object.lastModified() != null ? s3Object.lastModified().atZone(java.time.ZoneId.systemDefault()) : null;
                        items.add(new StorageItem(fileName, prefix, false, s3Object.size(), lastModified, encodeId(objectKey)));
                    }
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

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

                    map.put("size", item.getSize());
                    map.put("directory", item.isDirectory());
                    if (!item.isDirectory()) {
                        map.put("lastModified", item.getLastModified());
                        fileList.add(map);
                    } else {
                        list.add(map);
                    }
                }
            } catch (final Exception e) {
    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