- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 285 for Authentication (1.14 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/internal/RecordingAuthenticator.kt
* limitations under the License. */ package okhttp3.internal import java.net.Authenticator import java.net.PasswordAuthentication class RecordingAuthenticator( private val authentication: PasswordAuthentication? = PasswordAuthentication( "username", "password".toCharArray(), ), ) : Authenticator() { val calls = mutableListOf<String>()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
} } Authentication authentication = new Authentication(server.getUsername(), server.getPassword()); authentication.setPrivateKey(server.getPrivateKey()); authentication.setPassphrase(server.getPassphrase()); repository.setAuthentication(authentication); } else {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 31.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for web authentication administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Web authentication configuration ID */ public String id;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
super(); } /** The default domain for NTLM authentication */ private String defaultDomain; /** The domain controller for authentication */ private String domainController; /** Flag to enable load balancing across domain controllers */ private boolean loadBalance; /** Flag to enable basic authentication */ private boolean enableBasic;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/WagonManager.java
import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.wagon.ResourceDoesNotExistException; import org.apache.maven.wagon.TransferFailedException; import org.apache.maven.wagon.authentication.AuthenticationInfo; import org.apache.maven.wagon.proxy.ProxyInfo; /** * Manages <a href="https://maven.apache.org/wagon">Wagon</a> related operations in Maven. * */ @Deprecated
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* 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 * @param nonAnonymous * actually perform authentication with empty password * @throws GeneralSecurityException if a cryptographic error occurs
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
Exception middleCause = new Exception("SSO provider unreachable", rootCause); SsoProcessException topException = new SsoProcessException("SSO authentication failed", middleCause); assertEquals("SSO authentication failed", topException.getMessage()); assertEquals(middleCause, topException.getCause()); assertEquals(rootCause, topException.getCause().getCause()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/spnego/SpnegoException.java
*/ package jcifs.spnego; import jcifs.CIFSException; /** * Exception thrown during SPNEGO authentication processing. * * This exception indicates an error in SPNEGO token processing, * negotiation, or authentication flow. * * @author mbechler */ public class SpnegoException extends CIFSException { /** * */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/resources/fess_label_en.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: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/WebConfigTest.java
import org.codelibs.fess.app.service.RequestHeaderService; import org.codelibs.fess.app.service.WebAuthenticationService; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.client.http.Authentication; import org.codelibs.fess.crawler.client.http.HcHttpClient; import org.codelibs.fess.helper.SystemHelper; import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.mylasta.direction.FessProp;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0)