- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 83 for password1 (0.15 sec)
-
docs/recipes.md
} println("Authenticating for response: $response") println("Challenges: ${response.challenges()}") val credential = Credentials.basic("jesse", "password1") return response.request.newBuilder() .header("Authorization", credential) .build() } }) .build() fun run() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
.build(), ) server.enqueue(MockResponse(body = "encrypted response from the origin server")) val credential = basic("jesse", "password1") client = client .newBuilder() .sslSocketFactory( handshakeCertificates.sslSocketFactory(), handshakeCertificates.trustManager, ).proxy(server.proxyAddress) .hostnameVerifier(RecordingHostnameVerifier())
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
assertTrue(testLdapManager.changePasswordCalled); } public void test_changePassword_withNullPassword() { // Test password change with null password testLdapManager.changePasswordResult = false; testFessConfig.ldapAdminSyncPassword = false; boolean result = ldapChain.changePassword("testuser", null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
assertTrue("Result should contain password={cipher}, but was: " + result, result.contains("password={cipher}")); // Test with empty encryption target value = "password="; result = ParameterUtil.encrypt(value); assertTrue(result.contains("password={cipher}")); // Test with only whitespace value value = "password= "; result = ParameterUtil.encrypt(value);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/resources/fess_message_de.properties
errors.crud_could_not_find_crud_table = Die Daten {0} wurden nicht gefunden. errors.could_not_find_backup_index=Kein Backup-Index gefunden. errors.no_user_for_changing_password=Das aktuelle Passwort ist nicht korrekt. errors.failed_to_change_password=Fehler beim Ändern Ihres Passworts. errors.unknown_version_for_upgrade=Unbekannte Version für Upgrade. errors.failed_to_upgrade_from=Fehler beim Upgrade von {0}.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.suggestWord=Wort vorschlagen labels.targetLabel=Label labels.term=Begriff labels.fields=Felder labels.ex_q=Erweiterte Abfrage labels.oldPassword=Aktuelles Passwort labels.newPassword=Neues Passwort labels.confirmNewPassword=Neues Passwort (bestätigen) labels.menu_system=System labels.menu_wizard=Assistent labels.menu_crawl_config=Allgemein labels.menu_scheduler_config=Scheduler
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.5K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java
*/ void delete(User user); /** * Changes the password for the specified user. * @param username The username for which to change the password. * @param password The new password. * @return True if the password was successfully changed, false otherwise. */ boolean changePassword(String username, String password); /** * Loads user information from the authentication chain.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
} return redirect(getClass()); } /** * Handles password change for the current user. * * @param form the password form containing new password and confirmation * @return the HTML response after password change attempt */ @Execute public HtmlResponse changePassword(final PasswordForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginForm.java
} /** The username. */ @NotBlank public String username; /** The password. */ @NotBlank public String password; /** The confirm password. */ public String confirmPassword; /** * Clears the security info. */ public void clearSecurityInfo() { password = null; confirmPassword = null; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/AuthenticationManager.java
} /** * Changes the password for a user across all authentication chains. * @param username The username for which to change the password. * @param password The new password. * @return True if the password was successfully changed in all chains, false otherwise. */ public boolean changePassword(final String username, final String password) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.1K bytes - Viewed (0)