Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Sets (0.16 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

         *
         * @return A <code>byte[]</code> containing the LanManager response.
         */
        public byte[] getLMResponse() {
            return lmResponse;
        }
    
        /**
         * Sets the LanManager/LMv2 response for this message.
         *
         * @param lmResponse The LanManager response.
         */
        public void setLMResponse(byte[] lmResponse) {
            this.lmResponse = lmResponse;
        }
    
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 22.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type2Message.java

         *
         * @return A <code>byte[]</code> containing the challenge.
         */
        public byte[] getChallenge () {
            return this.challenge;
        }
    
    
        /**
         * Sets the challenge for this message.
         *
         * @param challenge
         *            The challenge from the domain controller/server.
         */
        public void setChallenge ( byte[] challenge ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

         *
         * @return A <code>String</code> containing the supplied domain.
         */
        public String getSuppliedDomain() {
            return suppliedDomain;
        }
    
        /**
         * Sets the supplied authentication domain for this message.
         *
         * @param suppliedDomain The supplied domain for this message.
         */
        public void setSuppliedDomain(String suppliedDomain) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 8K bytes
    - Viewed (0)
  4. src/packaging/common/scripts/postinst

    #
    #   On Debian,
    #       $1=configure : is set to 'configure' and if $2 is set, it is an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    
    # Source the default env file
    FESS_ENV_FILE="${packaging.env.file}"
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/http/Handler.java

            "sun.net.www.protocol"
        };
    
        private static URLStreamHandlerFactory factory;
    
        private CIFSContext transportContext;
    
    
        /**
         * Sets the URL stream handler factory for the environment. This
         * allows specification of the factory used in creating underlying
         * stream handlers. This can be called once per JVM instance.
         *
         * @param factory
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.9K bytes
    - Viewed (0)
  6. src/packaging/rpm/init.d/fess

    #
    if [ -f /etc/rc.status ]; then
        . /etc/rc.status
        rc_reset
    fi
    
    #
    # Source function library.
    #
    if [ -f /etc/rc.d/init.d/functions ]; then
        . /etc/rc.d/init.d/functions
    fi
    
    # Sets the default values for fess variables used in this script
    PROC_NAME=org.codelibs.fess.FessBoot
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    FESS_HOME="${packaging.fess.home.dir}"
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  7. src/packaging/common/scripts/postrm

        ;;
        1)
            # If $1=1 this is an upgrade
            IS_UPGRADE=true
        ;;
    
        *)
            echo "post remove script called with unknown argument \`$1'" >&2
            exit 1
        ;;
    esac
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    PID_DIR="${packaging.fess.pid.dir}"
    
    # Source the default env file
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/Handler.java

         */
        private static final String[] JVM_VENDOR_DEFAULT_PKGS = new String[] {
            "sun.net.www.protocol"
        };
    
        private static URLStreamHandlerFactory factory;
    
        /**
         * Sets the URL stream handler factory for the environment.  This
         * allows specification of the factory used in creating underlying
         * stream handlers.  This can be called once per JVM instance.
         *
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/ntlmssp/NtlmMessage.java

         *
         * @return An <code>int</code> containing the flags in use for this
         * message.
         */
        public int getFlags() {
            return flags;
        }
    
        /**
         * Sets the flags for this message.
         *
         * @param flags The flags for this message.
         */
        public void setFlags(int flags) {
            this.flags = flags;
        }
    
        /**
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ntlmssp/Type3Message.java

            AvPairs.replace(serverAvPairs, new AvSingleHost(tc.getConfig()));
    
            return AvPairs.encode(serverAvPairs);
        }
    
    
        /**
         * Sets the MIC
         * 
         * @param type1
         * @param type2
         * @throws GeneralSecurityException
         * @throws IOException
         */
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 30.6K bytes
    - Viewed (0)
Back to top