Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for trigger (1.75 sec)

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

    import jcifs.FileNotifyInformation;
    import jcifs.SmbResource;
    import jcifs.SmbWatchHandle;
    import jcifs.smb.SmbFile;
    
    
    /**
     * 
     * 
     * Compatability notes:
     * - windows 2k12 will not trigger with FILE_NOTIFY_CHANGE_ATTRIBUTES if the file contents are modified (modtime
     * changes)
     * 
     * @author mbechler
     *
     */
    @RunWith ( Parameterized.class )
    @SuppressWarnings ( "javadoc" )
    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/smb1/smb1/NtlmAuthenticator.java

    If this method returns <tt>null</tt> the <tt>SmbAuthException</tt> that triggered the authenticator check will simply be rethrown. The default implementation returns <tt>null</tt>.
    */
        protected NtlmPasswordAuthentication getNtlmPasswordAuthentication() {
            return null;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

                    svc = this.service;
                    if ( svc == null ) {
                        // there still is some kind of race condition, where?
                        // this used to trigger "invalid operation..."
                        throw new SmbException("Service is null in state " + this.connectionState.get());
                    }
                    checkRequest(transport, req, svc);
    
                }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

                    throw new SmbException("Invalid operation for workgroups, servers, or shares");
                }
    
                if ( !sh.isSameTree(th) ) {
                    // trigger requests to resolve the actual target
                    exists();
                    dest.exists();
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmAuthenticator.java

         * credentials try try when accessing SMB resources described by the <tt>getRequestingURL</tt> and
         * <tt>getRequestingException</tt> methods.
         * If this method returns <tt>null</tt> the <tt>SmbAuthException</tt> that triggered the authenticator check will
         * simply be rethrown. The default implementation returns <tt>null</tt>.
         */
        protected NtlmPasswordAuthenticator getNtlmPasswordAuthentication () {
            return null;
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.4K bytes
    - Viewed (0)
Back to top