Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 241 for LIBRARY (0.05 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/works_with_okhttp.md

     * [Flipper](https://fbflipper.com/): A desktop debugging platform for mobile developers.
     * [Fresco](https://github.com/facebook/fresco): An Android library for managing images and the memory they use.
     * [Glide](https://github.com/bumptech/glide): An image loading and caching library for Android focused on smooth scrolling.
     * [GoogleAppEngineOkHttp](https://github.com/apkelly/GoogleAppEngineOkHttp): An OkHttp Call that works on Google App Engine.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Nov 26 07:59:38 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  4. 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)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

        @TaskAction
        fun updateInitPluginTemplateVersionFile() {
            val versionProperties = Properties()
    
            findLatest("scala-library", "org.scala-lang:scala-library:2.13.+", versionProperties)
            val scalaVersion = VersionNumber.parse(versionProperties["scala-library"] as String)
            versionProperties["scala"] = "${scalaVersion.major}.${scalaVersion.minor}"
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Nov 24 20:45:41 GMT 2025
    - 5K bytes
    - Click Count (0)
  6. .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)
  7. 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)
  8. 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)
  9. pom.xml

    	<modelVersion>4.0.0</modelVersion>
    	<groupId>org.codelibs</groupId>
    	<artifactId>corelib</artifactId>
    	<packaging>jar</packaging>
    	<name>CodeLibs Core Library</name>
    	<version>0.7.2-SNAPSHOT</version>
    	<description>Core library providing essential utilities and functionalities.</description>
    	<url>https://github.com/codelibs/corelib</url>
    	<inceptionYear>2012</inceptionYear>
    	<licenses>
    		<license>
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Dec 20 04:15:34 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  10. 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)
Back to Top