Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for user_password (0.48 sec)

  1. src/test/java/jcifs/http/NtlmServletTest.java

         */
        @Test
        void testService_BasicAuth_Success() throws Exception {
            ntlmServlet.init(servletConfig);
            setupMocksForAuth();
    
            // Base64 encoding of "TEST_DOMAIN\\user:password"
            when(request.getHeader("Authorization")).thenReturn("Basic VEVTVF9ET01BSU5cdXNlcjpwYXNzd29yZA==");
            lenient().when(request.isSecure()).thenReturn(true);
            when(request.getSession()).thenReturn(session);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                final List<SearchResult> result) {
            final List<ModificationItem> modifyList = new ArrayList<>();
            if (user.getOriginalPassword() != null) {
                modifyReplaceEntry(modifyList, "userPassword", user.getOriginalPassword());
            }
    
            final String attrSurname = fessConfig.getLdapAttrSurname();
            OptionalUtil.ofNullable(user.getSurname())
                    .filter(StringUtil::isNotBlank)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        // IPv6 colons don't interfere with port numbers or passwords.
        assertThat(parse("http://[::1]:8080/").port).isEqualTo(8080)
        assertThat(parse("http://user:password@[::1]/").password).isEqualTo("password")
        assertThat(parse("http://user:password@[::1]:8080/").host).isEqualTo("::1")
    
        // Permit the contents of IPv6 addresses to be percent-encoded...
        assertThat(parse("http://[%3A%3A%31]/").host).isEqualTo("::1")
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top