Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 102 of 102 for 0x7fffffffL (0.07 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. doc/go_spec.html

    sign extended to implicit infinite precision; otherwise it is zero extended.
    It is then truncated to fit in the result type's size.
    For example, if <code>v := uint16(0x10F0)</code>, then <code>uint32(int8(v)) == 0xFFFFFFF0</code>.
    The conversion always yields a valid value; there is no indication of overflow.
    </li>
    <li>
    When converting a <a href="#Numeric_types">floating-point number</a> to an integer, the fraction is discarded
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
Back to top