Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 0x7fffffffL (0.15 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *
         * @return the length of this file or 0 if it refers to a directory
         */
    
        @Override
        public int getContentLength() {
            try {
                return (int) (length() & 0xFFFFFFFFL);
            } catch (final SmbException se) {}
            return 0;
        }
    
        /**
         * This URLConnection method just returns the result of {@code lastModified}.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * @return the length of this file or 0 if it refers to a directory
         */
        @Deprecated
        @Override
        public int getContentLength() {
            try {
                return (int) (length() & 0xFFFFFFFFL);
            } catch (final SmbException se) {
                log.debug("getContentLength", se);
            }
            return 0;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top