Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for casa (0.12 sec)

  1. src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java

            if ( obj == null ) {
                enc_ndr_long(0);
                return;
            }
            switch ( type ) {
            case 1: /* unique */
            case 3: /* ref */
                enc_ndr_long(System.identityHashCode(obj));
                return;
            case 2: /* ptr */
                enc_ndr_long(getDceReferent(obj));
                return;
            }
        }
    
    
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/ConcurrencyTest.java

                    }
                    finally {
                        f.delete();
                    }
                }
                catch ( Exception e ) {
                    log.error("Test case failed", e);
                }
            }
    
        }
    
    
        @Test
        public void testInterrupt () throws UnknownHostException, IOException, InterruptedException {
    
            final Object lock = new Object();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            int c = -1;
            boolean eol = false;
    
            while ( !eol ) {
                switch ( c = read() ) {
                case -1:
                case '\n':
                    eol = true;
                    break;
                case '\r':
                    eol = true;
                    long cur = this.fp;
                    if ( read() != '\n' ) {
                        this.fp = cur;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            catch ( SmbException se ) {
                log.trace("exists:", se);
                switch ( se.getNtStatus() ) {
                case NtStatus.NT_STATUS_NO_SUCH_FILE:
                case NtStatus.NT_STATUS_OBJECT_NAME_INVALID:
                case NtStatus.NT_STATUS_OBJECT_NAME_NOT_FOUND:
                case NtStatus.NT_STATUS_OBJECT_PATH_NOT_FOUND:
                    break;
                default:
                    throw se;
                }
    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/internal/smb2/nego/Smb2NegotiateResponse.java

         * @param type
         * @return
         */
        protected static NegotiateContextResponse createContext ( int type ) {
            switch ( type ) {
            case EncryptionNegotiateContext.NEGO_CTX_ENC_TYPE:
                return new EncryptionNegotiateContext();
            case PreauthIntegrityNegotiateContext.NEGO_CTX_PREAUTH_TYPE:
                return new PreauthIntegrityNegotiateContext();
            }
            return null;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                /* lastNameOffset ends up pointing to either to
                 * the exact location of the filename(e.g. Win98)
                 * or to the start of the entry containing the
                 * filename(e.g. NT). Ahhrg! In either case the
                 * lastNameOffset falls between the start of the
                 * entry and the next entry.
                 */
    
                if( lastNameBufferIndex >= bufferIndex && ( e.nextEntryOffset == 0 ||
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResource.java

        CIFSContext getContext ();
    
    
        /**
         * Returns the last component of the target URL. This will
         * effectively be the name of the file or directory represented by this
         * <code>SmbResource</code> or in the case of URLs that only specify a server
         * or workgroup, the server or workgroup will be returned. The name of
         * the root URL <code>smb://</code> is also <code>smb://</code>. If this
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
Back to top