Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getScheme (0.07 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt

    import okio.IOException
    
    /**
     * Protocols that OkHttp implements for [ALPN][ietf_alpn] selection.
     *
     * ## Protocol vs Scheme
     *
     * Despite its name, [java.net.URL.getProtocol] returns the [scheme][java.net.URI.getScheme] (http,
     * https, etc.) of the URL, not the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word
     * *protocol* to identify how HTTP messages are framed.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jun 23 18:58:57 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

                return null;
            }
    
            @Override
            public String getProtocol() {
                return null;
            }
    
            @Override
            public String getScheme() {
                return null;
            }
    
            @Override
            public String getServerName() {
                return null;
            }
    
            @Override
            public int getServerPort() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

                return new java.util.HashMap<>();
            }
    
            @Override
            public String getProtocol() {
                return "HTTP/1.1";
            }
    
            @Override
            public String getScheme() {
                return "http";
            }
    
            @Override
            public String getServerName() {
                return "localhost";
            }
    
            @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

                    return null;
                }
    
                @Override
                public String getProtocol() {
                    return null;
                }
    
                @Override
                public String getScheme() {
                    return null;
                }
    
                @Override
                public String getServerName() {
                    return null;
                }
    
                @Override
    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

                    return null;
                }
    
                @Override
                public String getProtocol() {
                    return null;
                }
    
                @Override
                public String getScheme() {
                    return null;
                }
    
                @Override
                public String getServerName() {
                    return null;
                }
    
                @Override
    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 String getProtocol() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getScheme() {
                throw new UnsupportedOperationException();
            }
    
            @Override
            public String getServerName() {
                throw new UnsupportedOperationException();
            }
    
    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

                return new java.util.HashMap<>();
            }
    
            @Override
            public String getProtocol() {
                return "HTTP/1.1";
            }
    
            @Override
            public String getScheme() {
                return "http";
            }
    
            @Override
            public String getServerName() {
                return "localhost";
            }
    
            @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/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java

            UserInfoHelper userInfoHelper = new UserInfoHelper();
            userInfoHelper.setCookieSecure(null);
    
            MockletHttpServletRequest request = getMockRequest();
            request.setScheme("https");
    
            try {
                userInfoHelper.isSecureCookie();
                assertTrue(true);
            } catch (Exception e) {
                assertTrue(true);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top