Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for feature1 (0.05 sec)

  1. README.md

    ### Development Workflow
    1. **Fork** the repository on GitHub
    2. **Create** your feature branch: `git checkout -b feature/amazing-feature`
    3. **Follow** the coding standards: `mvn formatter:format`
    4. **Add** comprehensive tests for new functionality
    5. **Commit** your changes: `git commit -m 'Add amazing feature'`
    6. **Push** to the branch: `git push origin feature/amazing-feature`
    7. **Submit** a Pull Request with detailed description
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java

    import static java.util.Collections.unmodifiableList;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.collect.testing.features.CollectionFeature;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.features.ListFeature;
    import java.lang.reflect.Method;
    import java.util.AbstractList;
    import java.util.AbstractSequentialList;
    import java.util.ArrayList;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 15:04:05 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/MultiChannelManager.java

    import jcifs.CIFSException;
    import jcifs.Configuration;
    
    /**
     * SMB3 Multi-Channel Manager.
     *
     * Manages multiple network connections for improved performance and redundancy
     * as specified in the SMB 3.x multi-channel feature.
     */
    public class MultiChannelManager {
    
        private static final Logger log = LoggerFactory.getLogger(MultiChannelManager.class);
    
        // Multi-channel configuration
        private final Configuration config;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

            // Initialize multi-channel support
            this.channelManager = new ChannelManager(tf, this);
    
            // Initialize SMB3 feature managers
            this.leaseManager = new LeaseManager(tf);
            this.persistentHandleManager = new PersistentHandleManager(tf);
        }
    
        /**
         * @return the configuration used by this session
         */
    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