Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for maxItems (0.06 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

        private final int searchAttributes;
        private final int tflags;
        private final int informationLevel;
        private final int searchStorageType = 0;
        private final int maxItems;
        private final String wildcard;
    
        // information levels
    
        static final int SMB_INFO_STANDARD = 1;
        static final int SMB_INFO_QUERY_EA_SIZE = 2;
        static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/storage/StorageClient.java

         *
         * @param prefix the path prefix to list objects under (null or empty for root)
         * @param maxItems maximum number of items to return
         * @return list of storage items
         */
        List<StorageItem> listObjects(String prefix, int maxItems);
    
        /**
         * Gets tags/metadata for an object.
         *
         * @param objectName the name/path of the object
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

     */
    public class Trans2FindNext2 extends SmbComTransaction {
    
        private final int sid, informationLevel;
        private int resumeKey;
        private final int tflags;
        private String filename;
        private final long maxItems;
    
        /**
         * Constructs a Trans2FindNext2 request for continuing a file search.
         *
         * @param config the configuration to use
         * @param sid the search ID from a previous FindFirst2 response
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                throw new StorageException("Failed to delete " + objectName, e);
            }
        }
    
        @Override
        public List<StorageItem> listObjects(final String prefix, final int maxItems) {
            final List<StorageItem> items = new ArrayList<>();
            final List<StorageItem> fileItems = new ArrayList<>();
    
            try {
    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/storage/S3StorageClient.java

        }
    
        @Override
        public List<StorageItem> listObjects(final String prefix, final int maxItems) {
            final List<StorageItem> items = new ArrayList<>();
    
            try {
                final ListObjectsV2Request.Builder requestBuilder =
                        ListObjectsV2Request.builder().bucket(bucket).delimiter("/").maxKeys(maxItems);
    
                if (StringUtil.isNotBlank(prefix)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java

            byte[] buffer = new byte[256];
            int written = trans2FindNext2.writeParametersWireFormat(buffer, 0);
    
            // Check resume key at offset 6 (after sid and maxItems and informationLevel)
            int actualResumeKey = SMBUtil.readInt4(buffer, 6);
            assertEquals(newResumeKey, actualResumeKey);
    
            // Check filename is updated (it's at the end after flags)
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.2K bytes
    - Viewed (0)
Back to top