- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for Global (0.54 sec)
-
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
if (port <= 0) { port = SmbConstants.DEFAULT_PORT; } // Perform cleanup and health checks without global synchronization cleanup(); performHealthCheck(); if (log.isTraceEnabled()) { log.trace("Exclusive " + nonPooled + " enforced signing " + forceSigning); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtStatus.java
"The logon request failed because the trust relationship between this workstation and the primary domain failed.", "The account used is a Computer Account. Use your global user account or local user account to access this server.", "The user must change his password before he logs on the first time.", "The object was not found.",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 14.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
SmbTransportPoolImpl pool = new SmbTransportPoolImpl(); pool.setMaxPoolSize(50); for (int i = 0; i < 100; i++) { pool.contains(null); // Should be fast without global sync } // 2. Buffer Cache Test for (int i = 0; i < 100; i++) { byte[] buf = BufferCache.getBuffer(); BufferCache.releaseBuffer(buf); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtStatus.java
"The trust relationship between the primary domain and the trusted domain failed.", "The account used is a Computer Account. Use your global user account or local user account to access this server.", "The user must change his password before he logs on the first time.", "NT_STATUS_NOT_FOUND", "The referenced account is currently locked out and may not be logged on to.",
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
client.fieldCaps(request, listener); } /** * Prepares a bulk request builder with a global index. * * @param globalIndex the global index for all operations * @return the bulk request builder */ @Override public BulkRequestBuilder prepareBulk(final String globalIndex) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
/** * * Property {@code jcifs.smb.client.lport} (int) * * @return local port to use for outgoing connections */ int getLocalPort(); /** * * Property {@code jcifs.smb.client.laddr} (string) * * @return local address to use for outgoing connections */ InetAddress getLocalAddr(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
static { DEFAULT_BATCH_LIMITS.put("TreeConnectAndX.QueryInformation", 0); } private final Map<String, Integer> batchLimits = new HashMap<>(); /** Local process ID for SMB messages */ protected int localPid = -1; /** Local timezone for time calculations */ protected TimeZone localTimeZone; /** Secure random generator for cryptographic operations */ protected SecureRandom random;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {} TypeToken<Local<String>> type = new TypeToken<Local<String>>() {}; assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType()); assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType()); } public void testStaticLocalClass() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {} TypeToken<Local<String>> type = new TypeToken<Local<String>>() {}; assertEquals(Types.newParameterizedType(Local.class, String.class), type.getType()); assertEquals(new Local<String>() {}.getClass().getGenericSuperclass(), type.getType()); } public void testStaticLocalClass() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
} public long getLastHealthCheck() { return lastHealthCheck; } @Override public String toString() { return String.format("ChannelInfo{id=%s, local=%s, remote=%s, active=%d, healthy=%s}", channelId, localAddress, remoteAddress, activeConnections.get(), isHealthy); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0)