Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getPipe (0.05 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/dict/mapping/CharMappingFile.java

        }
    
        /**
         * Returns the type identifier for this dictionary file.
         *
         * @return the string "mapping" identifying this as a character mapping file
         */
        @Override
        public String getType() {
            return MAPPING;
        }
    
        /**
         * Returns the file path of this character mapping dictionary.
         *
         * @return the file path as a string
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                .query(query)
                                .size(pageSize)
                                .responseFields(queryFieldConfig.getScrollResponseFields())
                                .searchRequestType(params.getType())
                                .build();
                    }, (searchResponse, hit) -> {
                        final Map<String, Object> docMap = new HashMap<>();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

         */
        public StemmerOverrideFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STEMMER_OVERRIDE;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  6. 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