- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for AUTHENTICATING (0.07 sec)
-
src/main/java/jcifs/internal/smb2/multichannel/ChannelState.java
*/ DISCONNECTED(0), /** * Connection establishment in progress */ CONNECTING(1), /** * Authentication in progress */ AUTHENTICATING(2), /** * Channel is established and ready for use */ ESTABLISHED(3), /** * Channel binding in progress */ BINDING(4), /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.7K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/Authenticate.kt
): Request? { if (response.request.header("Authorization") != null) { return null // Give up, we've already attempted to authenticate. } println("Authenticating for response: $response") println("Challenges: ${response.challenges()}") val credential = Credentials.basic("jesse", "password1") return response.request .newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* The password to use when constructing the response. * @param domain * The domain in which the user has an account. * @param user * The username for the authenticating user. * @param workstation * The workstation from which authentication is * taking place. * @param flags the flags to use for the Type-3 message
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/Authenticate.java
if (response.request().header("Authorization") != null) { return null; // Give up, we've already attempted to authenticate. } System.out.println("Authenticating for response: " + response); System.out.println("Challenges: " + response.challenges()); String credential = Credentials.basic("jesse", "password1"); return response.request().newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 12 07:26:27 UTC 2021 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
* @param password The password to use when constructing the response. * @param domain The domain in which the user has an account. * @param user The username for the authenticating user. * @param workstation The workstation from which authentication is * taking place. */ /** * Creates a Type-3 message in response to the given Type-2 message. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* Used when LDAP authentication is enabled. */ @Size(max = 1000) public String ldapProviderUrl; /** * LDAP security principal for binding to the LDAP server. * Used for authenticating with the LDAP server. */ @Size(max = 1000) public String ldapSecurityPrincipal; /** * LDAP admin security principal for administrative operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
) = apply { this.heldCertificate = heldCertificate this.intermediates = arrayOf(*intermediates) // Defensive copy. } /** * Add a trusted root certificate to use when authenticating a peer. Peers must provide * a chain of certificates whose root is one of these. */ fun addTrustedCertificate(certificate: X509Certificate) = apply {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/recipes.md
if (response.request.header("Authorization") != null) { return null // Give up, we've already attempted to authenticate. } println("Authenticating for response: $response") println("Challenges: ${response.challenges()}") val credential = Credentials.basic("jesse", "password1") return response.request.newBuilder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
## 3. Multi-Channel Architecture ### 3.1 Channel States ```java public enum ChannelState { DISCONNECTED(0), // Not connected CONNECTING(1), // Connection in progress AUTHENTICATING(2), // Authentication in progress ESTABLISHED(3), // Ready for use BINDING(4), // Channel binding in progress ACTIVE(5), // Actively transferring data
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
search_engine.http.url=http://localhost:9201 # Path to SSL certificate authorities for secure HTTP connections. search_engine.http.ssl.certificate_authorities= # Username for authenticating to the search engine. search_engine.username= # Password for authenticating to the search engine. search_engine.password= # Interval (ms) for heartbeat checks to the search engine. search_engine.heartbeat_interval=10000
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)