- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for minutit (0.04 sec)
-
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
final ConstraintValidatorContext context = null; // Test basic patterns that should be valid String[] potentiallyValidCrons = { "0 0 * * * ?", // Every hour "0 */15 * * * ?", // Every 15 minutes "0 0 12 * * ?", // Daily at noon "0 15 10 ? * MON-FRI" // Weekdays at 10:15 }; // Test each pattern and see what actually works
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/Smb2HandleCapabilities.java
*/ public static final int SMB2_DHANDLE_FLAG_PERSISTENT = 0x00000002; /** * Default timeout for durable handles (2 minutes) */ public static final long DEFAULT_DURABLE_TIMEOUT = 120000; /** * Maximum timeout for durable handles (5 minutes) */ public static final long MAX_DURABLE_TIMEOUT = 300000; /** * Persistent handles have infinite timeout */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeHandleImplTest.java
when(config.isUseUnicode()).thenReturn(true); SmbComNegotiateResponse nego = new SmbComNegotiateResponse(ctx); // Set server timezone (in minutes) and domain nego.getServerData().serverTimeZone = 60; // 60 minutes nego.getServerData().oemDomainName = "DOMAIN"; when(transport.getNegotiateResponse()).thenReturn(nego);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/PeekingIteratorTest.java
} // TODO(cpovirk): instead of skipping, use a smaller number of steps @GwtIncompatible // works but takes 5 minutes to run public void testPeekingIteratorBehavesLikeIteratorOnThreeElementIterable() { actsLikeIteratorHelper(Lists.newArrayList("A", "B", "C")); } @GwtIncompatible // works but takes 5 minutes to run public void testPeekingIteratorAcceptsNullElements() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/srvsvc.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** * Timeout in milliseconds for witness heartbeat messages */ protected long witnessHeartbeatTimeout = 120000; // 2 minutes /** * Timeout in milliseconds for witness registration */ protected long witnessRegistrationTimeout = 300000; // 5 minutes /** * Delay in milliseconds before attempting witness reconnection */ protected long witnessReconnectDelay = 1000; // 1 second
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
private volatile boolean shutdownInProgress = false; // Configuration private long maxResourceAge = TimeUnit.HOURS.toMillis(1); // 1 hour default private long cleanupInterval = TimeUnit.MINUTES.toMillis(5); // 5 minutes default private boolean leakDetectionEnabled = true; private boolean autoCleanupEnabled = true; /** * Resource holder that tracks resource lifecycle */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
* Maximum raw buffer size for raw read/write operations. */ public int maxRawSize; /** * Server's system time. */ public long serverTime; /** * Server's time zone offset in minutes from UTC. */ public int serverTimeZone; /** * Length of the encryption key. */ public int encryptionKeyLength; /** * Encryption key for password encryption. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
.addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES)) .addHeader("Cache-Control: s-maxage=60") .addHeader("Cache-Control: max-age=180") .build(), ) } @Test fun maxAgePreferredOverHigherMaxAge() { assertNotCached( MockResponse .Builder() .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES)) .addHeader("Cache-Control: s-maxage=180")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
public static final int SMB2_DHANDLE_FLAG_PERSISTENT = 0x00000002; // Timeout values (milliseconds) public static final long DEFAULT_DURABLE_TIMEOUT = 120000; // 2 minutes public static final long MAX_DURABLE_TIMEOUT = 300000; // 5 minutes public static final long PERSISTENT_TIMEOUT = 0; // Infinite for persistent } ``` ## 4. Data Structures ### 4.1 Handle GUID Structure ```java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0)