Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 711 for sergey (0.04 sec)

  1. src/main/java/jcifs/SmbWatchHandle.java

    import java.util.concurrent.Callable;
    
    /**
     * Handle for receiving change notifications from an SMB server
     *
     *
     * @author mbechler
     *
     */
    public interface SmbWatchHandle extends AutoCloseable, Callable<List<FileNotifyInformation>> {
    
        /**
         * Get the next set of changes
         *
         * Will block until the server returns a set of changes that match the given filter. The file will be automatically
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

            Address dc;
            String msg, pathInfo, server = null;
            boolean offerBasic, possibleWorkgroup = true;
            NtlmPasswordAuthentication ntlm = null;
            final HttpSession ssn = req.getSession(false);
    
            pathInfo = req.getPathInfo();
            if (pathInfo != null) {
                int i;
                server = parseServerAndShare(pathInfo);
                if (server != null && (i = server.indexOf('/')) > 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/ServerData.java

    /**
     * Container for SMB server negotiation data.
     * This class holds the server capabilities, configuration, and security
     * parameters received during SMB protocol negotiation.
     *
     * Stores server-specific data obtained during SMB1 protocol negotiation.
     */
    public class ServerData {
    
        /**
         * Default constructor for ServerData.
         * Creates an empty server data container to be populated during SMB negotiation.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/HandlerTest.java

            assertEquals(445, emptyUrl.getPort());
    
            // Test SMB URL with only host
            URL hostOnlyUrl = new URL(null, "smb://server", handler);
            assertEquals("smb", hostOnlyUrl.getProtocol());
            assertEquals("server", hostOnlyUrl.getHost());
            assertEquals(445, hostOnlyUrl.getPort());
            assertEquals("", hostOnlyUrl.getPath());
    
            // Test SMB URL with query parameters
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  5. pom.xml

    			<artifactId>jakarta.transaction-api</artifactId>
    			<version>${jakarta.transaction.api.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.glassfish.jersey.core</groupId>
    			<artifactId>jersey-common</artifactId>
    			<version>${jersey.common.version}</version>
    			<exclusions>
    				<exclusion>
    					<groupId>jakarta.annotation</groupId>
    					<artifactId>jakarta.annotation-api</artifactId>
    				</exclusion>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/DcerpcBindingTest.java

    class DcerpcBindingTest {
    
        private DcerpcBinding dcerpcBinding;
        private static final String PROTO = "ncacn_np";
        private static final String SERVER = "testServer";
    
        @BeforeEach
        void setUp() {
            dcerpcBinding = new DcerpcBinding(PROTO, SERVER);
            // Initialize static INTERFACES map for tests
            DcerpcBinding.addInterface("srvsvc", "4B324FC8-1670-01D3-1278-5A47BF6EE188:3.0");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/DosFileFilter.java

         * specified for this filter. The wildcard has no influence on this
         * method as the server should have performed that filtering already. The
         * attributes are asserted here only because server file systems may not
         * support filtering by all attributes (e.g. even though ATTR_DIRECTORY was
         * specified the server may still return objects that are not directories).
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java

        public byte[] getName() {
            return CONTEXT_NAME_BYTES;
        }
    
        /**
         * Gets the lease key from the V2 server response
         * @return the lease key
         */
        public Smb2LeaseKey getLeaseKey() {
            return leaseKey;
        }
    
        /**
         * Gets the lease state granted by the server for V2
         * @return the granted lease state
         */
        public int getLeaseState() {
            return leaseState;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeHandleInternal.java

         */
        int getReceiveBufferSize() throws CIFSException;
    
        /**
         * Gets the maximum buffer size supported by the server
         * @return the maximum buffer size reported by the server
         * @throws CIFSException if an error occurs retrieving the buffer size
         */
        int getMaximumBufferSize() throws CIFSException;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

            }
        }
    
        /**
         * Server information level 100 structure containing basic server information.
         */
        public static class ServerInfo100 extends NdrObject {
    
            /**
             * Default constructor for ServerInfo100.
             */
            public ServerInfo100() {
            }
    
            /**
             * The platform ID of the server.
             */
            public int platform_id;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
Back to top