Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 803 for typo (0.18 sec)

  1. docs/de/docs/reference/uploadfile.md

    Sie können es direkt von `fastapi` importieren:
    
    ```python
    from fastapi import UploadFile
    ```
    
    ::: fastapi.UploadFile
        options:
            members:
                - file
                - filename
                - size
                - headers
                - content_type
                - read
                - write
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:17:09 GMT 2024
    - 495 bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.9.md

        * master subnet.  It is ignored if the service is not on Azure, if the type is not
        * LoadBalancer, or if the load balancer is not internal.
    * Adds a command-line argument to kube-apiserver called ([#51698](https://github.com/kubernetes/kubernetes/pull/51698), [@rphillips](https://github.com/rphillips))
        * --alpha-endpoint-reconciler-type=(master-count, lease, none) (default
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Nov 16 10:46:27 GMT 2021
    - 313.7K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    * Allow specifying secret data using strings ([#28263](https://github.com/kubernetes/kubernetes/pull/28263), [@liggitt](https://github.com/liggitt))
    * kubectl help now provides "Did you mean this?" suggestions for typo/invalid command names. ([#27049](https://github.com/kubernetes/kubernetes/pull/27049), [@andreykurilin](https://github.com/andreykurilin))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/query-params.md

    ```
    
    Hier ist `needy` ein erforderlicher Query-Parameter vom Typ `str`.
    
    Wenn Sie in Ihrem Browser eine URL wie:
    
    ```
    http://127.0.0.1:8000/items/foo-item
    ```
    
    ... öffnen, ohne den benötigten Parameter `needy`, dann erhalten Sie einen Fehler wie den folgenden:
    
    ```JSON
    {
      "detail": [
        {
          "type": "missing",
          "loc": [
            "query",
            "needy"
          ],
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 25 14:53:41 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/security/simple-oauth2.md

    * Dem `username`.
    * Dem `password`.
    * Einem optionalen `scope`-Feld als langem String, bestehend aus durch Leerzeichen getrennten Strings.
    * Einem optionalen `grant_type` („Art der Anmeldung“).
    
    !!! tip "Tipp"
        Die OAuth2-Spezifikation *erfordert* tatsächlich ein Feld `grant_type` mit dem festen Wert `password`, aber `OAuth2PasswordRequestForm` erzwingt dies nicht.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:08:44 GMT 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/cmd/api/testdata/src/pkg/p1/golden.txt

    pkg p1, type S struct, PublicTime Time
    pkg p1, type S2 struct
    pkg p1, type S2 struct, Extra bool
    pkg p1, type S2 struct, embedded S
    pkg p1, type S2 struct, embedded S //deprecated
    pkg p1, type SI struct
    pkg p1, type SI struct, I int
    pkg p1, type T struct
    pkg p1, type TPtrExported struct
    pkg p1, type TPtrExported struct, embedded *Embedded
    pkg p1, type TPtrUnexported struct
    pkg p1, type Time struct
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 3.6K bytes
    - Viewed (0)
  7. api/go1.18.txt

    pkg go/types, type Config struct, GoVersion string
    pkg go/types, type Context struct
    pkg go/types, type Info struct, Instances map[*ast.Ident]Instance
    pkg go/types, type Instance struct
    pkg go/types, type Instance struct, Type Type
    pkg go/types, type Instance struct, TypeArgs *TypeList
    pkg go/types, type Term struct
    pkg go/types, type TypeList struct
    pkg go/types, type TypeParam struct
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg crypto/tls, type Config struct, ServerName string
    pkg crypto/tls, type Config struct, Time func() time.Time
    pkg crypto/tls, type Conn struct
    pkg crypto/tls, type ConnectionState struct
    pkg crypto/tls, type ConnectionState struct, CipherSuite uint16
    pkg crypto/tls, type ConnectionState struct, HandshakeComplete bool
    pkg crypto/tls, type ConnectionState struct, NegotiatedProtocol string
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeInfoProvider.kt

            require(type is KtFe10Type)
            return TypeUtils.isNullableType(type.fe10Type)
        }
    
        override fun isDenotable(type: KtType): Boolean {
            require(type is KtFe10Type)
            val kotlinType = type.fe10Type
            return kotlinType.isDenotable()
        }
    
        override fun isArrayOrPrimitiveArray(type: KtType): Boolean {
            require(type is KtFe10Type)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Feb 02 08:24:52 GMT 2023
    - 3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeInfoProvider.kt

            ) == null
        }
    
        override fun isArrayOrPrimitiveArray(type: KtType): Boolean {
            require(type is KtFirType)
            return type.coneType.isArrayOrPrimitiveArray
        }
    
        override fun isNestedArray(type: KtType): Boolean {
            if (!isArrayOrPrimitiveArray(type)) return false
            require(type is KtFirType)
            return type.coneType.arrayElementType()?.isArrayOrPrimitiveArray == true
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jan 03 17:15:50 GMT 2024
    - 2.5K bytes
    - Viewed (0)
Back to top