- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for get_credentials (0.1 sec)
-
tests/test_dependency_paramless.py
raise HTTPException(detail="a or b not in scopes", status_code=401) return {"token": credentials, "scopes": security_scopes.scopes} @app.get("/get-credentials") def get_credentials( credentials: Annotated[dict, Security(process_auth, scopes=["a", "b"])], ): return credentials @app.get( "/parameterless-with-scopes",
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java
public AuthScope getAuthScope() { return authScope; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.client.http.Authentication#getCredentials() */ @Override public Credentials getCredentials() { return credentials; } /** * Sets the authentication scope. * * @param authScope the authentication scope to set */
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/context/AbstractCIFSContextTest.java
// Verify that the new context uses NtlmPasswordAuthenticator (guest) assertTrue(wrappedContext.getCredentials() instanceof NtlmPasswordAuthenticator); assertTrue(wrappedContext.getCredentials().isGuest()); } @Test void testGetCredentials() { assertEquals(mockCredentials, context.getCredentials()); } @Test void testHasDefaultCredentials_withNonAnonymous() {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextCredentialWrapper.java
super(delegate); this.creds = creds; } /** * * {@inheritDoc} * * @see jcifs.context.CIFSContextWrapper#getCredentials() */ @Override public Credentials getCredentials() { return this.creds; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#renewCredentials(java.lang.String, java.lang.Throwable) */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { if (this.server.security == SmbConstants.SECURITY_SHARE && this.ctx.getCredentials() instanceof NtlmPasswordAuthenticator) { final NtlmPasswordAuthenticator pwAuth = (NtlmPasswordAuthenticator) this.ctx.getCredentials(); if (isExternalAuth(pwAuth)) { this.passwordLength = 1; } else if (this.server.encryptedPasswords) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/CIFSContextTest.java
// Given Credentials mockCreds = mock(Credentials.class); when(mockContext.getCredentials()).thenReturn(mockCreds); // When Credentials creds = mockContext.getCredentials(); // Then assertEquals(mockCreds, creds); verify(mockContext).getCredentials(); } @Test @DisplayName("Should get URLStreamHandler") void testGetUrlHandler() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/DfsResolverTest.java
} @Test void testIsTrustedDomain_NoUserDomain() throws CIFSException { when(mockConfig.isDfsDisabled()).thenReturn(false); when(mockContext.getCredentials()).thenReturn(mockCredentials); when(mockCredentials.getUserDomain()).thenReturn(null); assertFalse(dfsResolver.isTrustedDomain(mockContext, "anyDomain")); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
} /** * {@inheritDoc} * * @see jcifs.CIFSContext#getCredentials() */ @Override public Credentials getCredentials() { return getDefaultCredentials(); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#hasDefaultCredentials() */ @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
private WebConfig webConfig; public Authentication getAuthentication() { return new AuthenticationImpl(getAuthScope(), getCredentials(), getAuthScheme()); } private AuthScheme getAuthScheme() { final String scheme = getProtocolScheme(); if (Constants.BASIC.equals(scheme)) { return new BasicScheme(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 04:23:08 UTC 2025 - 6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Authentication.java
/** * Retrieves the credentials associated with the current authentication. * * @return the credentials object containing authentication details. */ Credentials getCredentials(); /** * Retrieves the authentication scheme to be used for HTTP requests. * * @return the authentication scheme */ /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.7K bytes - Viewed (0)