Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for resolution (0.08 sec)

  1. src/test/java/jcifs/netbios/NameServiceClientImplTest.java

            // Verify the exception message indicates name resolution failure
            assertTrue(exception.getMessage().contains("NONEXISTENT") || exception.getMessage().contains("unknown")
                    || exception.getMessage().contains("not found"), "Exception message should indicate name resolution failure");
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/UniAddress.java

     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/Dfs.java

    import jcifs.smb1.Config;
    import jcifs.smb1.UniAddress;
    import jcifs.smb1.util.LogStream;
    
    /**
     * Implements DFS (Distributed File System) referral caching and resolution.
     * This class manages DFS referral cache and provides DFS path resolution functionality.
     */
    public class Dfs {
    
        /**
         * Default constructor for Dfs.
         * Initializes the DFS referral system.
         */
        public Dfs() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/RequestWithPath.java

     */
    package jcifs.internal;
    
    /**
     * Interface for SMB requests that include file system path information.
     * Provides path handling capabilities including UNC path resolution and DFS support
     * for SMB operations that target specific files or directories on remote shares.
     *
     * @author mbechler
     */
    public interface RequestWithPath extends CommonServerMessageBlock {
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SidResolver.java

        /**
         * Gets the SIDs of members of a group.
         *
         * @param tc the CIFS context to use
         * @param authorityServerName the server to use for resolution
         * @param domsid the domain SID
         * @param rid the group RID
         * @param flags resolution flags
         * @return the SIDs of the group members
         * @throws CIFSException if there is an error retrieving group members
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

     * this class to use jCIFS properly. Name resolusion is
     * handled internally to the <code>jcifs.smb1.smb1</code> package.
     * <p>
     * This class is a wrapper for both {@link jcifs.smb1.netbios.NbtAddress}
     * and {@link java.net.InetAddress}. The name resolution mechanisms
     * used will systematically query all available configured resolution
     * services including WINS, broadcasts, DNS, and LMHOSTS. See
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17K bytes
    - Viewed (0)
  7. src/main/java/jcifs/config/BaseConfiguration.java

        /** Path to lmhosts file for NetBIOS name resolution */
        protected String lmhostsFilename;
        /** Array of WINS server addresses for NetBIOS name resolution */
        protected InetAddress[] winsServer = {};
        /** Broadcast address for NetBIOS name resolution */
        protected InetAddress broadcastAddress;
        /** Order of name resolution methods to use */
        protected List<ResolverType> resolverOrder;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  8. README.md

    - **Resource Management**: AutoCloseable patterns for file handles and connections
    - **Thread Safety**: Components support concurrent access
    - **DFS Support**: Distributed File System resolution
    - **Streaming Operations**: Efficient directory listings and file operations
    - **Buffer Caching**: Optimized buffer management
    - **DCE/RPC Protocol**: Support for advanced operations
    
    ## Quick Start
    
    ### Basic Usage
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java

            SmbResourceLocatorImpl l = locator("smb://server/");
            assertTrue(l.isWorkgroup());
        }
    
        @Test
        @DisplayName("getAddress/getFirstAddress resolution branches and iteration")
        void testAddressResolutionAndIteration() throws Exception {
            // Query parameter 'server' takes precedence
            UniAddress a1 = mock(UniAddress.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/Address.java

        String firstCalledName();
    
        /**
         * Guess next called name to try for session establishment. These
         * methods are used by the smb package.
         *
         * @param tc the transport context to use for name resolution
         *
         * @return guessed name
         */
        String nextCalledName(CIFSContext tc);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top