- Sort Score
- Result 10 results
- Languages All
Results 21 - 24 of 24 for isUpdated (0.26 sec)
-
src/main/java/org/codelibs/core/misc/DynamicProperties.java
} /** * Checks if the properties file has been updated since the last load. * * @return {@code true} if the file has been updated, {@code false} otherwise. */ public boolean isUpdated() { final long now = System.currentTimeMillis(); if (now - lastChecked < checkInterval) { lastChecked = now; return false; } lastChecked = now;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 13.1K bytes - Viewed (0) -
cmd/admin-handlers-idp-config.go
if cfgTarget != madmin.Default { // This cannot give an error at this point. subSysTargets, _ := s.GetAvailableTargets(subSys) subSysTargetsSet := set.CreateStringSet(subSysTargets...) if isUpdate && !subSysTargetsSet.Contains(cfgTarget) { return ErrAdminConfigIDPCfgNameDoesNotExist } if !isUpdate && subSysTargetsSet.Contains(cfgTarget) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java
this.env = env; this.settings = settings; this.expand = expand; this.analyzer = analyzer; createSynonymMap(false); } public boolean isUpdate(final long time) { if (System.currentTimeMillis() - lastChecked > reloadInterval) { lastChecked = System.currentTimeMillis(); final long timestamp = reloadableFile.lastModified();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 6.7K bytes - Viewed (1) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
prevToken = null; readBufferIndex = BUFFER_SIZE; readBufferLen = 0; ch = 0; blkStart = 0; nextBlkStart = 0; if (synonymLoader != null && synonymLoader.isUpdate(lastModified)) { lastModified = synonymLoader.getLastModified(); final SynonymMap map = synonymLoader.getSynonymMap(); if (map != null) { synonymMap = map;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0)