Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for didn (0.18 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcConstants.java

        public static final int DCERPC_RESERVED_1 = 0x08;
        public static final int DCERPC_CONC_MPX = 0x10; /* supports concurrent multiplexing */
        public static final int DCERPC_DID_NOT_EXECUTE = 0x20;
        public static final int DCERPC_MAYBE = 0x40; /* `maybe' call semantics requested */
        public static final int DCERPC_OBJECT_UUID = 0x80; /* if true, a non-nil object UUID */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbWatchHandle.java

         * this method should provide all changes (size of that buffer can be adjusted through
         * {@link jcifs.Configuration#getNotifyBufferSize()}).
         * If the server cannot fulfill the request because the changes did not fit the buffer
         * it will return an empty list of changes.
         * 
         * @return changes since the last invocation
         * @throws CIFSException
         */
        List<FileNotifyInformation> watch () throws CIFSException;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DfsImpl.java

            if ( log.isTraceEnabled() ) {
                log.trace("No match for domain based root, checking standalone " + domain);
            }
            /*
             * We did not match a domain based root. Now try to match the
             * longest path in the list of stand-alone referrals.
             */
    
            CacheEntry<DfsReferralDataInternal> refs;
            synchronized ( this.referralsLock ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtStatus.java

            "Indicates a Windows NT Server could not be contacted or that objects within the domain are protected such that necessary information could not be retrieved.",
            "The specified domain did not exist.", "The directory name is invalid.", "Access is denied.",
            "The format of the specified computer name is invalid.", "The pipe has been ended.", "The specified local group does not exist.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/Dfs.java

                                links.map.put(link, dr);
                            }
                        }
                    }
                }
            }
    
            if (dr == null && path != null) {
                /* We did not match a domain based root. Now try to match the
                 * longest path in the list of stand-alone referrals.
                 */
                if (referrals != null && now > referrals.expiration) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SpnegoContext.java

                }
                else if ( targ.getResult() != NegTokenTarg.ACCEPT_COMPLETED ) {
                    throw new SmbException("SPNEGO negotiation did not complete");
                }
                verifyMechListMIC(targ.getMechanismListMIC());
                this.completed = true;
                return null;
            }
    
            if ( inputToken == null ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/WatchTest.java

                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
            }
            catch ( TimeoutException e ) {
                log.info("Timeout waiting", e);
                fail("Did not recieve notification");
            }
        }
    
    
        @Test
        public void testWatchModified () throws InterruptedException, ExecutionException, IOException {
    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)
  8. src/main/java/jcifs/smb1/dcerpc/DcerpcConstants.java

        public static final int DCERPC_RESERVED_1      = 0x08;
        public static final int DCERPC_CONC_MPX        = 0x10; /* supports concurrent multiplexing */
        public static final int DCERPC_DID_NOT_EXECUTE = 0x20;
        public static final int DCERPC_MAYBE           = 0x40; /* `maybe' call semantics requested */
        public static final int DCERPC_OBJECT_UUID     = 0x80; /* if true, a non-nil object UUID */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                    log.trace("Returned from NtTransNotifyChange " + resp.getErrorCode());
                }
    
                if ( !resp.isReceived() ) {
                    throw new CIFSException("Did not receive response");
                }
    
                if ( resp.getErrorCode() == 0x10B ) {
                    this.handle.markClosed();
                }
                if ( resp.getErrorCode() == 0x10C ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbTransportImpl.java

                throw new SmbException(ioe.getMessage(), ioe);
            }
            SmbNegotiationResponse r = this.negotiated;
            if ( r == null ) {
                throw new SmbException("Connection did not complete, failed to get negotiation response");
            }
            return r;
        }
    
    
        /**
         * @return whether this is SMB2 transport
         * @throws SmbException
         */
        @Override
    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