Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for sdk2 (0.08 sec)

  1. docs/compression/README.md

    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html)
    - [Use `aws-cli` with MinIO Server](https://min.io/docs/minio/linux/integrations/aws-cli-with-minio.html)
    - [Use `minio-go` SDK with MinIO Server](https://min.io/docs/minio/linux/developers/go/minio-go.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidCommunityPluginsSmokeTest.groovy

     */
    
    package org.gradle.smoketests
    
    
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    
    /**
     * For these tests to run you need to set ANDROID_SDK_ROOT to your Android SDK directory
     *
     * https://developer.android.com/studio/releases/build-tools.html
     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. docs/kms/README.md

    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html)
    - [Use `aws-cli` with MinIO Server](https://min.io/docs/minio/linux/integrations/aws-cli-with-minio.html)
    - [Use `minio-go` SDK with MinIO Server](https://min.io/docs/minio/linux/developers/go/minio-go.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/go.mod

    	go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0
    	go.opentelemetry.io/otel v1.20.0
    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0
    	go.opentelemetry.io/otel/sdk v1.20.0
    	go.opentelemetry.io/otel/trace v1.20.0
    	go.uber.org/zap v1.26.0
    	golang.org/x/crypto v0.23.0
    	golang.org/x/net v0.25.0
    	golang.org/x/sync v0.7.0
    	golang.org/x/sys v0.20.0
    	golang.org/x/time v0.3.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/nosql-databases-couchbase.md

    ```Python hl_lines="46"
    {!../../../docs_src/nosql_databases/tutorial001.py!}
    ```
    
    ### Create the *path operation function*
    
    As our code is calling Couchbase and we are not using the <a href="https://docs.couchbase.com/python-sdk/2.5/async-programming.html#asyncio-python-3-5" class="external-link" target="_blank">experimental Python <code>await</code> support</a>, we should declare our function with normal `def` instead of `async def`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. cmd/server-startup-msg.go

    			logger.Info(color.Blue("   RootPass: ") + color.Bold("%s ", cred.SecretKey))
    		}
    	}
    
    	printEventNotifiers()
    	printLambdaTargets()
    }
    
    // Prints startup message for Object API access, prints link to our SDK documentation.
    func printObjectAPIMsg() {
    	logger.Info(color.Blue("\nDocs: ") + "https://min.io/docs/minio/linux/index.html")
    }
    
    func printLambdaTargets() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect
    	go.opentelemetry.io/otel/metric v1.20.0 // indirect
    	go.opentelemetry.io/otel/sdk v1.20.0 // indirect
    	go.opentelemetry.io/proto/otlp v1.0.0 // indirect
    	go.uber.org/multierr v1.11.0 // indirect
    	go.uber.org/zap v1.26.0 // indirect
    	golang.org/x/crypto v0.23.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. fastapi/routing.py

                    operations* shown in the generated OpenAPI.
    
                    This is particularly useful when automatically generating clients or
                    SDKs for your API.
    
                    Read more about it in the
                    [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            maybeAddClassTypesFromSignature(signature, types);
            if (superName != null) {
                // superName can be null if what we are analyzing is `java.lang.Object`
                // which can happen when a custom Java SDK is on classpath (typically, android.jar)
                Type type = Type.getObjectType(superName);
                maybeAddDependentType(types, type);
            }
            for (String s : interfaces) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. fastapi/applications.py

                    operations* shown in the generated OpenAPI.
    
                    This is particularly useful when automatically generating clients or
                    SDKs for your API.
    
                    Read more about it in the
                    [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top