- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 167 for authentication (0.51 sec)
-
docs/recipes.md
Use `Response.challenges()` to get the schemes and realms of any authentication challenges. When fulfilling a `Basic` challenge, use `Credentials.basic(username, password)` to encode the request header. === ":material-language-kotlin: Kotlin" ```kotlin private val client = OkHttpClient.Builder() .authenticator(object : Authenticator { @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/main/resources/fess_label.properties
labels.menu_label_type=Label labels.menu_key_match=Key Match labels.menu_boost_document_rule=Document Boost labels.menu_path_mapping=Path Mapping labels.menu_web_authentication=Web Authentication labels.menu_file_authentication=File Authentication labels.menu_request_header=Request Header labels.menu_duplicate_host=Duplicate Host labels.menu_user=User labels.menu_role=Role labels.menu_group=Group labels.menu_suggest=Suggest
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 40.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Challenge.kt
import kotlin.text.Charsets.ISO_8859_1 import okhttp3.internal.unmodifiable /** * An [RFC 7235][rfc_7235] challenge. * * [rfc_7235]: https://tools.ietf.org/html/rfc7235 */ class Challenge( /** Returns the authentication scheme, like `Basic`. */ @get:JvmName("scheme") val scheme: String, authParams: Map<String?, String>, ) { /** * Returns the auth params, including [realm] and [charset] if present, but as
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 15:01:35 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
super(); } /** * Behavior class for web configuration operations. */ @Resource protected WebConfigBhv webConfigBhv; /** * Behavior class for web authentication operations. */ @Resource protected WebAuthenticationBhv webAuthenticationBhv; /** * Behavior class for request header operations. */ @Resource
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
# Permission # ------ # Admin user names for authentication. authentication.admin.users=admin # Admin role names for authentication. authentication.admin.roles=admin # Default permissions for search roles. role.search.default.permissions= # Default display permissions for search roles.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
} public void test_throwAndCatch() { // Test throwing and catching the exception String expectedMessage = "LDAP authentication failed"; try { throw new LdapOperationException(expectedMessage); } catch (LdapOperationException e) { assertEquals(expectedMessage, e.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
*/ package org.codelibs.fess.exception; /** * Exception thrown during SSO (Single Sign-On) processing operations. * * This exception is used to indicate errors that occur during the execution * of SSO authentication and authorization processes. It extends FessSystemException * to provide consistent error handling within the Fess system for SSO-related * processing failures such as token validation errors, communication failures
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
import jakarta.servlet.ServletContext; /** * Base action class for admin pages in Fess. * <p> * This abstract class provides common functionality for all admin actions, * including authentication, authorization, and HTML data setup. * </p> * */ public abstract class FessAdminAction extends FessBaseAction { /** Constant suffix for view names. */ public static final String VIEW = "-view";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
// retry, we return true and try a new route. return true } /** * Figures out the HTTP request to make in response to receiving [userResponse]. This will * either add authentication headers, follow redirects or handle a client request timeout. If a * follow-up is either unnecessary or not applicable, this returns null. */ @Throws(IOException::class) private fun followUpRequest(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 12.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt
* * * For redirects (301: Moved Permanently, 302: Temporary Redirect, etc.) * * For auth challenges (401: Unauthorized, 407: Proxy Authentication Required.) * * For client timeouts (408: Request Time-Out.) * * For server failures (503: Service Unavailable.) * * Response header values like `Location` and `Retry-After` are also considered. *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 17.4K bytes - Viewed (0)