- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 340 for Credential (2.55 sec)
-
src/test/java/jcifs/smb/CriticalPerformanceTest.java
import jcifs.Address; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.Credentials; import jcifs.smb1.smb1.BufferCache; /** * Comprehensive performance tests for critical performance fixes */ public class CriticalPerformanceTest { private CIFSContext mockContext; private Configuration mockConfig; private Credentials mockCredentials; @BeforeEach public void setUp() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
/// tip The *path operation* for `swagger_ui_redirect` is a helper for when you use OAuth2. If you integrate your API with an OAuth2 provider, you will be able to authenticate and come back to the API docs with the acquired credentials. And interact with it using the real OAuth2 authentication. Swagger UI will handle it behind the scenes for you, but it needs this "redirect" helper. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java
// // GET /api/admin/general /** * Returns the current general system settings. * Excludes sensitive information like LDAP security credentials from the response. * * @return JSON response containing the general settings configuration */ @Execute public JsonResponse<ApiResult> get$index() { final EditBody form = new EditBody();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
cmd/globals.go
globalBucketHTTPStats = newBucketHTTPStats() // Time when the server is started globalBootTime = UTCNow() globalActiveCred auth.Credentials globalNodeAuthToken string globalSiteReplicatorCred siteReplicatorCred // Captures if root credentials are set via ENV. globalCredViaEnv bool globalPublicCerts []*x509.Certificate
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
src/main/java/jcifs/util/PathValidator.java
// Reconstruct normalized URL StringBuilder normalized = new StringBuilder("smb://"); // Add credentials if present String userInfo = url.getUserInfo(); if (userInfo != null && !userInfo.isEmpty()) { // Don't log credentials normalized.append(userInfo).append("@"); } normalized.append(host.toLowerCase());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type3MessageTest.java
assertEquals(unicodeUser, type3.getUser()); assertEquals(unicodeWorkstation, type3.getWorkstation()); } @Test @DisplayName("Should handle empty credentials") void testEmptyCredentials() throws Exception { // Given Type2Message type2 = createMockType2Message(); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.3K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip -qq awscliv2.zip ./aws/install || sudo ./aws/install echo "done" # Add credentials to ~/.aws/credentials if ! [ -d ~/.aws ]; then mkdir -p ~/.aws fi cat >~/.aws/credentials <<EOF [enterprise] region = us-east-1 aws_access_key_id = minio aws_secret_access_key = minio123 EOF # Create certificates for TLS enabled MinIO
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcPipeHandle.java
boolean isStart = true; /** * Creates a DCERPC pipe handle with the specified URL and authentication * @param url the DCERPC URL specifying the endpoint * @param auth the NTLM authentication credentials * @throws UnknownHostException if the host cannot be resolved * @throws MalformedURLException if the URL is malformed * @throws DcerpcException if DCERPC initialization fails */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
docs/distributed/README.md
**NOTE:** - All the nodes running distributed MinIO should share a common root credentials, for the nodes to connect and trust each other. To achieve this, it is **recommended** to export root user and root password as environment variables, `MINIO_ROOT_USER` and `MINIO_ROOT_PASSWORD`, on all the nodes before executing MinIO server command. If not exported, default `minioadmin/minioadmin` credentials shall be used.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
* MSIE clients using NTLM SSP. This is similar to {@code Authentication: * BASIC} but weakly encrypted and without requiring the user to re-supply * authentication credentials. * <p> * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> for * complete details. * * @deprecated NTLMv1 only */ /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0)