Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 157 for PASSWORD (0.04 sec)

  1. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            boolean result = chain.changePassword(null, "password");
    
            assertFalse(result);
            assertEquals(1, chain.changePasswordCalls.size());
            assertNull(chain.changePasswordCalls.get(0).getKey());
            assertEquals("password", chain.changePasswordCalls.get(0).getValue());
        }
    
        // Test changePassword with null password
        public void test_changePassword_nullPassword() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_edit.jsp

                                        <label for="password" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.webauth_password"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="password"/>
                                            <la:password styleId="password" property="password" styleClass="form-control"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  3. src/main/config/es/fess_user_user.json

              "mobile" : {
                "type" : "keyword"
              },
              "name" : {
                "type" : "keyword"
              },
              "pager" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
              "physicalDeliveryOfficeName" : {
                "type" : "keyword"
              },
              "postOfficeBox" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                                    key="labels.webauth_password"/></th>
                                            <td><c:if test="${password!=''}">******</c:if> <la:hidden
                                                    property="password"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_it.properties

    errors.invalid_kuromoji_segmentation=Il numero di segmentazioni di {0} non corrisponde al numero di segmentazioni di {1}.
    errors.invalid_str_is_included = {0} non è valido in {1}.
    errors.blank_password = La password è obbligatoria.
    errors.invalid_confirm_password = La conferma della password non corrisponde.
    errors.cannot_delete_doc_because_of_running = Il crawler è in esecuzione. Impossibile eliminare il documento.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                final String username = userCredential.getUser();
                final String password = userCredential.getPassword();
                if (!fessConfig.isAdminUser(username)) {
                    final OptionalEntity<FessUser> ldapUser = ComponentUtil.getLdapManager().login(username, password);
                    if (ldapUser.isPresent()) {
                        return ldapUser;
                    }
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        val encodedUsername: String = httpUrl.encodedUsername()
        val username: String = httpUrl.username()
        val encodedPassword: String = httpUrl.encodedPassword()
        val password: String = httpUrl.password()
        val host: String = httpUrl.host()
        val port: Int = httpUrl.port()
        val pathSize: Int = httpUrl.pathSize()
        val encodedPath: String = httpUrl.encodedPath()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/main/config/es/fess_config_web_authentication.json

                "type" : "long"
              },
              "hostname" : {
                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
              "port" : {
                "type" : "integer"
              },
              "protocolScheme" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                        <label for="password" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.user_password"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="password"/>
                                            <la:password styleId="password" property="password" styleClass="form-control"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/internal/RecordingAuthenticator.kt

    import java.net.Authenticator
    import java.net.PasswordAuthentication
    
    class RecordingAuthenticator(
      private val authentication: PasswordAuthentication? =
        PasswordAuthentication(
          "username",
          "password".toCharArray(),
        ),
    ) : Authenticator() {
      val calls = mutableListOf<String>()
    
      override fun getPasswordAuthentication(): PasswordAuthentication? {
        calls.add(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top