- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 358 for authentication (0.07 sec)
-
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
Integer port = sambaContainer.getMappedPort(SMB_PORT); baseUrl = "smb://" + host + ":" + port + "/"; log.info("Samba container started - Base URL: {}", baseUrl); // Create authentication context - try guest auth first for broader compatibility try { NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication(SingletonContext.getInstance(), WORKGROUP, USERNAME, PASSWORD);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
to the kubelet that allows it to track container images and the list of authentication information that leads to their successful pulls. This data is persisted across reboots of the host and restarts of the kubelet. The kubelet ensures any image requiring credential verification is always pulled if authentication information from an image pull is not yet present, thus enforcing authentication / re-authentication. This means an image pull might be attempted even in cases where a pod...
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:46:23 UTC 2025 - 294.3K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
assertThrows(NdrException.class, () -> message.decode_header(mockBuffer)); } @Test @DisplayName("decode_header should throw NdrException for non-zero authentication length") void testDecodeHeaderThrowsNdrExceptionForAuthentication() { when(mockBuffer.dec_ndr_small()).thenReturn(5) .thenReturn(0)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
import org.codelibs.fess.crawler.exception.CrawlerSystemException; import org.codelibs.fess.exception.CommandExecutionException; import org.codelibs.fess.opensearch.user.exentity.User; /** * Authentication chain implementation that executes external commands for user operations. * Provides user management through command-line tool execution for password changes and user deletion. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; /** * API manager for search engine administrative operations. * Provides secure access to search engine APIs through authentication and token-based authorization. */ public class SearchEngineApiManager extends BaseApiManager { private static final String ADMIN_SERVER = "/admin/server_";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
assertDoesNotThrow(() -> spiedConnection.getResponseCode()); assertDoesNotThrow(() -> spiedConnection.getInputStream()); } /** * Test a successful NTLM authentication handshake. * This is a simplified test that verifies the basic flow without full NTLM protocol simulation. * @throws IOException * @throws SecurityException */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
verify(mockDelegate).getTransactionBufferSize(); verify(mockDelegate).getBufferCacheSize(); verify(mockDelegate).getNotifyBufferSize(); } @Test @DisplayName("Authentication configuration should delegate correctly") void testAuthenticationConfigurationDelegation() { // Given when(mockDelegate.getLanManCompatibility()).thenReturn(3);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
/** * Creates a default CIFSContext for multi-channel operations. * In a production implementation, this should be replaced with proper context sharing * from the main session to ensure consistent authentication and configuration. */ private jcifs.CIFSContext createDefaultContext() throws CIFSException { try { // Use the configuration from the MultiChannelManager
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
relatively simple way. You can learn more in the **Advanced User Guide** about how to use OAuth2 "scopes", for a more fine-grained permission system, following these same standards. OAuth2 with scopes is the mechanism used by many big authentication providers, like Facebook, Google, GitHub, Microsoft, X (Twitter), etc. to authorize third party applications to interact with their APIs on behalf of their users....
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** * Get the value for the key 'authentication.admin.users'. <br> * The value is, e.g. admin <br> * comment: Admin user names for authentication. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getAuthenticationAdminUsers(); /** * Get the value for the key 'authentication.admin.roles'. <br>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)