- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for currentWindow (0.1 sec)
-
misc/chrome/gophertool/background.js
chrome.omnibox.onInputEntered.addListener(function(t) { var url = urlForInput(t); if (url) { chrome.tabs.query({ "active": true, "currentWindow": true }, function(tab) { if (!tab) return; chrome.tabs.update(tab.id, { "url": url, "selected": true }); }); }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Nov 18 18:14:37 UTC 2019 - 286 bytes - Viewed (1) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
} } private boolean checkRateLimit(EventType type) { String key = type.name(); long currentWindow = System.currentTimeMillis() / rateLimitWindow; String windowKey = key + "_" + currentWindow; AtomicLong counter = rateLimitCounters.computeIfAbsent(windowKey, k -> new AtomicLong(0)); long currentCount = counter.incrementAndGet();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0)