Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for uid (0.16 sec)

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

        
                /* We explicitly set uid to 0 here to prevent a new
                 * SMB_COM_SESSION_SETUP_ANDX from having it's uid set to an
                 * old value when the session is re-established. Otherwise a
                 * "The parameter is incorrect" error can occur.
                 */
                uid = 0;
        
                do {
                    switch (state) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 * for whatever reason. I copy over the uid here so it appears correct
                 * in logging output. Logging of andx segments of messages inadvertantly
                 * print header information because of the way toString always makes a
                 * super.toString() call(see toString() at the end of all smbs classes).
                 */
    
                andx.uid = uid;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/DosError.java

            "The network name cannot be found.",
            "ERRnomoreconn.",
            "The file exists.",
            "The parameter is incorrect.",
            "Too many Uids active on this session.",
            "The Uid is not known as a valid user identifier on this session.",
            "The pipe has been ended.",
            "The filename, directory name, or volume label syntax is incorrect.",
            "The directory is not empty.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. false */
        String LDAP_ADMIN_ENABLED = "ldap.admin.enabled";
    
        /** The key of the configuration. e.g. uid=%s */
        String LDAP_ADMIN_USER_FILTER = "ldap.admin.user.filter";
    
        /** The key of the configuration. e.g. ou=People,dc=fess,dc=codelibs,dc=org */
        String LDAP_ADMIN_USER_BASE_DN = "ldap.admin.user.base.dn";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

    import org.lastaflute.core.message.UserMessage;
    
    /**
     * The keys for message.
     * @author FreeGen
     */
    public class FessMessages extends FessLabels {
    
        /** The serial version UID for object serialization. (Default) */
        private static final long serialVersionUID = 1L;
    
        /** The key of the message:  */
        public static final String ERRORS_front_header = "{errors.front_header}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  7. src/main/webapp/js/jquery-3.6.3.min.js

    i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=E.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 87.8K bytes
    - Viewed (5)
  8. src/main/java/jcifs/smb/SmbSessionImpl.java

                    + this.targetDomain + ",uid=" + this.uid + ",connectionState=" + this.connectionState + ",usage=" + this.usageCount.get() + "]";
        }
    
    
        void setUid ( int uid ) {
            this.uid = uid;
        }
    
    
        void setSessionSetup ( Smb2SessionSetupResponse response ) {
            this.extendedSecurity = true;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/CommonServerMessageBlock.java

        /**
         * @return the command
         */
        int getCommand ();
    
    
        /**
         * @param command
         */
        void setCommand ( int command );
    
    
        /**
         * @param uid
         */
        void setUid ( int uid );
    
    
        /**
         * @param extendedSecurity
         */
        void setExtendedSecurity ( boolean extendedSecurity );
    
    
        /**
         * @param sessionId
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

            this.pid = pid;
        }
    
    
        /**
         * @return the uid
         */
        public final int getUid () {
            return this.uid;
        }
    
    
        /**
         * @param uid
         *            the uid to set
         */
        @Override
        public final void setUid ( int uid ) {
            this.uid = uid;
        }
    
    
        /**
         * @return the signSeq
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 05 09:45:59 GMT 2018
    - 32.7K bytes
    - Viewed (0)
Back to top