- Sort Score
- Result 10 results
- Languages All
Results 2141 - 2150 of 2,308 for instants (0.08 sec)
-
src/test/java/jcifs/smb/SmbTransportPoolImplTest.java
private Credentials creds; @Mock private Address address; @Mock private SmbNegotiationResponse negotiationResponse; @BeforeEach void setUp() { // Create a fresh pool instance for each test pool = new SmbTransportPoolImpl(); // Setup default mock behaviors when(ctx.getConfig()).thenReturn(config); when(ctx.getNameServiceClient()).thenReturn(nameSvc);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 19.2K bytes - Viewed (0) -
cmd/erasure.go
// some may be local and some remote. getEndpointStrings func() []string // Locker mutex map. nsMutex *nsLockMap } // NewNSLock - initialize a new namespace RWLocker instance. func (er erasureObjects) NewNSLock(bucket string, objects ...string) RWLocker { return er.nsMutex.NewNSLock(er.getLockers, bucket, objects...) } // Shutdown function for object storage interface.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} /** * Get the channel manager * * @return channel manager instance */ public ChannelManager getChannelManager() { return channelManager; } /** * Get the lease manager for SMB3 lease support * * @return lease manager instance */ public LeaseManager getLeaseManager() { return leaseManager; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
docs/recipes.md
It is an error to have multiple caches accessing the same cache directory simultaneously. Most applications should call `new OkHttpClient()` exactly once, configure it with their cache, and use that same instance everywhere. Otherwise the two cache instances will stomp on each other, corrupt the response cache, and possibly crash your program.
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/test/java/jcifs/http/NetworkExplorerTest.java
defaultDomainField.setAccessible(true); defaultDomainField.set(explorer, null); } /** * Helper method to create a mocked NetworkExplorer instance */ private NetworkExplorer createMockedNetworkExplorer(boolean enableBasic, String realm) { return new NetworkExplorer() { @Override
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 21.2K bytes - Viewed (0) -
docs/en/docs/tutorial/security/oauth2-jwt.md
/// ## Hash and verify the passwords { #hash-and-verify-the-passwords } Import the tools we need from `pwdlib`. Create a PasswordHash instance with recommended settings - it will be used for hashing and verifying passwords. /// tipRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Sep 29 02:57:38 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/first-steps.md
Вы можете использовать весь функционал <a href="https://www.starlette.dev/" class="external-link" target="_blank">Starlette</a> и в `FastAPI`. /// ### Шаг 2: создайте экземпляр `FastAPI` { #step-2-create-a-fastapi-instance } {* ../../docs_src/first_steps/tutorial001_py39.py hl[3] *} Здесь переменная `app` будет экземпляром класса `FastAPI`. Это будет основная точка взаимодействия для создания всего вашего API.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 17.7K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
val jgitSshAgent = "org.eclipse.jgit:org.eclipse.jgit.ssh.apache.agent" val jna = "net.java.dev.jna:jna" val jnaPlatform = "net.java.dev.jna:jna-platform" val jnrConstants = "com.github.jnr:jnr-constants" val joda = "joda-time:joda-time" val jsch = "com.github.mwiede:jsch" val jsr305 = "com.google.code.findbugs:jsr305" val jspecify = "org.jspecify:jspecify" val julToSlf4j = "org.slf4j:jul-to-slf4j"
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:45:52 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
import java.util.List; import java.util.TimeZone; import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.ResolverType; /** * Configuration implementation that delegates to another configuration instance. * Provides a wrapper mechanism for configuration objects with delegation pattern. * * @author mbechler */ public class DelegatingConfiguration implements Configuration {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
* * @param hostname the hostname to resolve * @param possibleNTDomainOrWorkgroup whether to perform additional name query for master browser * @return array of resolved UniAddress instances * @throws UnknownHostException if the host cannot be resolved */ public static UniAddress[] getAllByName(final String hostname, final boolean possibleNTDomainOrWorkgroup) throws UnknownHostException {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17K bytes - Viewed (0)