Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for individual (0.18 sec)

  1. src/main/java/jcifs/ntlmssp/av/AvPairs.java

    
    /**
     * @author mbechler
     *
     */
    public final class AvPairs {
    
        private AvPairs () {}
    
    
        /**
         * Decode a list of AvPairs
         * 
         * @param data
         * @return individual pairs
         * @throws CIFSException
         */
        public static List<AvPair> decode ( byte[] data ) throws CIFSException {
            List<AvPair> pairs = new LinkedList<>();
            int pos = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            /* JCIFS will build a composite list of shares if the target host has
             * multiple IP addresses such as when domain-based DFS is in play. Because
             * of this, to ensure that we query each IP individually without re-resolving
             * the hostname and getting a different IP, we must use the current addresses
             * IP rather than just url.getHost() like we were using prior to 1.2.16.
             */
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  3. src/main/java/jcifs/smb/SmbFile.java

         * <code>smb://server/</code>,
         * <li>or <code>null</code> if the resource cannot be resolved.
         * </ul>
         * 
         * If strict resource lifecycle is used, make sure you close the individual files after use.
         *
         * @return An array of <code>SmbResource</code> objects representing file
         *         and directories, workgroups, servers, or shares depending on the context
    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)
  4. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

                // 3.2.5.1.9 Handling Compounded Responses
                // The final response in the compounded response chain will have NextCommand equal to 0,
                // and it MUST be processed as an individual message of a size equal to the number of bytes
                // remaining in this receive.
                int rem = this.readSize - this.length;
                len += rem;
            }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Sep 30 10:47:31 GMT 2018
    - 19.9K bytes
    - Viewed (0)
Back to top