- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 231 for settings2 (0.09 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Settings.kt
* limitations under the License. */ package okhttp3.internal.http2 /** * Settings describe characteristics of the sending peer, which are used by the receiving peer. * Settings are [connection][Http2Connection] scoped. */ class Settings { /** Bitfield of which flags that values. */ private var set: Int = 0 /** Flag values. */ private val values = IntArray(COUNT)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.8K bytes - Viewed (0) -
settings.gradle.kts
project(":mockwebserver-junit4").name = "mockwebserver3-junit4" include(":mockwebserver-junit5") project(":mockwebserver-junit5").name = "mockwebserver3-junit5" val androidBuild: String by settings val graalBuild: String by settings val loomBuild: String by settings if (androidBuild.toBoolean()) { include(":regression-test") } if (graalBuild.toBoolean()) { include(":native-image-tests") } include(":okcurl")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:41:00 UTC 2025 - 1.9K bytes - Viewed (0) -
.vscode/settings.json
Yuri Schimke <******@****.***> 1713104645 +0100
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Apr 14 14:24:05 UTC 2024 - 52 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java
/** The user service for managing user settings. */ @Resource private UserService userService; /** * Retrieves user settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing user settings list */ // GET /api/admin/user/settings // PUT /api/admin/user/settings @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/ApiAdminFileconfigAction.java
// GET /api/admin/fileconfig/settings // PUT /api/admin/fileconfig/settings /** * Returns list of file configuration settings. * Supports both GET and PUT requests for retrieving paginated file configuration settings. * * @param body search parameters for filtering and pagination * @return JSON response containing file configuration settings list with pagination info */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/duplicatehost/ApiAdminDuplicatehostAction.java
} // GET /api/admin/duplicatehost/setting/{id} /** * Returns specific duplicate host setting by ID. * * @param id the duplicate host setting ID * @return JSON response containing the duplicate host setting details */ @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/ApiAdminRelatedcontentAction.java
.result()); } // GET /api/admin/relatedcontent/setting/{id} /** * Returns specific related content setting by ID. * * @param id the related content setting ID * @return JSON response containing the related content setting details */ @Execute public JsonResponse<ApiResult> get$setting(final String id) { return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
/** * Retrieves a list of related query settings. * * @param body search parameters for filtering and pagination * @return JSON response containing related query configurations */ // GET /api/admin/relatedquery/settings // PUT /api/admin/relatedquery/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/reqheader/ApiAdminReqheaderAction.java
/** * Retrieves request header settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing request header settings list */ // GET /api/admin/reqheader/settings // PUT /api/admin/reqheader/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webauth/ApiAdminWebauthAction.java
/** * Retrieves web authentication settings with pagination. * * @param body the search parameters for filtering and pagination * @return JSON response containing web authentication settings list */ // GET /api/admin/webauth/settings // PUT /api/admin/webauth/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.1K bytes - Viewed (0)