Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 75 for sdk2 (0.04 sec)

  1. docs/en/docs/advanced/generate-clients.md

    ## Client and SDK Generators - Sponsor
    
    There are also some **company-backed** Client and SDK generators based on OpenAPI (FastAPI), in some cases they can offer you **additional features** on top of high-quality generated SDKs/clients.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. README.md

    [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers,
    see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

            when:
            result = executer
                .withEnvironmentVars([JDK1: new File("/unknown/env").absolutePath, JDK2: firstJavaHome])
                .withArgument("-Porg.gradle.java.installations.paths=${new File("/unknown/path").absolutePath}," + secondJavaHome)
                .withArgument("-Porg.gradle.java.installations.fromEnv=JDK1,JDK2")
                .withArgument("--info")
                .withTasks("show")
                .run()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AutoInstalledInstallationSupplierTest.groovy

            def jdk2 = temporaryFolder.createDir("14")
            def jdk3 = temporaryFolder.createDir("java/8.0.262.fx-librca")
            def supplier = createSupplier([jdk1, jdk2, jdk3] as Set)
    
            when:
            def directories = supplier.get()
    
            then:
            directoriesAsStablePaths(directories) == stablePaths([
                jdk1.absolutePath,
                jdk2.absolutePath,
                jdk3.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainFixture.groovy

        /**
         * Usage:
         * <pre>
         *     def jdk1 = AvailableJavaHomes.getJvmInstallationMetadata(Jvm.current())
         *     def jdk2 = AvailableJavaHomes.getJvmInstallationMetadata(AvailableJavaHomes.getDifferentVersion(jdk1.languageVersion))
         *
         *     when:
         *     withInstallations(jdk1, jdk2).run(":task")
         * </pre>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/common/Os.kt

            "Linux",
            androidHome = "/opt/android/sdk",
            jprofilerHome = "/opt/jprofiler/jprofiler11.1.4"
        ),
        WINDOWS(
            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. configure.py

    
    def create_android_sdk_rule(environ_cp):
      """Set Android variables and write Android SDK WORKSPACE rule."""
      if is_windows() or is_cygwin():
        default_sdk_path = cygpath('%s/Android/Sdk' % environ_cp['APPDATA'])
      elif is_macos():
        default_sdk_path = '%s/library/Android/Sdk' % environ_cp['HOME']
      else:
        default_sdk_path = '%s/Android/Sdk' % environ_cp['HOME']
    
      def valid_sdk_path(path):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. 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)
Back to top