Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Montag (0.2 sec)

  1. okhttp/src/test/java/okhttp3/RequestCommonTest.kt

      }
    
      @Test
      fun multipleTags() {
        val stringTag = "dilophosaurus"
        val longTag = 20170815L as Long?
        val objectTag = Any()
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(Any::class, objectTag)
            .tag(String::class, stringTag)
            .tag(Long::class, longTag)
            .build()
        assertThat(request.tag<Any>()).isSameAs(objectTag)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RequestTest.kt

        val stringTag = "dilophosaurus"
        val longTag = 20170815L as Long?
        val objectTag = Any()
        val request =
          Request.Builder()
            .url("https://square.com")
            .tag(Any::class.java, objectTag)
            .tag(UUID::class.java, uuidTag)
            .tag(String::class.java, stringTag)
            .tag(Long::class.javaObjectType, longTag)
            .build()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  3. docs/pt/docs/deployment/docker.md

    ```
    
    #### Cache Docker
    
    Existe um truque importante nesse `Dockerfile`, primeiro copiamos o **arquivo com as dependências sozinho**, não o resto do código. Deixe-me te contar o porquê disso.
    
    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  4. docs/pt/docs/alternatives.md

    **Requests** é uma biblioteca para interagir com APIs (como um cliente), enquanto **FastAPI** é uma biblioteca para *construir* APIs (como um servidor).
    
    Eles estão, mais ou menos, em pontas opostas, um complementando o outro.
    
    Requests tem um projeto muito simples e intuitivo, fácil de usar, com padrões sensíveis. Mas ao mesmo tempo, é muito poderoso e customizável.
    
    É por isso que, como dito no site oficial:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg debug/elf, const R_PPC64_REL24_P9NOTOC R_PPC64 #60348
    pkg debug/elf, method (DynFlag1) GoString() string #56887
    pkg debug/elf, method (DynFlag1) String() string #56887
    pkg debug/elf, method (*File) DynValue(DynTag) ([]uint64, error) #56892
    pkg debug/elf, type DynFlag1 uint32 #56887
    pkg encoding/binary, var NativeEndian nativeEndian #57237
    pkg errors, var ErrUnsupported error #41198
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
Back to top