Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for sdk2 (0.15 sec)

  1. docs/en/docs/reference/security/index.md

    There are multiple tools that you can use to create those dependables, and they get integrated into OpenAPI so they are shown in the automatic docs UI, they can be used by automatically generated clients and SDKs, etc.
    
    You can import them from `fastapi.security`:
    
    ```python
    from fastapi.security import (
        APIKeyCookie,
        APIKeyHeader,
        APIKeyQuery,
        HTTPAuthorizationCredentials,
        HTTPBasic,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/cuda.packages.txt

    # CuDNN: https://docs.nvidia.com/deeplearning/sdk/cudnn-install/index.html#ubuntu-network-installation
    libcudnn9-dev-cuda-12=9.1.1.17-1
    libcudnn9-cuda-12=9.1.1.17-1
    
    # This can be removed once NVIDIA publishes a cuda-12.3.2 Docker image.
    # For now it ensures that we install at least version 12.3.107 of PTXAS,
    # since 12.3.103 has a bug.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 24 17:22:37 UTC 2024
    - 366 bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/RealLifeAndroidStudioPerformanceTest.groovy

         * or you should enable automatic download of Android Studio with the -PautoDownloadAndroidStudio=true.
         *
         * Additionally, you should also have ANDROID_SDK_ROOT env. variable set with Android SDK (normally on MacOS it's installed in "$HOME/Library/Android/sdk").
         *
         * To enable headless mode run with -PrunAndroidStudioInHeadlessMode=true.
         */
        def "run Android Studio sync"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. docs/de/docs/reference/security/index.md

    Es gibt mehrere Tools, mit denen Sie diese Dependables erstellen können, und sie werden in OpenAPI integriert, sodass sie in der Oberfläche der automatischen Dokumentation angezeigt werden und von automatisch generierten Clients und SDKs, usw., verwendet werden können.
    
    Sie können sie von `fastapi.security` importieren:
    
    ```python
    from fastapi.security import (
        APIKeyCookie,
        APIKeyHeader,
        APIKeyQuery,
        HTTPAuthorizationCredentials,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:15:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/requirements.in

    future==0.18.3
    json2html==1.3.0
    opentelemetry-api==1.22.0
    opentelemetry-instrumentation==0.43b0
    opentelemetry-instrumentation-flask==0.43b0
    opentelemetry-instrumentation-wsgi==0.43b0
    opentelemetry-propagator-b3==1.22.0
    opentelemetry-sdk==1.22.0
    opentelemetry-semantic-conventions==0.43b0
    opentelemetry-util-http==0.43b0
    prometheus-client==0.19.0
    requests==2.31.0
    simplejson==3.19.2
    urllib3==2.2.0
    gunicorn==22.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 485 bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/JavaTestProjectGenerator.groovy

                "spring": "org.springframework.boot:spring-boot:2.7.9",
                "aws": "com.amazonaws:aws-java-sdk-bundle:1.12.680",
                "jooq": "org.jooq:jooq:3.19.6",
                "grpc": "io.grpc:grpc-netty:1.62.2",
                "otel" : "io.opentelemetry:opentelemetry-sdk:1.33.0",
                "jackson" : "com.fasterxml.jackson.core:jackson-databind:2.10.0",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. .gitignore

    .DS_Store
    .idea/shelf
    /confluence/target
    /dependencies/repo
    /android.tests.dependencies
    /dependencies/android.tests.dependencies
    /dist
    /local
    /gh-pages
    /ideaSDK
    /clionSDK
    /android-studio/sdk
    out/
    /tmp
    /intellij
    workspace.xml
    *.versionsBackup
    /idea/testData/debugger/tinyApp/classes*
    /jps-plugin/testData/kannotator
    /js/js.translator/testData/out/
    /js/js.translator/testData/out-min/
    /js/js.translator/testData/out-pir/
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 21 15:38:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'child3' }.javaLanguageSettings.languageLevel == null // inherited
        }
    
        def "can query java sdk for idea project"() {
            given:
            buildFile << """
    apply plugin: 'java'
    
    description = org.gradle.internal.jvm.Jvm.current().javaHome.toString()
    """
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. okhttp-android/src/test/kotlin/okhttp3/android/AndroidAsyncDnsTest.kt

    import org.junit.Test
    import org.junit.runner.RunWith
    import org.robolectric.RobolectricTestRunner
    import org.robolectric.annotation.Config
    import org.robolectric.shadow.api.Shadow
    
    @Config(shadows = [ShadowDnsResolver::class], sdk = [34])
    @RunWith(RobolectricTestRunner::class)
    class AndroidAsyncDnsTest {
      @Test
      fun testDnsRequestInvalid() {
        val asyncDns = AndroidAsyncDns.IPv4
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 22 20:07:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/CachingJvmMetadataDetectorTest.groovy

            metadata2.errorMessage.contains("No such directory")
        }
    
    
        def "invalidation takes predicate into account"() {
            def location1 = testLocation("jdk1")
            def location2 = testLocation("jdk2")
            def metadata1 = Mock(JvmInstallationMetadata)
            def metadata2 = Mock(JvmInstallationMetadata)
            def delegate = Mock(JvmMetadataDetector) {
                getMetadata(location1) >> metadata1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top