Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for unmodified (0.17 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/test/java/jcifs/tests/WatchTest.java

                    cr.createNewFile();
                    setupWatch(w);
                    try ( OutputStream os = cr.getOutputStream() ) {
                        os.write(new byte[] {
                            1, 2, 3, 4
                        });
                    }
                    assertNotified(w, FileNotifyInformation.FILE_ACTION_MODIFIED, "modified", null);
                }
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/DES.java

    // SUCH DAMAGE.
    //
    
    package jcifs.smb1.util;
    
    import java.io.*;
    
    /**
     * This code is derived from the above source
     * JCIFS API
     * Norbert Hranitzky
     *
     * <p>and modified again by Michael B. Allen
     */
    
    public class DES   {
    
    
        private int[] encryptKeys = new int[32];
        private int[] decryptKeys = new int[32];
    
        private int[] tempInts = new int[2];
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbEnumerationUtil.java

                ResourceFilter ff ) throws CIFSException {
            // clone the locator so that the address index is not modified
            SmbResourceLocatorImpl locator = parent.fileLocator.clone();
            CIFSContext tc = parent.getContext();
            URL u = locator.getURL();
    
            FileEntry[] entries;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/FileNotifyInformation.java

        /**
         * File has been removed
         */
        public static final int FILE_ACTION_REMOVED = 0x00000002;
        /**
         * File has been modified
         */
        public static final int FILE_ACTION_MODIFIED = 0x00000003;
    
        /**
         * 
         */
        public static final int FILE_ACTION_RENAMED_OLD_NAME = 0x00000004;
    
        /**
         * 
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbResource.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> method.
         * <br>
         * 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: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/HMACT64.java

     */
    
    package jcifs.smb1.util;
    
    import java.security.MessageDigest;
    
    /**
     * This is an implementation of the HMACT64 keyed hashing algorithm.
     * HMACT64 is defined by Luke Leighton as a modified HMAC-MD5 (RFC 2104)
     * in which the key is truncated at 64 bytes (rather than being hashed
     * via MD5).
     */ 
    public class HMACT64 extends MessageDigest implements Cloneable {
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/util/HMACT64.java

     */
    
    package jcifs.util;
    
    
    import java.security.MessageDigest;
    
    
    /**
     * This is an implementation of the HMACT64 keyed hashing algorithm.
     * HMACT64 is defined by Luke Leighton as a modified HMAC-MD5 (RFC 2104)
     * in which the key is truncated at 64 bytes (rather than being hashed
     * via MD5).
     */
    class HMACT64 extends MessageDigest implements Cloneable {
    
        private static final int BLOCK_LENGTH = 64;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NetworkExplorer.java

            out.println("<a class=\"sort\" href=\"?fmt=detail&sort=type\">Type</a>");
            out.println("<a class=\"sort\" style=\"width: 180\" href=\"?fmt=detail&sort=date\">Modified</a><br clear='all'><p>");
    
            path = dir.getLocator().getCanonicalURL();
    
            if ( path.length() < 7 ) {
                out.println("<b><big>smb://</big></b><br>");
                path = ".";
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/http/NetworkExplorer.java

            out.println( "<a class=\"sort\" href=\"?fmt=detail&sort=type\">Type</a>" );
            out.println( "<a class=\"sort\" style=\"width: 180\" href=\"?fmt=detail&sort=date\">Modified</a><br clear='all'><p>" );
    
            path = dir.getCanonicalPath();
    
            if( path.length() < 7 ) {
                out.println( "<b><big>smb1://</big></b><br>" );
                path = ".";
            } else {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
Back to top