- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 241 for transports (0.06 sec)
-
android/guava-tests/test/com/google/common/cache/CacheBuilderFactory.java
* method wraps the elements in the input sets (which may contain null) as Optionals, calls * Sets.cartesianProduct with those, then transforms the result to unwrap the Optionals. */ private Iterable<List<Object>> buildCartesianProduct(Set<?>... sets) { List<Set<Optional<?>>> optionalSets = Lists.newArrayListWithExpectedSize(sets.length);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator2Test.java
setStatus(qr, NtStatus.NT_STATUS_NO_SUCH_FILE); qr.received(); q.setResponse(qr); // Now emulate error thrown by transport for create chain throw new SmbException(NtStatus.NT_STATUS_NO_SUCH_FILE, false); } return null; }).when(tree).send(any(Request.class));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import jcifs.CIFSContext; import jcifs.DialectVersion; import jcifs.util.transport.Response; /** * Test class for SmbNegotiationResponse interface */ class SmbNegotiationResponseTest { @Mock private SmbNegotiationResponse negotiationResponse; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
when(httpSession.getAttribute("NtlmHttpChal")).thenReturn(null); // For this test, we'll simulate that no auth header means we should challenge // Since we can't mock the internal transport operations easily without real network, // we'll test the simpler case where no NTLM negotiation is needed when(request.getHeader("Authorization")).thenReturn(null);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
protected static final String OIC_CLIENT_SECRET = "oic.client.secret"; /** Session key for OpenID Connect state parameter. */ protected static final String OIC_STATE = "OIC_STATE"; /** HTTP transport for OpenID Connect requests. */ protected final HttpTransport httpTransport = new NetHttpTransport(); /** JSON factory for OpenID Connect response parsing. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
cmd/sftp-server-driver.go
if f.remoteIP != "" { tr = forwardForTransport{tr: tr, fwd: f.remoteIP} } return minio.New(f.endpoint, &minio.Options{ TrailingHeaders: true, Creds: mcreds, Secure: globalIsTLS, Transport: tr, }) } func (f *sftpDriver) AccessKey() string { return f.permissions.CriticalOptions["AccessKey"] } func (f *sftpDriver) Fileread(r *sftp.Request) (ra io.ReaderAt, err error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Feb 10 16:35:49 UTC 2025 - 11.6K bytes - Viewed (0) -
tensorflow/c/BUILD
# "//tensorflow/cc/experimental/tf2:__subpackages__", # copybara:uncomment_end "//tensorflow/compiler/mlir/tensorflow/c:__subpackages__", "//tensorflow/core/transforms:__subpackages__", ], deps = [ ":c_api_macros_hdrs", "@local_xla//xla/tsl/c:tsl_status", "@local_xla//xla/tsl/c:tsl_status_internal", "@local_xla//xla/tsl/platform:status",
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Aug 18 03:53:25 UTC 2025 - 30.6K bytes - Viewed (0) -
cmd/bucket-targets.go
creds := credentials.NewStaticV4(config.AccessKey, config.SecretKey, "") api, err := minio.New(tcfg.Endpoint, &minio.Options{ Creds: creds, Secure: tcfg.Secure, Region: tcfg.Region, Transport: globalRemoteTargetTransport, }) if err != nil { return nil, err } api.SetAppInfo("minio-replication-target", ReleaseTag+" "+tcfg.Arn) hcDuration := defaultHealthCheckDuration
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileInputStream.java
import jcifs.internal.smb1.com.SmbComReadAndX; import jcifs.internal.smb1.com.SmbComReadAndXResponse; import jcifs.internal.smb2.io.Smb2ReadRequest; import jcifs.internal.smb2.io.Smb2ReadResponse; import jcifs.util.transport.TransportException; /** * This InputStream can read bytes from a file on an SMB file server. Offsets are 64 bits. */ public class SmbFileInputStream extends InputStream {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.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 Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0)