Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for share_name (0.15 sec)

  1. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

             * @param info the information container
             */
            public ShareGetInfo(final String servername, final String sharename, final int level, final NdrObject info) {
                this.servername = servername;
                this.sharename = sharename;
                this.level = level;
                this.info = info;
            }
    
            @Override
            public void encode_in(final NdrBuffer _dst) throws NdrException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.idl

    			[in] unsigned long prefmaxlen,
    			[out] unsigned long *totalentries,
    			[in,out] unsigned long *resume_handle);
    
    	[op(0x10)]
    	int ShareGetInfo([in,string,unique] wchar_t *servername,
    			[in,string] wchar_t *sharename,
    			[in] int level,
    			[out,switch_is(level)] ShareInfo *info);
    
    	typedef struct {
    		unsigned long platform_id;
    		[string] wchar_t *name;
    	} ServerInfo100;
    
    	typedef [switch_type(int)] union {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/srvsvc.idl

    			[in] unsigned long prefmaxlen,
    			[out] unsigned long *totalentries,
    			[in,out] unsigned long *resume_handle);
    
    	[op(0x10)]
    	int ShareGetInfo([in,string,unique] wchar_t *servername,
    			[in,string] wchar_t *sharename,
    			[in] int level,
    			[out,switch_is(level)] ShareInfo *info);
    
    	typedef struct {
    		unsigned long platform_id;
    		[string] wchar_t *name;
    	} ServerInfo100;
    
    	typedef [switch_type(int)] union {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb/CriticalPerformanceTest.java

                            try {
                                String shareName = "share" + (threadId % 5); // Use 5 different shares
    
                                // Test concurrent tree operations (should be thread-safe with CopyOnWriteArrayList)
                                long opStart = System.nanoTime();
                                session.getSmbTree(shareName, null);
                                long opEnd = System.nanoTime();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbSessionImpl.java

                }
            }
            return null;
        }
    
        /**
         * Register for witness notifications for a share
         *
         * @param shareName the share name to monitor
         */
        public void registerForWitnessNotifications(String shareName) {
            if (!witnessEnabled || witnessClient == null) {
                return;
            }
    
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top