- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 120 for Expire (0.04 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
assertNull(path); Integer expire = provider.provideDefaultExpire(); assertNull(expire); } // Test with different expire values public void test_differentExpireValues() { int[] testExpires = { 0, 1, 60, 3600, 86400, Integer.MAX_VALUE }; for (int expire : testExpires) { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
cmd/local-locker_test.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.8K bytes - Viewed (0) -
cmd/batch-handlers.go
KeyRotate *BatchJobKeyRotateV1 `yaml:"keyrotate" json:"keyrotate"` Expire *BatchJobExpire `yaml:"expire" json:"expire"` ctx context.Context `msg:"-"` } // RedactSensitive will redact any sensitive information in b. func (j *BatchJobRequest) RedactSensitive() { j.Replicate.RedactSensitive() j.Expire.RedactSensitive() j.KeyRotate.RedactSensitive() }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.5K bytes - Viewed (0) -
docs/bucket/lifecycle/README.md
"NoncurrentDays": 30 } } ] } ``` This JSON rule is equivalent to the following MinIO Client command: ``` mc ilm rule add --noncurrent-expire-days 30 --noncurrent-expire-newer 5 --prefix "user-uploads/" myminio/mydata ``` #### 3.2.a Automatic removal of noncurrent versions keeping only most recent ones immediately (MinIO only extension)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
long expire = System.currentTimeMillis() + 60000; int consumed = 20; DfsReferralDataImpl result = DfsReferralDataImpl.fromReferral(mockReferral, reqPath, expire, consumed); assertNotNull(result); assertEquals(600, result.getTtl()); assertEquals(0, result.getFlags()); assertEquals(expire, result.getExpiration());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
do { delay = 2L; synchronized (t) { final long expire = t.ltime + t.delay; final long ctime = System.currentTimeMillis(); if (expire > ctime) { delay = expire - ctime; } } if (delay > 2) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/sts/README.md
- Temporary credentials do not need to be stored with the application but are generated dynamically and provided to the application when requested. When (or even before) the temporary credentials expire, the application can request new credentials.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
this.leaseKey = leaseKey; this.reconnecting = false; } /** * Check if this handle has expired * @return true if expired */ public boolean isExpired() { if (type == HandleType.PERSISTENT) { return false; // Persistent handles don't expire } long elapsed = System.currentTimeMillis() - lastAccessTime; return elapsed > timeout; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java
* * @param ref the referral response * @param reqPath the requested path * @param expire the expiration time * @param consumed the number of characters consumed from the path * @return referral data */ public static DfsReferralDataImpl fromReferral(final Referral ref, final String reqPath, final long expire, final int consumed) { final DfsReferralDataImpl dr = new DfsReferralDataImpl();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/sts/etcd.md
} ``` These credentials can now be used to perform MinIO API operations, these credentials automatically expire in 1hr. To understand more about credential expiry duration and client grants STS API read further [here](https://github.com/minio/minio/blob/master/docs/sts/client-grants.md). ## Explore Further
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 3.5K bytes - Viewed (0)