Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for isSecure (0.04 sec)

  1. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

                return null;
            }
    
            @Override
            public Enumeration<Locale> getLocales() {
                return null;
            }
    
            @Override
            public boolean isSecure() {
                return false;
            }
    
            @Override
            public RequestDispatcher getRequestDispatcher(String path) {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        }
    
        /**
         * Determines whether the user identification cookie should be marked as secure.
         * Checks the configured secure setting or examines request headers to detect HTTPS.
         *
         * @return true if the cookie should be secure, false otherwise
         */
        protected boolean isSecureCookie() {
            if (cookieSecure != null) {
                return cookieSecure;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

            @Override
            public java.util.Enumeration<java.util.Locale> getLocales() {
                return java.util.Collections.emptyEnumeration();
            }
    
            @Override
            public boolean isSecure() {
                return false;
            }
    
            @Override
            public jakarta.servlet.RequestDispatcher getRequestDispatcher(String path) {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java

                }
    
                @Override
                public java.util.Enumeration<java.util.Locale> getLocales() {
                    return null;
                }
    
                @Override
                public boolean isSecure() {
                    return false;
                }
    
                @Override
                public jakarta.servlet.RequestDispatcher getRequestDispatcher(String path) {
                    return null;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java

                }
    
                @Override
                public java.util.Enumeration<java.util.Locale> getLocales() {
                    return null;
                }
    
                @Override
                public boolean isSecure() {
                    return false;
                }
    
                @Override
                public jakarta.servlet.RequestDispatcher getRequestDispatcher(String path) {
                    return null;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            }
    
            @Override
            public java.util.Enumeration<Locale> getLocales() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public boolean isSecure() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public jakarta.servlet.RequestDispatcher getRequestDispatcher(String path) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/api/WebApiManagerTest.java

            @Override
            public java.util.Enumeration<java.util.Locale> getLocales() {
                return java.util.Collections.emptyEnumeration();
            }
    
            @Override
            public boolean isSecure() {
                return false;
            }
    
            @Override
            public jakarta.servlet.RequestDispatcher getRequestDispatcher(String path) {
                return null;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                                } else {
                                    cookie.setSecure(req.isSecure());
                                }
                            } else {
                                cookie.setSecure(Constants.TRUE.equalsIgnoreCase(secure));
                            }
                            final String domain = fessConfig.getCookieSearchParameterDomain();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  9. docs/features/https.md

     * `RESTRICTED_TLS` is a secure configuration, intended to meet stricter compliance requirements.
     * `MODERN_TLS` is a secure configuration that connects to modern HTTPS servers.
     * `COMPATIBLE_TLS` is a secure configuration that connects to secure–but not current–HTTPS servers.
     * `CLEARTEXT` is an insecure configuration that is used for `http://` URLs.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/TempFileCreator.java

            "Guava cannot securely create temporary files or directories under SDK versions before"
                + " Jelly Bean. You can create one yourself, either in the insecure default directory"
                + " or in a more secure directory, such as context.getCacheDir(). For more information,"
                + " see the Javadoc for Files.createTempDir().";
    
        @Override
        File createTempDir() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top