Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fi (0.11 sec)

  1. src/test/java/jcifs/tests/WatchTest.java

            if ( infos != null ) {
                infos.addAll(notifications);
            }
            boolean found = false;
            for ( FileNotifyInformation fi : notifications ) {
                if ( fi.getAction() == action && fi.getFileName().equals(name) ) {
                    found = true;
                }
            }
            return found;
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

        }
    
    
        /**
         * 
         * @param fi
         */
        public <T extends FileInformation & Encodable> void setFileInformation ( T fi ) {
            setInfoType(Smb2Constants.SMB2_0_INFO_FILE);
            setFileInfoClass(fi.getFileInformationLevel());
            setInfo(fi);
        }
    
    
        /**
         * @param info
         *            the info to set
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
Back to top