Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for share_name (0.04 sec)

  1. 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)
  2. 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