Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 849 for GET (0.12 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiLoopParameterLocalVariableSymbol.kt

        }
    
        override val name: Name
            get() = withValidityAssertion { psi.nameAsSafeName }
    
        override val returnType: KtType
            get() = withValidityAssertion { descriptor?.type?.toKtType(analysisContext) ?: createErrorType() }
    
        override val isVal: Boolean
            get() = withValidityAssertion { !psi.isMutable }
    
        override val symbolKind: KtSymbolKind
            get() = withValidityAssertion { KtSymbolKind.LOCAL }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescConstructorSymbol.kt

            get() = withValidityAssertion { descriptor.ktHasStableParameterNames }
    
        override val returnType: KtType
            get() = withValidityAssertion { descriptor.returnType.toKtType(analysisContext) }
    
        override val isActual: Boolean
            get() = withValidityAssertion { descriptor.isActual }
    
        override val isExpect: Boolean
            get() = withValidityAssertion { descriptor.isExpect }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/README.vendor

    Requirements may be added, updated, and removed with 'go get'.
    The vendor directory may be updated with 'go mod vendor'.
    A typical sequence might be:
    
        cd src  # or src/cmd
        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

    As the `get_current_active_user` dependency has as a sub-dependency on `get_current_user`, the scope `"me"` declared at `get_current_active_user` will be included in the list of required scopes in the `security_scopes.scopes` passed to `get_current_user`.
    
    The *path operation* itself also declares a scope, `"items"`, so this will also be in the list of `security_scopes.scopes` passed to `get_current_user`.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FlexibleType.kt

        override val lowerBound: KtType
            get() = withValidityAssertion { fe10Type.lowerBound.toKtType(analysisContext) }
    
        override val upperBound: KtType
            get() = withValidityAssertion { fe10Type.upperBound.toKtType(analysisContext) }
    
        override val nullability: KtTypeNullability
            get() = withValidityAssertion { fe10Type.ktNullability }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Jan 12 10:48:21 GMT 2023
    - 1.6K bytes
    - Viewed (0)
  6. docs/fr/docs/tutorial/first-steps.md

    ```Python hl_lines="6"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Le `@app.get("/")` dit à **FastAPI** que la fonction en dessous est chargée de gérer les requêtes qui vont sur :
    
    * le chemin `/`
    * en utilisant une <abbr title="une méthode GET HTTP">opération <code>get</code></abbr>
    
    !!! info "`@décorateur` Info"
        Cette syntaxe `@something` en Python est appelée un "décorateur".
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Wed Sep 27 20:52:31 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

         * other protocol.
         */
        @JvmStatic
        @JvmName("get")
        fun URL.toHttpUrlOrNull(): HttpUrl? = toString().toHttpUrlOrNull()
    
        @JvmStatic
        @JvmName("get")
        fun URI.toHttpUrlOrNull(): HttpUrl? = toString().toHttpUrlOrNull()
    
        @JvmName("-deprecated_get")
        @Deprecated(
          message = "moved to extension function",
          replaceWith =
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/CliFe10AnalysisFacade.kt

            resolveSession = componentProvider.get()
            deprecationResolver = componentProvider.get()
            callResolver = componentProvider.get()
            kotlinToResolvedCallTransformer = componentProvider.get()
            kotlinTypeRefiner = componentProvider.get()
    
            val builtIns = resolveSession!!.moduleDescriptor.builtIns
            val typeSpecificityComparator = componentProvider.get<TypeSpecificityComparator>()
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Fri Jan 26 16:20:19 GMT 2024
    - 7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirClassInitializerSymbol.kt

        }
    
        override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
    
        override val typeParameters: List<KtTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
        override val annotationsList: KtAnnotationsList get() = withValidityAssertion { KtEmptyAnnotationsList(token) }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri Feb 03 14:29:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    ```Python
    # This won't work, because get_burgers was defined with: async def
    burgers = get_burgers(2)
    ```
    
    ---
    
    So, if you are using a library that tells you that you can call it with `await`, you need to create the *path operation functions* that uses it with `async def`, like in:
    
    ```Python hl_lines="2-3"
    @app.get('/burgers')
    async def read_burgers():
        burgers = await get_burgers(2)
        return burgers
    ```
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23K bytes
    - Viewed (0)
Back to top