Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 328 for session1 (0.06 sec)

  1. src/main/resources/fess_label_es.properties

    labels.user_name=Nombre de usuario
    labels.login=Iniciar sesión
    labels.login.placeholder_username=Nombre de usuario
    labels.login.placeholder_password=Contraseña
    labels.login.title=Iniciar sesión
    labels.index_label=Etiqueta
    labels.index_lang=Idioma preferido
    labels.index_sort=Ordenar
    labels.index_num=Número de resultados
    labels.logout_title=Cerrar sesión
    labels.logout=Cerrar sesión
    labels.do_you_want_to_logout=¿Desea cerrar la sesión?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/web.xml

      <!--                                                                    Session Config -->
      <!--                                                                    ============== -->
    <!--
        <session-config>
            <session-timeout>1</session-timeout>
        </session-config>
      -->
    
      <!-- ================================================================================= -->
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue May 06 09:19:22 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java

    import jcifs.internal.smb1.AndXServerMessageBlock;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB1 Session Setup AndX Response message.
     *
     * This response contains information about the established session,
     * including native OS, LAN manager, and primary domain information.
     */
    public class SmbComSessionSetupAndXResponse extends AndXServerMessageBlock {
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTree.java

        int tid;
    
        String share;
        String service = "?????";
        String service0;
        SmbSession session;
        boolean inDfs, inDomainDfs;
        int tree_num; // used by SmbFile.isOpen
    
        SmbTree(final SmbSession session, final String share, final String service) {
            this.session = session;
            this.share = share.toUpperCase();
            if (service != null && !service.startsWith("??")) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java

        int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) {
    
            if (session.transport.server.security == SECURITY_SHARE && (session.auth.hashesExternal || session.auth.password.length() > 0)) {
    
                if (session.transport.server.encryptedPasswords) {
                    // encrypted
                    password = session.auth.getAnsiHash(session.transport.server.encryptionKey);
                    passwordLength = password.length;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbSessionInternal.java

         */
        boolean isInUse();
    
        /**
         * Returns the current session key used for signing and encryption.
         *
         * @return the current session key
         * @throws CIFSException if the session key cannot be retrieved
         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Returns the SMB transport associated with this session.
         *
         * @return the transport for this session
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

         *
         * @return the pipe type
         */
        int getPipeType();
    
        /**
         * Gets the session key from the underlying SMB session.
         *
         * @return session key of the underlying smb session
         * @throws CIFSException if an error occurs retrieving the session key
         */
        byte[] getSessionKey() throws CIFSException;
    
        /**
         * Gets the input stream for reading from this pipe.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/NbtException.java

     *
     * This exception encapsulates NetBIOS name service and session service errors
     * with specific error classes and codes.
     */
    public class NbtException extends IOException {
    
        // error classes
        /** Success status code */
        public static final int SUCCESS = 0;
        /** Name service error class */
        public static final int ERR_NAM_SRVC = 0x01;
        /** Session service error class */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_en.properties

    labels.crawling_info_search=Search
    labels.crawling_info_reset=Reset
    labels.crawling_info_link_top=Crawling Info
    labels.crawling_info_link_details=Details
    labels.crawling_info_session_id_search=Session ID
    labels.crawling_info_session_id=Session ID
    labels.crawling_info_created_time=Created
    labels.crawling_info_delete_all_link=Delete All
    labels.crawling_info_delete_all_confirmation=Are you sure you want to delete all?
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                }
                final HttpSession session = request.getSession(false);
                if (session != null) {
                    final String sesState = (String) session.getAttribute(OIC_STATE);
                    if (StringUtil.isNotBlank(sesState)) {
                        session.removeAttribute(OIC_STATE);
                        final String code = request.getParameter("code");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
Back to top