- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 38 for 4291 (0.19 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/filter/LoadControlFilter.java
} return false; } /** * Sends a 429 JSON response for API requests. * @param response the HTTP response * @throws IOException if an I/O error occurs */ protected void sendApiResponse(final HttpServletResponse response) throws IOException { response.setStatus(429); response.setContentType("application/json;charset=UTF-8");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 4.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/filter/LoadControlFilterTest.java
mockRequest.setRequestURI("/search"); testableFilter.doFilter(mockRequest, mockResponse, mockFilterChain); assertFalse(mockFilterChain.wasDoFilterCalled()); assertEquals(429, mockResponse.getSendErrorCode()); } @Test public void test_doFilter_webAtThreshold() throws IOException, ServletException { setConfig(80, 100); testableFilter.setCpuPercent((short) 80);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 33.6K bytes - Click Count (0) -
.github/workflows/update-jdks.yml
name: Update jdks.yaml on: workflow_dispatch: # Allows manual triggering of the action schedule: # Runs the action weekly on Monday at 3:42 UTC - cron: '42 3 * * 1' permissions: contents: write pull-requests: write jobs: update-jdks: if: github.repository == 'gradle/gradle' permissions: contents: write pull-requests: write runs-on: ubuntu-latest steps:Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Dec 09 22:14:16 GMT 2025 - 2.1K bytes - Click Count (0) -
docs/en/docs/js/init_kapa_widget.js
document.addEventListener("DOMContentLoaded", function () { var script = document.createElement("script"); script.src = "https://widget.kapa.ai/kapa-widget.bundle.js"; script.setAttribute("data-website-id", "91f47f27-b405-4299-bf5f-a1c0ec07b3cc"); script.setAttribute("data-project-name", "FastAPI"); script.setAttribute("data-project-color", "#009485"); script.setAttribute("data-project-logo", "https://fastapi.tiangolo.com/img/favicon.png");
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 18 15:26:13 GMT 2026 - 2.3K bytes - Click Count (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemTest.java
void testGetLineNumber() { DefaultProblem problem = new DefaultProblem(null, null, null, -1, -1, null); assertEquals(-1, problem.getLineNumber()); problem = new DefaultProblem(null, null, null, 42, -1, null); assertEquals(42, problem.getLineNumber()); problem = new DefaultProblem(null, null, null, Integer.MAX_VALUE, -1, null); assertEquals(Integer.MAX_VALUE, problem.getLineNumber());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/RateLimitFilter.java
} /** * Send a 429 Too Many Requests response. * @param response the HTTP response * @param retryAfterSeconds the Retry-After header value * @throws IOException if an I/O error occurs */ protected void sendRateLimitResponse(final HttpServletResponse response, final int retryAfterSeconds) throws IOException { response.setStatus(429); // Too Many RequestsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Dec 24 14:16:27 GMT 2025 - 4.4K bytes - Click Count (0) -
docs/changelogs/changelog_4x.md
manual calls to `HostnameVerifier` could be defeated if the hostnames they pass in are not strictly ASCII. This issue is tracked as [CVE-2021-0341]. ## Version 4.9.1 _2021-01-30_ * Fix: Work around a crash in Android 10 and 11 that may be triggered when two threads concurrently close an SSL socket. This would have appeared in crash logs asCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Apr 17 13:25:31 GMT 2024 - 25.2K bytes - Click Count (0) -
ci/official/containers/ml_build/builder.requirements.txt
id urllib3 requests # For XLA pyyaml # For JAX build ~= 1.2.2 # uv is faster than pip for installing Python packages. uv ~= 0.5.30 # For running wheel verification script
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Oct 30 20:25:44 GMT 2025 - 271 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBusyAction.java
package org.codelibs.fess.app.web.error; import org.codelibs.fess.app.web.base.FessSearchAction; import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * Action class for handling HTTP 429 Too Many Requests error pages. * This action displays error pages when the server is under high load. */ public class ErrorBusyAction extends FessSearchAction { /** * Default constructor for ErrorBusyAction.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 1.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/JSSETest.kt
// Not much we can guarantee on JDK 11. PlatformVersion.majorVersion == 11 -> { assertThat(s.enabledProtocols.toList()).contains( "TLSv1.2", ) } // JDK 8 291 removed older versions // See https://java.com/en/jre-jdk-cryptoroadmap.html PlatformVersion.majorVersion == 8 -> { assertThat(s.enabledProtocols.toList()).contains( "TLSv1.2", )Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 5.5K bytes - Click Count (0)