- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 287 for Milliseconds (0.07 sec)
-
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
* - Time since last successful notification * - Events per unit time for more adaptive behavior * * @param handle notification handle * @return polling interval in milliseconds */ private long determinePollInterval(ChangeNotificationHandle handle) { int failures = getFailureCount(handle); // Base interval starts at 1 second, increases with failures
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
scheduleAddressChange(newAddress); } } private void scheduleReconnection(long delayMs) { CompletableFuture.delayedExecutor(delayMs, TimeUnit.MILLISECONDS) .execute(() -> { try { transport.disconnect(); transport.connect(); // Reconnect log.info("Successfully reconnected after witness notification");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/BasicFileInformationTest.java
*/ @ExtendWith(MockitoExtension.class) class BasicFileInformationTest { @Mock private BasicFileInformation mockBasicFileInfo; private FileBasicInfo fileBasicInfo; // Use Unix timestamps (milliseconds since 1970) for test values private static final long TEST_CREATE_TIME = System.currentTimeMillis() - 10000; private static final long TEST_LAST_ACCESS_TIME = System.currentTimeMillis() - 8000;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
/** Maximum number of data bytes the server should return */ protected int maxDataCount; /** Maximum number of setup words the server should return */ protected byte maxSetupCount; /** Timeout in milliseconds to wait for the transaction to complete */ protected int timeout = 0; /** Number of setup words in this request */ protected int setupCount = 1; private byte subCommand;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
import static com.google.common.util.concurrent.SneakyThrows.sneakyThrow; import static java.util.concurrent.Executors.callable; import static java.util.concurrent.Executors.newFixedThreadPool; import static java.util.concurrent.TimeUnit.MILLISECONDS; import static java.util.concurrent.TimeUnit.NANOSECONDS; import static java.util.concurrent.TimeUnit.SECONDS; import static org.junit.Assert.assertThrows; import com.google.common.annotations.GwtIncompatible;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
public TimeOfDayInfo() { } /** * The time elapsed since 00:00:00, January 1, 1970 GMT. */ public int elapsedt; /** * The number of milliseconds from the start of the current second. */ public int msecs; /** * The current hour (0-23). */ public int hours; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
} } private void startHealthCheckTask() { healthCheckExecutor.scheduleWithFixedDelay(this::performHealthCheck, healthCheckInterval, healthCheckInterval, TimeUnit.MILLISECONDS); } private void performHealthCheck() { log.debug("Performing multi-channel health check"); for (ChannelGroup channelGroup : sessionChannels.values()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
// Initially not expired assertFalse(auth.isExpired()); // Set short TTL auth.setAuthenticationTTL(100); // 100 milliseconds assertEquals(100, auth.getAuthenticationTTL()); // Still not expired immediately assertFalse(auth.isExpired()); // Wait for expiration Thread.sleep(150);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
docs/config/README.md
maximum concurrent requests allowed before we start slowing things down can be configured with `mc admin config set alias/ heal max_io=30` . By default the wait delay is `250ms` beyond 100 concurrent operations. This means the healer will sleep *250 milliseconds* at max for each heal operation if there are more than *100* concurrent client requests. In most setups this is sufficient to heal the content after drive replacements. Setting `max_sleep` to a *lower* value and setting `max_io` to a...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.1K bytes - Viewed (1) -
src/main/webapp/js/admin/moment-with-locales.min.js
],ge);var ht,ct,Lt=V("Seconds",!1);for(W("S",0,0,function(){return~~(this.millisecond()/100)}),W(0,["SS",2],0,function(){return~~(this.millisecond()/10)}),W(0,["SSS",3],0,"millisecond"),W(0,["SSSS",4],0,function(){return 10*this.millisecond()}),W(0,["SSSSS",5],0,function(){return 100*this.millisecond()}),W(0,["SSSSSS",6],0,function(){return 1e3*this.millisecond()}),W(0,["SSSSSSS",7],0,function(){return 1e4*this.millisecond()}),W(0,["SSSSSSSS",8],0,function(){return 1e5*this.millisecond()}),W(0,[...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 360.5K bytes - Viewed (2)