Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for asynchronous_gen (0.07 sec)

  1. tests/test_dependency_class.py

        def synchronous(self, value: str) -> str:
            return value
    
        async def asynchronous(self, value: str) -> str:
            return value
    
        def synchronous_gen(self, value: str) -> Generator[str, None, None]:
            yield value
    
        async def asynchronous_gen(self, value: str) -> AsyncGenerator[str, None]:
            yield value
    
    
    callable_dependency = CallableDependency()
    callable_gen_dependency = CallableGenDependency()
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. tests/test_dependency_partial.py

        def synchronous(self, value: str) -> str:
            return value
    
        async def asynchronous(self, value: str) -> str:
            return value
    
        def synchronous_gen(self, value: str) -> Generator[str, None, None]:
            yield value
    
        async def asynchronous_gen(self, value: str) -> AsyncGenerator[str, None]:
            yield value
    
    
    callable_dependency = CallableDependency()
    callable_gen_dependency = CallableGenDependency()
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/AsynchronousGet.kt

     */
    package okhttp3.recipes.kt
    
    import java.io.IOException
    import okhttp3.Call
    import okhttp3.Callback
    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.Response
    
    class AsynchronousGet {
      private val client = OkHttpClient()
    
      fun run() {
        val request =
          Request
            .Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build()
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. docs/recipes.md

     [AsynchronousGetJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/AsynchronousGet.java
     [AsynchronousGetKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/AsynchronousGet.kt
     [AccessHeadersJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
Back to top