- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 479 for expiry (0.04 sec)
-
android/guava/src/com/google/common/cache/RemovalCause.java
return true; } }, /** * The entry's expiration timestamp has passed. This can occur when using {@link * CacheBuilder#expireAfterWrite} or {@link CacheBuilder#expireAfterAccess}. */ EXPIRED { @Override boolean wasEvicted() { return true; } }, /** * The entry was evicted due to size constraints. This can occur when using {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
statement_test.go
for w := 0; w < whereCount; w++ { s = s.clone() s.AddClause(clause.Where{ Exprs: s.BuildCondition(fmt.Sprintf("where%d", w)), }) } s1 := s.clone() s1.AddClause(clause.Where{ Exprs: s.BuildCondition("FINAL1"), }) s2 := s.clone() s2.AddClause(clause.Where{ Exprs: s.BuildCondition("FINAL2"), }) if reflect.DeepEqual(s1.Clauses["WHERE"], s2.Clauses["WHERE"]) {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sat Dec 23 13:19:41 UTC 2023 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java
/** * Default constructor for HotThreadMonitorTarget. */ public HotThreadMonitorTarget() { super(); } @Override public void expired() { final StringBuilder buf = new StringBuilder(1000); buf.append("[HOTTHREAD MONITOR] "); final FessConfig fessConfig = ComponentUtil.getFessConfig(); buf.append('{');
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
throw new SmbException("Account '" + username + "' is locked out until " + account.getLockoutExpiry()); } else { // Lockout expired, reset account.reset(); } } } // Check per-IP limit if (sourceIp != null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java
throws SmbException { checkNotClosed(); // Check if authentication has expired if (isExpired()) { throw new SmbException("Authentication has expired. Please re-authenticate."); } // Generate session ID for secure key management if (this.sessionId == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30.3K bytes - Viewed (0) -
tests/lru_test.go
lc.Add("key1", "val1") time.Sleep(100 * time.Millisecond) // not enough to expire if lc.Len() != 1 { t.Fatalf("length differs from expected") } v, ok = lc.Get("key1") if v != "val1" { t.Fatalf("value differs from expected") } if !ok { t.Fatalf("should be true") } time.Sleep(200 * time.Millisecond) // expire v, ok = lc.Get("key1") if ok { t.Fatalf("should be false") }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp
<th><la:message key="labels.access_token_expires"/></th> <td>${f:h(expires)}<la:hidden property="expires"/></td> </tr> <tr> <th><la:message
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 5.5K bytes - Viewed (0) -
tests/scanner_valuer_test.go
} type Point struct { X, Y int } func (point Point) GormDataType() string { return "geo" } func (point Point) GormValue(ctx context.Context, db *gorm.DB) clause.Expr { return clause.Expr{ SQL: "ST_PointFromText(?)", Vars: []interface{}{fmt.Sprintf("POINT(%d %d)", point.X, point.Y)}, } } func TestGORMValuer(t *testing.T) { type UserWithPoint struct { Name string
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Jun 07 07:02:07 UTC 2023 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
} }, "systemHelper"); crawlingInfoHelper.documentExpires = currentTime + 1000; Date expires = crawlingInfoHelper.getDocumentExpires(null); assertNotNull(expires); // Returns documentExpires when config is null assertEquals(currentTime + 1000, expires.getTime()); // Test when documentExpires is set but config is provided (but config has no timeToLive)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
* Must be in ISO 8601 format: YYYY-MM-DDTHH:MM:SS */ @Pattern(regexp = "[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T[0-9][0-9]:[0-9][0-9]:[0-9][0-9]") public String expires; /** * The username of the user who created this access token. * Maximum length is 1000 characters. */ @Size(max = 1000) public String createdBy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0)