- Sort Score
- Num 10 results
- Language All
Results 461 - 470 of 522 for authentication (0.18 seconds)
-
src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java
final String url = authenticator.buildDefaultRedirectUrl(); assertEquals("http://localhost:8080/sso/", url); } @Test public void test_logout_returnsNull() { assertNull(authenticator.logout(null)); } @Test public void test_getResponse_returnsNull() { assertNull(authenticator.getResponse(null)); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 11K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
val hostnameVerifier: HostnameVerifier? = address.hostnameVerifier val certificatePinner: CertificatePinner? = address.certificatePinner } @Test fun authenticator() { var authenticator: Authenticator = Authenticator { route, response -> TODO() } } @Test fun cache() { val cache = Cache(File("/cache/"), Integer.MAX_VALUE.toLong()) cache.initialize() cache.delete()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:47:20 GMT 2026 - 49.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RealInterceptorChain.kt
return copy(retryOnConnectionFailure = retryOnConnectionFailure) } override fun withAuthenticator(authenticator: Authenticator): Interceptor.Chain { check(exchange == null) { "authenticator can't be adjusted in a network interceptor" } return copy(authenticator = authenticator) } override fun withCookieJar(cookieJar: CookieJar): Interceptor.Chain {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 10 21:47:20 GMT 2026 - 12.8K bytes - Click Count (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorSecurityTest.java
@Test public void testMultipleSecureWipes() { authenticator = new NtlmPasswordAuthenticator("DOMAIN", "username", "password"); // Multiple wipes should not cause errors authenticator.secureWipePassword(); authenticator.secureWipePassword(); authenticator.secureWipePassword(); assertNull(authenticator.getPassword(), "Password should remain null after multiple wipes"); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 8.5K bytes - Click Count (0) -
docs/es/docs/tutorial/security/index.md
* Una cookie. * `http`: sistemas de autenticación HTTP estándar, incluyendo: * `bearer`: un header `Authorization` con un valor de `Bearer ` más un token. Esto se hereda de OAuth2. * Autenticación básica HTTP. * Digest HTTP, etc. * `oauth2`: todas las formas de OAuth2 para manejar la seguridad (llamadas "flujos").
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Dec 17 10:15:01 GMT 2025 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java
/** * Helper method to set defaultSettings on an authenticator instance */ private void setDefaultSettings(SamlAuthenticator authenticator, Map<String, Object> settings) throws Exception { Field defaultSettingsField = SamlAuthenticator.class.getDeclaredField("defaultSettings"); defaultSettingsField.setAccessible(true); defaultSettingsField.set(authenticator, settings); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 18.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticatorTest.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.internal.authenticator import java.net.Authenticator import java.net.InetAddress import junit.framework.TestCase.assertNull import okhttp3.FakeDns import okhttp3.Protocol.HTTP_2 import okhttp3.Request import okhttp3.Response
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 2.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorOverridesTest.kt
} object AuthenticatorOverride : Override<Authenticator> { override fun Interceptor.Chain.value(): Authenticator = authenticator override fun Interceptor.Chain.withOverride(value: Authenticator): Interceptor.Chain = withAuthenticator(value) override fun OkHttpClient.Builder.withOverride(value: Authenticator): OkHttpClient.Builder = authenticator(value)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 11 02:37:00 GMT 2026 - 28.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/SsoManagerTest.java
// Verify that "aad" SSO type resolves to "entraidAuthenticator" SsoAuthenticator authenticator = ssoManager.getAuthenticator(); assertNotNull(authenticator); assertEquals(testAuthenticator, authenticator); } @Test public void test_getAuthenticator_entraidDirectAccess() { // Register an authenticator with "entraid" name ComponentUtil.register(testAuthenticator, "entraidAuthenticator");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/es/docs/advanced/strict-content-type.md
* no tienen un header `Content-Type` (p. ej. usando `fetch()` con un body `Blob`) * y no envían credenciales de autenticación. Este tipo de ataque es relevante principalmente cuando: * la aplicación corre localmente (p. ej. en `localhost`) o en una red interna * y la aplicación no tiene ninguna autenticación, espera que cualquier request de la misma red sea confiable. ## Ejemplo de ataque { #example-attack }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:12:26 GMT 2026 - 3.4K bytes - Click Count (0)