Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for Bounds (0.18 sec)

  1. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            int len = 0;
            while ( src[ srcIndex + len ] != (byte) 0x00 ) {
                if ( len++ > max ) {
                    throw new RuntimeCIFSException("zero termination not found: " + this);
                }
            }
            return len;
        }
    
    
        @Override
        public int encode ( byte[] dst, int dstIndex ) {
            int start = this.headerStart = dstIndex;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtStatus.java

        public static final int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        public static final int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        public static final int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        public static final int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039;
        public static final int NT_STATUS_OBJECT_PATH_NOT_FOUND = 0xC000003a;
        public static final int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/Config.java

        /**
         * Retrieve a <code>String</code>. If the key cannot be found,
         * the provided <code>def</code> default parameter will be returned.
         */
    
        public static String getProperty( String key, String def ) {
            return prp.getProperty( key, def );
        }
    
        /**
         * Retrieve a <code>String</code>. If the property is not found, <code>null</code> is returned.
         */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DosError.java

            "The client does not have the necessary access rights to perform the requested function.", "Access is denied.",
            "The TID specified was invalid.", "The handle is invalid.", "The network name cannot be found.",
            "Not enough storage is available to process this command.", "The media is write protected.", "The device is not ready.",
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 4.8K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb/SpnegoContext.java

                }
                else {
                    ASN1ObjectIdentifier found = null;
                    for ( ASN1ObjectIdentifier mech : rm ) {
                        if ( this.mechContext.isSupported(mech) ) {
                            found = mech;
                            break;
                        }
                    }
                    if ( found == null ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 04 04:18:31 GMT 2021
    - 14.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtStatus.java

        public static final int NT_STATUS_OBJECT_NAME_NOT_FOUND = 0xC0000034;
        public static final int NT_STATUS_OBJECT_NAME_COLLISION = 0xC0000035;
        public static final int NT_STATUS_PORT_DISCONNECTED = 0xC0000037;
        public static final int NT_STATUS_OBJECT_PATH_INVALID = 0xC0000039;
        public static final int NT_STATUS_OBJECT_PATH_NOT_FOUND = 0xC000003a;
        public static final int NT_STATUS_OBJECT_PATH_SYNTAX_BAD = 0xC000003b;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/WinError.java

        public static final int ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
    
        static final int[] WINERR_CODES = {
            ERROR_SUCCESS,
            ERROR_ACCESS_DENIED,
            ERROR_REQ_NOT_ACCEP,
            ERROR_BAD_PIPE,
            ERROR_PIPE_BUSY,
            ERROR_NO_DATA,
            ERROR_PIPE_NOT_CONNECTED,
            ERROR_MORE_DATA,
            ERROR_NO_BROWSER_SERVERS_FOUND,
        };
    
        static final String[] WINERR_MESSAGES = {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                    SmbTransportImpl found = findConnection(
                        tf,
                        addr,
                        port,
                        tf.getConfig().getLocalAddr(),
                        tf.getConfig().getLocalPort(),
                        name,
                        forceSigning,
                        true);
                    if ( found != null ) {
                        return found;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 12.5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/Strings.java

                        log.debug(Hexdump.toHexString(buffer, bufferIndex, len));
                    }
                    throw new RuntimeCIFSException("zero termination not found");
                }
            }
            return len;
        }
    
    
        /**
         * @param src
         * @param srcIndex
         * @param len
         * @param config
         * @return decoded string
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  10. LICENSE

     Everyone is permitted to copy and distribute verbatim copies
     of this license document, but changing it is not allowed.
    
    (This is the first released version of the Lesser GPL.  It also counts
     as the successor of the GNU Library Public License, version 2, hence
     the version number 2.1.)
    
                                Preamble
    
      The licenses for most software are designed to take away your
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Viewed (0)
Back to top