Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AddCookie (0.06 sec)

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                            cookie.setMaxAge(fessConfig.getCookieSearchParameterMaxAgeAsInteger());
                            cookie.setAttribute("SameSite", fessConfig.getCookieSearchParameterSameSite());
                            res.addCookie(cookie);
                            if (logger.isDebugEnabled()) {
                                logger.debug(
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 36.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            }
            if (StringUtil.isNotBlank(cookiePath)) {
                cookie.setPath(cookiePath);
            }
            cookie.setSecure(isSecureCookie());
            LaResponseUtil.getResponse().addCookie(cookie);
        }
    
        /**
         * Determines whether the user identification cookie should be marked as secure.
         * Checks the configured secure setting or examines request headers to detect HTTPS.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            if (cookieStore != null) {
                final Cookie[] cookies = getInitParameter(COOKIES_PROPERTY, new Cookie[0], Cookie[].class);
                for (final Cookie cookie : cookies) {
                    cookieStore.addCookie(cookie);
                }
            }
    
            // cookie registry
            final Lookup<CookieSpecProvider> cookieSpecRegistry = buildCookieSpecRegistry();
            if (cookieSpecRegistry != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 53.7K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg net/http, method (*Client) PostForm(string, url.Values) (*Response, error)
    pkg net/http, method (*Cookie) String() string
    pkg net/http, method (*ProtocolError) Error() string
    pkg net/http, method (*Request) AddCookie(*Cookie)
    pkg net/http, method (*Request) Cookie(string) (*Cookie, error)
    pkg net/http, method (*Request) Cookies() []*Cookie
    pkg net/http, method (*Request) FormFile(string) (multipart.File, *multipart.FileHeader, error)
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top