- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 219 for transports (0.07 sec)
-
cmd/sts-handlers_test.go
minioClient, err := minio.New(s.endpoint, &minio.Options{ Creds: cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken), Secure: s.secure, Transport: s.TestSuiteCommon.client.Transport, }) if err != nil { c.Fatalf("Error initializing client: %v", err) } // Validate that the client from sts creds can access the bucket. c.mustListObjects(ctx, minioClient, bucket)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 100.2K bytes - Viewed (1) -
docs/smb3-features/06-witness-protocol-design.md
try { // Create new transport to new address SmbTransport newTransport = new SmbTransport(context, newAddress, transport.getPort()); // Disconnect old transport transport.disconnect(); // Replace with new transport this.transport = newTransport; newTransport.connect();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.18.md
- Fixed a bug in client-go where new clients with customized `Dial`, `Proxy`, `GetCert` config may get stale HTTP transports. ([#95427](https://github.com/kubernetes/kubernetes/pull/95427), [@roycaihw](https://github.com/roycaihw)) [SIG API Machinery]
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Jun 16 17:18:28 UTC 2021 - 373.2K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportExceptionTest.java
package jcifs.util.transport; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import jcifs.CIFSException; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
@Test @DisplayName("Test constructor with transport and auth - LM compatibility 0") void testConstructorWithTransportLMCompat0() throws Exception { setupTransportMocks(0); SMB1SigningDigest digest = new SMB1SigningDigest(mockTransport, mockAuth); assertNotNull(digest); } @Test @DisplayName("Test constructor with transport and auth - LM compatibility 1")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/resources/log4j.properties
log4j.logger.jcifs: INFO #log4j.logger.jcifs.internal.smb2.create: DEBUG #log4j.logger.jcifs.smb.SmbTreeConnection: DEBUG #log4j.logger.jcifs.smb.SmbTransportImpl: DEBUG #log4j.logger.jcifs.util.transport.Transport: DEBUG #log4j.logger.jcifs.smb.DfsImpl: DEBUG #log4j.logger.jcifs.smb: DEBUG #log4j.logger.jcifs.smb.SmbFileOutputStream: TRACE #log4j.logger.jcifs.smb.SigningDigest: TRACE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 806 bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
setMid(mid); setAsyncId(asyncId); if (asyncId != 0) { addFlags(SMB2_FLAGS_ASYNC_COMMAND); } } /** * {@inheritDoc} * * @see jcifs.util.transport.Request#getCreditCost() */ @Override public int getCreditCost() { return 1; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
cmd/warm-backend-s3.go
} // Credentials initialization var creds *credentials.Credentials switch { case conf.AWSRole: creds = credentials.New(&credentials.IAM{ Client: &http.Client{ Transport: NewHTTPTransport(), }, }) case conf.AWSRoleWebIdentityTokenFile != "" && conf.AWSRoleARN != "": sessionName := conf.AWSRoleSessionName if sessionName == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jun 08 16:13:30 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/debugging/s3-check-md5/main.go
secure := strings.EqualFold(u.Scheme, "https") transport, err := minio.DefaultTransport(secure) if err != nil { log.Fatalln(err) } if insecure { // skip TLS verification transport.TLSClientConfig.InsecureSkipVerify = true } s3Client, err := minio.New(u.Host, &minio.Options{ Creds: credentials.NewStaticV4(accessKey, secretKey, ""), Secure: secure, Transport: transport, }) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Feb 17 01:15:57 UTC 2024 - 6.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
try (RdmaTransport transport = new RdmaTransport(mockTransport, testContext)) { assertNotNull(transport, "Transport should not be null"); assertTrue(transport.isDisconnected(), "Transport should be disconnected initially"); System.out.println("RDMA transport created successfully with mock delegate"); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0)