- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 237 for redirect (0.67 sec)
-
docs/changelogs/changelog_1x.md
prevent flakiness from multiple threads concurrently accessing a stream. ## Version 1.5.3 _2014-03-29_ * Fix bug where the Content-Length header was not always dropped when following a redirect from a POST to a GET. * Implement basic support for `Thread.interrupt()`. OkHttp now checks for an interruption before doing a blocking call. If it is interrupted, it throws an `InterruptedIOException`.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 6.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 146.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java
verifyToken(() -> asHtml(path_AdminGeneral_AdminGeneralJsp)); updateConfig(fessConfig, form); saveInfo(messages -> messages.addSuccessUpdateCrawlerParams(GLOBAL)); return redirect(getClass()); } /** * Updates the Fess configuration with values from the form. * * @param fessConfig the Fess configuration to update
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.9K bytes - Viewed (0) -
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
assertThat(reader.readLine()).isEqualTo("This is the new location!") val first = server.takeRequest() assertThat(first.requestLine).isEqualTo("GET / HTTP/1.1") val redirect = server.takeRequest() assertThat(redirect.requestLine).isEqualTo("GET /new-path HTTP/1.1") } /** * Test that MockWebServer blocks for a call to enqueue() if a request is made before a mock * response is ready. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Aug 03 22:38:00 UTC 2025 - 28K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
}).orElse(null); } /** * Generates the Azure AD authorization URL for the authentication request. * @param request The HTTP servlet request. * @return The authorization URL to redirect the user to. */ protected String getAuthUrl(final HttpServletRequest request) { final String state = UuidUtil.create(); final String nonce = UuidUtil.create();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
saveInfo(messages -> messages.addSuccessStartCrawlProcess(GLOBAL)); } else { saveError(messages -> messages.addErrorsFailedToStartCrawlProcess(GLOBAL)); } return redirect(AdminWizardAction.class); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
} /** * Redirects the user to the root path of the application. * * @return HTML response that redirects to the root page */ protected HtmlResponse redirectToRoot() { return systemHelper.getRedirectResponseToRoot(newHtmlResponseAsRedirect("/")); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
/** * Get the HTML response for the dictionary index page. * @return The HTML response. */ protected HtmlResponse asDictIndexHtml() { return redirect(AdminDictAction.class); } private HtmlResponse asListHtml(final String dictId) { return asHtml(path_AdminDictMapping_AdminDictMappingJsp).renderWith(data -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
/** Indicates that content was successfully parsed. */ PARSED, /** Indicates that a URL was prepared for crawling. */ PREPARED, /** Indicates that a URL redirect was encountered. */ REDIRECTED, /** Indicates that a URL was processed completely. */ PROCESSED }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
* @return action response with the storage list or redirect */ @Execute @Secured({ ROLE, ROLE + VIEW }) public ActionResponse list(final OptionalThing<String> id) { saveToken(); return id.filter(StringUtil::isNotBlank).map(s -> asListHtml(decodePath(s))).orElse(redirect(getClass())); } /** * Uploads a file to the storage system. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.1K bytes - Viewed (0)