Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for geodata (0.29 sec)

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

    /**
     * Set the last modified time of the file. The time is specified as milliseconds
     * from Jan 1, 1970 which is the same as that which is returned by the
     * <tt>lastModified()</tt>, <tt>getLastModified()</tt>, and <tt>getDate()</tt> methods.
     * <p/>
     * This method does not apply to workgroups, servers, or shares.
     *
     * @param time the last modified time as milliseconds since Jan 1, 1970
     */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

         *
         * @return the last modified data as milliseconds since Jan 1, 1970
         */
        @Override
        public long getDate () {
            try {
                return lastModified();
            }
            catch ( SmbException se ) {
                log.debug("getDate", se);
            }
            return 0L;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                    if ( r.getByteCount() > 0 && pad > 0 && pad < 4 )
                        readn(this.in, buffer, 4 + off, pad);
    
                    if ( r.getDataLength() > 0 ) {
                        readn(this.in, r.getData(), r.getOffset(), r.getDataLength()); /* read direct */
                    }
                }
                else {
                    readn(this.in, buffer, 4 + SMB1_HEADER_LENGTH, size - SMB1_HEADER_LENGTH);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top