Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Kuwait (0.18 sec)

  1. src/main/java/jcifs/smb1/util/transport/Transport.java

                te = null;
                thread = new Thread( this, name );
                thread.setDaemon( true );
    
                synchronized (thread) {
                    thread.start();
                    thread.wait( timeout );          /* wait for doConnect */
    
                    switch (state) {
                        case 1: /* doConnect never returned */
                            state = 0;
                            thread = null;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

                            continue;
                        }
    
                        curResp.wait();
                        if ( handleIntermediate(request, curResp) ) {
                            continue;
                        }
                        if ( log.isDebugEnabled() ) {
                            log.debug("Wait returned state is " + this.state);
                        }
                        if ( isDisconnected() ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

        public static final int FSCTL_DFS_GET_REFERRALS = 0x0060194;
        /**
         * 
         */
        public static final int FSCTL_PIPE_PEEK = 0x0011400C;
        /**
         * 
         */
        public static final int FSCTL_PIPE_WAIT = 0x00110018;
        /**
         * 
         */
        public static final int FSCTL_PIPE_TRANSCEIVE = 0x0011C017;
        /**
         * 
         */
        public static final int FSCTL_SRV_COPYCHUNK = 0x001440F2;
        /**
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 07:13:17 GMT 2018
    - 7.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

                        this.handle = this.pipe.openUnshared(this.uncPath, 0, this.access, this.sharing, SmbConstants.ATTR_NORMAL, 0);
                        return this.handle.acquire();
                    }
    
                    // TODO: wait for pipe, still not sure when this needs to be called exactly
                    if ( this.uncPath.startsWith("\\pipe\\") ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Apr 13 17:05:22 GMT 2020
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTree.java

                            case SmbComTransaction.NET_SERVER_ENUM3:
                            case SmbComTransaction.TRANS_PEEK_NAMED_PIPE:
                            case SmbComTransaction.TRANS_WAIT_NAMED_PIPE:
                            case SmbComTransaction.TRANS_CALL_NAMED_PIPE:
                            case SmbComTransaction.TRANS_TRANSACT_NAMED_PIPE:
                            case SmbComTransaction.TRANS2_GET_DFS_REFERRAL:
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java

        /**
         * 
         * @param config
         * @param pipeName
         */
        public TransWaitNamedPipe ( Configuration config, String pipeName ) {
            super(config, SMB_COM_TRANSACTION, TRANS_WAIT_NAMED_PIPE);
            this.name = pipeName;
            this.timeout = 0xFFFFFFFF;
            this.maxParameterCount = 0;
            this.maxDataCount = 0;
            this.maxSetupCount = (byte) 0x00;
            this.setupCount = 2;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/NameServiceClientImpl.java

                    this.inFlightLookups.add(name);
                    return null;
                }
                while ( this.inFlightLookups.contains(name) ) {
                    try {
                        this.inFlightLookups.wait();
                    }
                    catch ( InterruptedException e ) {
                        log.trace("Interrupted", e);
                    }
                }
            }
            obj = getCachedAddress(name);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

        /**
         * 
         */
        public static final byte TRANS_PEEK_NAMED_PIPE = (byte) 0x23;
        /**
         * 
         */
        public static final byte TRANS_WAIT_NAMED_PIPE = (byte) 0x53;
        /**
         * 
         */
        public static final byte TRANS_CALL_NAMED_PIPE = (byte) 0x54;
        /**
         * 
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun May 17 13:43:42 GMT 2020
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/UniAddress.java

            try {
                synchronized( sem ) {
                    q1x.start();
                    q20.start();
    
                    while( sem.count > 0 && q1x.ans == null && q20.ans == null ) {
                        sem.wait();
                    }
                }
            } catch( InterruptedException ie ) {
                throw new UnknownHostException( name );
            }
            if( q1x.ans != null ) {
                return q1x.ans;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                            }
                        }
    
                        long start = System.currentTimeMillis();
                        while (timeout > 0) {
                            response.wait( timeout );
    
                            /* JetDirect printer can respond to regular broadcast query
                             * with node status so we need to check to make sure that
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
Back to top