Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cmd (0.12 sec)

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

        @Override
        public int getBatchLimit ( 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 ) {
                return set;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            } else if (isMacOS()) {
                return new String[]{"ps", "x", "-o", "pid,command"};
            } else {
                return new String[]{"ps", "x", "-o", "pid,cmd"};
            }
        }
    
        private static boolean isWindows() {
            return System.getProperty("os.name").toLowerCase().contains("windows");
        }
    
        private static boolean isMacOS() {
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 26 09:46:00 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to ignore exceptions that occur during file copy
         */
        boolean isIgnoreCopyToException ();
    
    
        /**
         * @param cmd
         * @return the batch limit for the given command
         */
        int getBatchLimit ( String cmd );
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.notify_buf_size</tt> (int, default 1024)
         * 
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                }
                int cmd = Encdec.dec_uint16le(this.sbuf, 4 + 12) & 0xFFFF;
                if ( cmd == 0x12 ) {
                    return new Smb2OplockBreakNotification(getContext().getConfig());
                }
            }
            else {
                if ( key != 0xFFFF ) {
                    return null;
                }
                int cmd = this.sbuf[ 4 + 4 ];
                if ( cmd == 0x24 ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

         */
        @Override
        public ServerMessageBlock getNextResponse () {
            return this.andx;
        }
    
    
        protected int getBatchLimit ( Configuration cfg, byte cmd ) {
            /*
             * the default limit is 0 batched messages before this
             * one, meaning this message cannot be batched.
             */
            return 0;
        }
    
    
        /*
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
Back to top