Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 219 for LIBRARY (0.08 seconds)

  1. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

      // For now, we'll keep the standard ones and allow modules to add more
      androidSignature(library("signature-android-apilevel21")) { artifact { type = "signature" } }
      jvmSignature(library("codehaus-signature-java18")) { artifact { type = "signature" } }
    
      "lintChecks"(library("androidx-lint-gradle"))
    }
    
    configure<com.android.build.api.dsl.Lint> {
      xmlReport = true
      checkDependencies = true
    }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  2. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

    fun library(alias: String) = libs.findLibrary(alias).get().get().let {
      "${it.module.group}:${it.module.name}:${it.versionConstraint.requiredVersion}"
    }
    
    
    val testRuntimeOnly = configurations.maybeCreate("testRuntimeOnly")
    dependencies {
      testRuntimeOnly(library("junit-jupiter-engine"))
      testRuntimeOnly(library("junit-vintage-engine"))
      testRuntimeOnly(library("junit-platform-launcher"))
    }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  3. docs/en/docs/how-to/graphql.md

    If you need or want to work with **GraphQL**, [**Strawberry**](https://strawberry.rocks/) is the **recommended** library as it has the design closest to **FastAPI's** design, it's all based on **type annotations**.
    
    Depending on your use case, you might prefer to use a different library, but if you asked me, I would probably suggest you try **Strawberry**.
    
    Here's a small preview of how you could integrate Strawberry with FastAPI:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  4. .teamcity/test-buckets.json

              "base-diagnostics",
              "file-watching",
              "ide",
              "ide-native",
              "kotlin-dsl",
              "platform-base",
              "plugins-application",
              "plugins-java-library",
              "software-diagnostics",
              "test-kit"
            ],
            "parallelizationMethod": {
              "name": "TestDistribution"
            }
          },
          {
            "subprojects": [
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 118.6K bytes
    - Click Count (0)
  5. fastapi/responses.py

        "and https://fastapi.tiangolo.com/tutorial/response-model/",
        category=FastAPIDeprecationWarning,
        stacklevel=2,
    )
    class UJSONResponse(JSONResponse):
        """JSON response using the ujson library to serialize data to JSON.
    
        **Deprecated**: `UJSONResponse` is deprecated. FastAPI now serializes data
        directly to JSON bytes via Pydantic when a return type or response model is
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 09:21:52 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    ///
    
    /// note | Technical Details
    
    Any function that is valid to use with:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) or
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    would be valid to use as a **FastAPI** dependency.
    
    In fact, FastAPI uses those two decorators internally.
    
    ///
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  7. docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md

    /// tip
    
    각 의존성마다 `yield`는 한 번만 사용해야 합니다.
    
    ///
    
    /// note | 기술 세부사항
    
    다음과 함께 사용할 수 있는 모든 함수:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) 또는
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    는 **FastAPI**의 의존성으로 사용할 수 있습니다.
    
    사실, FastAPI는 내부적으로 이 두 데코레이터를 사용합니다.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  8. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

     * size and makes us more conscious of which parts of a library we really need.
     *
     * WARNING: if you decide to do the minification by hand, make sure that you cover all paths of loading classes:
     * reflection, dynamic loading, etc. and understand how the library works internally.
     * These changes might break things in subtle ways otherwise.
     */
    val keepPatterns = mapOf(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 18:27:10 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/dependencies/dependencies-with-yield.md

    /// tip
    
    請確保每個相依內只使用一次 `yield`。
    
    ///
    
    /// note | 技術細節
    
    任何可用於下列裝飾器的函式:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) 或
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    都可以作為 **FastAPI** 的相依。
    
    事實上,FastAPI 內部就是使用這兩個裝飾器。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    /// tip | 提示
    
    确保在每个依赖里只使用一次 `yield`。
    
    ///
    
    /// note | 技术细节
    
    任何可以与以下装饰器一起使用的函数:
    
    * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) 或
    * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager)
    
    都可以作为 **FastAPI** 的依赖项。
    
    实际上,FastAPI 在内部就是用的这两个装饰器。
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 12.1K bytes
    - Click Count (0)
Back to Top