Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sessionIds (0.04 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
        /**
         * @return this session's UID
         */
        public int getUid() {
            return this.uid;
        }
    
        /**
         * @return this session's expiration time
         */
        public Long getExpiration() {
            return this.expiration > 0 ? this.expiration : null;
        }
    
        /**
         * @return this session's credentials
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

        }
    
        @Override
        public String getRemoteHostName() {
            return this.tconHostName;
        }
    
        /**
         *
         * @return number of sessions on this transport
         */
        public int getNumSessions() {
            return this.sessions.size();
        }
    
        @Override
        public int getInflightRequests() {
            return this.response_map.size();
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        /**
         * Checks if HTTP sessions are enabled.
         *
         * @return true if sessions are used, false otherwise
         */
        public boolean isUseSession() {
            return useSession;
        }
    
        /**
         * Sets whether to use HTTP sessions.
         *
         * @param useSession true to enable sessions, false to disable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            }
    
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final String sessionId = crawlingInfoHelper.getCanonicalSessionId(responseData.getSessionId());
            final PathMappingHelper pathMappingHelper = ComponentUtil.getPathMappingHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_ru.properties

    labels.pageNumber=Номер страницы
    labels.password=Пароль
    labels.paths=Пути
    labels.port=Порт
    labels.regex=Регулярное выражение
    labels.regularName=Обычное имя
    labels.replacement=Замена
    labels.sessionId=ID сессии
    labels.sortOrder=Порядок сортировки
    labels.updatedBy=Обновлено
    labels.updatedTime=Время обновления
    labels.urls=URL-адреса
    labels.userAgent=User Agent
    labels.username=Имя пользователя
    labels.value=Значение
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 55.8K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        not send the `Expect: continue` request header.
     *  Fix: Do not count web sockets toward the dispatcher's per-host connection
        limit.
     *  Fix: Avoid using invalid HTTPS sessions. This prevents OkHttp from crashing
        with the error, `Unexpected TLS version: NONE`.
     *  Fix: Don't corrupt the response cache when a 304 (Not Modified) response
        overrides the stored "Content-Encoding" header.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top