- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for isBlocked (0.07 seconds)
-
src/main/java/jcifs/util/AuthenticationRateLimiter.java
private final long ipsBlocked; private final int activeAccounts; private final int activeIps; public RateLimiterStats(long totalBlocked, long accountsLocked, long ipsBlocked, int activeAccounts, int activeIps) { this.totalBlocked = totalBlocked; this.accountsLocked = accountsLocked; this.ipsBlocked = ipsBlocked;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
} else { this.mirroredRepositories = Collections.emptyList(); } } @Override public boolean isBlocked() { return blocked; } @Override public void setBlocked(boolean blocked) { this.blocked = blocked; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
void awaitWaiting() { while (!isBlocked()) { if (getState() == State.TERMINATED) { throw new RuntimeException("Thread exited"); } Thread.yield(); } } private boolean isBlocked() { return getState() == Thread.State.WAITING && LockSupport.getBlocker(this) == future; } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
void awaitWaiting() { while (!isBlocked()) { if (getState() == State.TERMINATED) { throw new RuntimeException("Thread exited"); } Thread.yield(); } } private boolean isBlocked() { return getState() == Thread.State.WAITING && LockSupport.getBlocker(this) == future; } }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RateLimitHelper.java
} return whitelisted; } /** * Check if the IP is blocked. * @param ip the IP address to check * @return true if blocked */ public boolean isBlocked(final String ip) { if (isWhitelisted(ip)) { return false; } // Check statically configured blocked IPsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 9.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
return Collections.emptyList(); } @Override public void setMirroredRepositories(List<ArtifactRepository> mirroredRepositories) {} @Override public boolean isBlocked() { return false; } @Override public void setBlocked(boolean blocked) {} }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
sb.append("id=").append(this.getId()); sb.append(",mirrorOf=").append(this.getMirrorOf()); sb.append(",url=").append(this.getUrl()); sb.append(",name=").append(this.getName()); if (isBlocked()) { sb.append(",blocked"); } sb.append("]"); return sb.toString(); } ]]> </code> </codeSegment> </codeSegments>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun May 18 09:15:56 GMT 2025 - 33.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/RateLimitFilter.java
if (logger.isDebugEnabled()) { logger.debug("Rate limit check: clientIp={}, path={}", clientIp, httpRequest.getRequestURI()); } // Check if IP is blocked if (rateLimitHelper.isBlocked(clientIp)) { if (logger.isDebugEnabled()) { logger.debug("Request blocked: clientIp={}", clientIp); } sendBlockedResponse(httpResponse); return; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 4.4K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java
effectiveRepository.setProxy(aliasedRepo.getProxy()); effectiveRepository.setMirroredRepositories(mirroredRepos); effectiveRepository.setBlocked(aliasedRepo.isBlocked()); effectiveRepositories.add(effectiveRepository); } return effectiveRepositories; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 31.2K bytes - Click Count (0)