- Sort Score
 - Result 10 results
 - Languages All
 
Results 1 - 10 of 99 for authenticators (0.26 sec)
- 
				
				
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
SsoAuthenticator[] authenticators = ssoManager.getAuthenticators(); assertEquals(3, authenticators.length); assertEquals(authenticator1, authenticators[0]); assertEquals(authenticator2, authenticators[1]); assertEquals(authenticator3, authenticators[2]); } public void test_getAuthenticators_withNoRegisteredAuthenticators() { SsoAuthenticator[] authenticators = ssoManager.getAuthenticators();Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.9K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/sso/SsoManager.java
/** * Gets all registered SSO authenticators. * * @return Array of all registered SSO authenticators */ public SsoAuthenticator[] getAuthenticators() { return authenticatorList.toArray(new SsoAuthenticator[authenticatorList.size()]); } /** * Registers an SSO authenticator with this manager. * * @param authenticator The SSO authenticator to register */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
*/ public class NtlmPasswordAuthenticatorSecurityTest { private NtlmPasswordAuthenticator authenticator; @BeforeEach public void setUp() { authenticator = null; } @AfterEach public void tearDown() throws Exception { if (authenticator != null) { authenticator.close(); } } @Test @DisplayName("Test password stored as char array")Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.5K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTimingAttackTest.java
char[] diffAtMiddle = "supersecretpXssword123456789".toCharArray(); char[] diffAtEnd = "supersecretpassword12345678X".toCharArray(); // Create authenticators NtlmPasswordAuthenticator baseAuth = new NtlmPasswordAuthenticator("domain", "user", new String(basePassword));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
/** * Resolves login credentials using various authentication methods. * This method handles local user authentication, LDAP authentication, * and SSO authentication through configured authenticators. * * @param resolver the credential resolver to use */ @Override protected void resolveCredential(final CredentialResolver resolver) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
} /** * Test that closed authenticator prevents all sensitive operations */ @Test @DisplayName("Test closed authenticator blocks all sensitive operations") public void testClosedAuthenticatorBlocking() throws Exception { NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("DOMAIN", "user", "BlockedPass123!"); // Close the authenticator auth.close();Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) - 
				
				
docs/changelogs/changelog_3x.md
_2018-11-16_ * **OkHttp now supports TLS 1.3.** This requires either Conscrypt or Java 11+. * **Proxy authenticators are now asked for preemptive authentication.** OkHttp will now request authentication credentials before creating TLS tunnels through HTTP proxies (HTTP `CONNECT`). Authenticators should identify preemptive authentications by the presence of a challenge whose scheme is "OkHttp-Preemptive".Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) - 
				
				
CHANGELOG/CHANGELOG-1.30.md
- Structured Authentication Configuration now supports configuring multiple JWT authenticators. The maximum allowed JWT authenticators in the authentication configuration is 64. ([#123431](https://github.com/kubernetes/kubernetes/pull/123431), [@aramase](https://github.com/aramase))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 18 18:59:10 UTC 2025 - 398.1K bytes - Viewed (0) - 
				
				
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Authenticator.kt
companion object { /** An authenticator that knows no credentials and makes no attempt to authenticate. */ @JvmField val NONE: Authenticator = AuthenticatorNone() private class AuthenticatorNone : Authenticator { override fun authenticate( route: Route?, response: Response, ): Request? = null }Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.5K bytes - Viewed (0) - 
				
				
CHANGELOG/CHANGELOG-1.32.md
- Introduced a new metric `kubelet_admission_rejections_total` to track the number of pods rejected during admission. ([#128556](https://github.com/kubernetes/kubernetes/pull/128556), [@AnishShah](https://github.com/AnishShah))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0)