Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doGetBatchLimit (0.05 sec)

  1. src/main/java/jcifs/config/BaseConfiguration.java

         */
        @Override
        public int getBatchLimit(final String cmd) {
            Integer set = this.batchLimits.get(cmd);
            if (set != null) {
                return set;
            }
    
            set = doGetBatchLimit(cmd);
            if (set != null) {
                this.batchLimits.put(cmd, set);
                return set;
            }
    
            set = DEFAULT_BATCH_LIMITS.get(cmd);
            if (set != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 36.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/config/BaseConfigurationTest.java

        void testGetBatchLimitWithCustomImplementation() throws CIFSException {
            BaseConfiguration customConfig = new BaseConfiguration(false) {
                @Override
                protected Integer doGetBatchLimit(String cmd) {
                    if ("CustomCommand".equals(cmd)) {
                        return 5;
                    }
                    return null;
                }
            };
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top