Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for encode_in (0.05 sec)

  1. src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java

                this.level = level;
                this.prefmaxlen = prefmaxlen;
                this.info = info;
                this.totalentries = totalentries;
            }
    
            @Override
            public void encode_in(final NdrBuffer _dst) throws NdrException {
                _dst.enc_ndr_string(dfs_name);
                _dst.enc_ndr_long(level);
                _dst.enc_ndr_long(prefmaxlen);
                _dst.enc_ndr_referent(info, 1);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageItem.java

                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.
         *
         * @return the item name
         */
    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/app/web/admin/storage/AdminStorageAction.java

                        () -> asListHtml(encodeId(form.path)));
    
            }
            saveInfo(messages -> messages.addSuccessUploadFileToStorage(GLOBAL, form.uploadFile.getFileName()));
            return redirectWith(getClass(), moreUrl("list/" + encodeId(form.path)));
        }
    
        /**
         * Downloads a file from the storage system.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                    final String dirName = getName(commonPrefix.prefix());
                    if (StringUtil.isNotBlank(dirName)) {
                        items.add(new StorageItem(dirName, prefix, true, 0, null, encodeId(commonPrefix.prefix())));
                    }
                }
    
                // Process objects (files)
                for (final S3Object s3Object : response.contents()) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  5. 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 {
                        fileItems.add(item);
                    }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top