- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 87 for 36 (0.01 seconds)
-
okhttp/src/androidHostTest/resources/okhttp3/robolectric.properties
# Robolectric on API 36 requires JDK 21
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 20:45:04 GMT 2026 - 47 bytes - Click Count (0) -
android-test-app/build.gradle.kts
plugins { id("okhttp.base-conventions") id("com.android.application") } android { compileSdk = 36 namespace = "okhttp.android.testapp" // Release APKs can't be tested currently with AGP testBuildType = "debug" defaultConfig { minSdk = 21 targetSdk = 36 testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" } compileOptions {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Feb 07 06:56:34 GMT 2026 - 1.2K bytes - Click Count (0) -
regression-test/build.gradle.kts
plugins { id("okhttp.base-conventions") id("com.android.library") } android { compileSdk = 36 namespace = "okhttp.android.regression" defaultConfig { minSdk = 21 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test Builder testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunnerArguments += mapOf(Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 1.6K bytes - Click Count (0) -
android-test/build.gradle.kts
import okhttp3.buildsupport.androidBuild plugins { id("okhttp.base-conventions") id("com.android.library") id("de.mannodermaus.android-junit5") } android { compileSdk = 36 namespace = "okhttp.android.test" defaultConfig { minSdk = 21 // Make sure to use the AndroidJUnitRunner (or a sub-class) in order to hook in the JUnit 5 Test BuilderCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 3.8K bytes - Click Count (2) -
guava-tests/test/com/google/common/base/StopwatchTest.java
stopwatch.start(); assertEquals(9, stopwatch.elapsed(NANOSECONDS)); ticker.advance(25); assertEquals(34, stopwatch.elapsed(NANOSECONDS)); stopwatch.stop(); ticker.advance(36); assertEquals(34, stopwatch.elapsed(NANOSECONDS)); } public void testElapsed_micros() { stopwatch.start(); ticker.advance(999); assertEquals(0, stopwatch.elapsed(MICROSECONDS));Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 6.3K bytes - Click Count (0) -
docs/en/docs/how-to/custom-docs-ui-assets.md
And similarly for ReDoc... {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[2:6,14:22,25:27,30:36] *} /// tip The *path operation* for `swagger_ui_redirect` is a helper for when you use OAuth2.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7.5K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/custom-docs-ui-assets.md
* `swagger_css_url`:Swagger UI 文件 HTML 用來取得「CSS」檔案的 URL。這就是你的應用現在提供的檔案。 ReDoc 也類似... {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[2:6,14:22,25:27,30:36] *} /// tip 當你使用 OAuth2 時,`swagger_ui_redirect` 的路徑操作是個輔助端點。 如果你把 API 與 OAuth2 提供者整合,便能完成認證並帶著取得的憑證回到 API 文件,接著以真正的 OAuth2 驗證與之互動。 Swagger UI 會在背後幫你處理,不過它需要這個「redirect」輔助端點。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.9K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/Punycode.kt
* [UTS #46]: https://www.unicode.org/reports/tr46/ */ object Punycode { val PREFIX_STRING = "xn--" val PREFIX = PREFIX_STRING.encodeUtf8() private const val BASE = 36 private const val TMIN = 1 private const val TMAX = 26 private const val SKEW = 38 private const val DAMP = 700 private const val INITIAL_BIAS = 72 private const val INITIAL_N = 0x80 /**Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 8.6K bytes - Click Count (0) -
docs/ja/docs/how-to/custom-docs-ui-assets.md
- `swagger_css_url`: Swagger UI ドキュメント用の HTML が取得する **CSS** ファイルの URL。**これはあなたのアプリ自身がいま配信しているものです**。 ReDoc についても同様です... {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[2:6,14:22,25:27,30:36] *} /// tip | 豆知識 `swagger_ui_redirect` 用の *path operation* は、OAuth2 を使用する場合の補助です。 API を OAuth2 プロバイダと統合すると、認証を実行して取得したクレデンシャルを持った状態で API ドキュメントに戻れます。そして実際の OAuth2 認証を用いてドキュメント上から API と対話できます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 9.5K bytes - Click Count (0) -
docs/zh/docs/how-to/custom-docs-ui-assets.md
- `swagger_css_url`:你的 Swagger UI 文档 HTML 获取**CSS** 文件的 URL。**这是现在由你的应用自己提供的那个**。 ReDoc 也类似... {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[2:6,14:22,25:27,30:36] *} /// tip | 提示 `swagger_ui_redirect` 的*路径操作*是在你使用 OAuth2 时的一个辅助。 如果你把 API 与某个 OAuth2 提供方集成,你就可以完成认证并带着获取到的凭据回到 API 文档里。然后使用真实的 OAuth2 认证与之交互。 Swagger UI 会在幕后为你处理这些,但它需要这个“重定向”辅助路径。 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.1K bytes - Click Count (0)