Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 7,040 for andx (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                        logoff(true);
                    }
                    request.digest = null;
                    throw se;
                }
            }
        }
    
        void sessionSetup(final ServerMessageBlock andx, final ServerMessageBlock andxResponse) throws SmbException {
            synchronized (transport()) {
                NtlmContext nctx = null;
                SmbException ex = null;
                SmbComSessionSetupAndX request;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

                throw new IOException("Bad file descriptor");
            }
            // ensure file is open
            file.open(openFlags, access, SmbFile.ATTR_NORMAL, 0);
    
            /*
             * Read AndX Request / Response
             */
    
            if (LogStream.level >= 4) {
                SmbFile.log.println("read: fid=" + file.fid + ",off=" + off + ",len=" + len);
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbSessionImpl.java

            }
        }
    
        /**
         * @param trans
         * @param andx
         * @param andxResponse
         */
        private void sessionSetupSMB1(final SmbTransportImpl trans, final String tdomain, ServerMessageBlock andx,
                ServerMessageBlock andxResponse) throws CIFSException, GeneralSecurityException {
            SmbException ex = null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/Configuration.java

         */
        boolean isForceUnicode();
    
        /**
         *
         * Property {@code jcifs.smb.client.useBatching} (boolean, default false)
         *
         * @return whether to enable support for SMB1 AndX command batching
         */
        boolean isUseBatching();
    
        /**
         *
         * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name})
         *
         * @return OS string to report
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                if (LogStream.level >= 4) {
                    do {
                        log.println(smb);
                    } while (smb instanceof AndXServerMessageBlock && (smb = ((AndXServerMessageBlock) smb).andx) != null);
                    if (LogStream.level >= 6) {
                        Hexdump.hexdump(log, BUF, 4, n);
                    }
                }
                /* For some reason this can sometimes get broken up into another
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
            return exists(); // try opening and catch sharing violation?
        }
    
        /**
         * Tests to see if the file this <code>SmbFile</code> represents
         * exists and is not marked read-only. By default, resources are
         * considered to be read-only and therefore for <code>smb1://</code>,
         * <code>smb1://workgroup/</code>, and <code>smb1://server/</code> resources
         * will be read-only.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  7. docs/pt/docs/how-to/custom-request-and-route.md

    Sebastián Ramírez <******@****.***> 1731896744 +0100
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. docs/de/docs/how-to/custom-request-and-route.md

    Sebastián Ramírez <******@****.***> 1731896744 +0100
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/request-forms-and-files.md

    # Request Forms and Files { #request-forms-and-files }
    
    You can define files and form fields at the same time using `File` and `Form`.
    
    /// info
    
    To receive uploaded files and/or form data, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/request-forms-and-files.md

    Sebastián Ramírez <******@****.***> 1731896744 +0100
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top