- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 352 for Authentication (0.37 sec)
-
docs/en/docs/advanced/testing-dependencies.md
### Use cases: external service { #use-cases-external-service } An example could be that you have an external authentication provider that you need to call. You send it a token and it returns an authenticated user.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.4K 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) -
src/test/java/jcifs/smb1/https/HandlerTest.java
import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; /** * Test suite for jcifs.smb1.https.Handler class. * Tests HTTPS URL stream handler functionality with NTLM authentication support. */ @DisplayName("SMB1 HTTPS Handler Tests") class HandlerTest { private Handler handler; @BeforeEach void setUp() { handler = new Handler(); } @Nested
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
import org.bouncycastle.asn1.DERBitString; import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; /** * Represents a Kerberos AP-REQ (Application Request) message. * This class parses and contains the authentication request sent from a client to a server. */ public class KerberosApRequest { private byte apOptions; private KerberosTicket ticket; /** * Creates a Kerberos AP request from a token.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
import jcifs.internal.smb2.ServerMessageBlock2Response; import jcifs.internal.util.SMBUtil; import jcifs.smb.NtStatus; /** * SMB2 Session Setup response message. This response contains the server's authentication * challenge or confirms successful session establishment. * * @author mbechler * */ public class Smb2SessionSetupResponse extends ServerMessageBlock2Response { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
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/jcifs/pac/kerberos/KerberosToken.java
import org.bouncycastle.asn1.ASN1TaggedObject; import org.bouncycastle.asn1.BERTags; import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; /** * Represents a Kerberos authentication token. */ public class KerberosToken { private KerberosApRequest apRequest; /** * Constructs a KerberosToken from token bytes. * * @param token the token bytes
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K 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) -
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertFalse(exception.isAuthenticationError()); assertFalse(exception.isFileSystemError()); assertFalse(exception.isTransientError()); // Authentication error exception = new SmbOperationException(SmbOperationException.ErrorCode.INVALID_CREDENTIALS, "Bad password"); assertFalse(exception.isNetworkError()); assertTrue(exception.isAuthenticationError());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
docs/sts/etcd.md
``` export MINIO_ETCD_ENDPOINTS=http://localhost:2379 minio server /data ``` NOTE: If `etcd` is configured with `Client-to-server authentication with HTTPS client certificates` then you need to use additional envs such as `MINIO_ETCD_CLIENT_CERT` pointing to path to `etcd-client.crt` and `MINIO_ETCD_CLIENT_CERT_KEY` path to `etcd-client.key` . ### 4. Test with MinIO STS API
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.5K bytes - Viewed (0)