Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 204 for sdk2 (0.24 sec)

  1. 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)
  2. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

            s3Client.put(stream, file.length(), uri)
            s3Client.getResource(new URI("s3://${bucketName}/maven/release/idontExist.txt"))
        }
    
        @Ignore
        def "should interact with real S3 using SDK delegation"() {
            String bucketName = System.getenv('G_S3_BUCKET')
    
            S3Client s3Client = new S3Client(new S3ConnectionProperties())
    
            def fileContents = 'This is only a test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaJavaLanguageSettingsIntegrationTest.groovy

            ipr.bytecodeTargetLevel.size() == 1
            ipr.bytecodeTargetLevel.@target == "1.6"
        }
    
        @ToBeFixedForConfigurationCache
        def "explicit project target level when module version differs from project java sdk"() {
            given:
            createDirs("subprojectA", "subprojectB", "subprojectC")
            settingsFile << """
    rootProject.name = "root"
    include 'subprojectA'
    include 'subprojectB'
    include 'subprojectC'
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            return wildcards;
        }
    
        public void setWildcards(Set<String> wildcards) {
            this.wildcards = wildcards;
        }
    
        /**
         * Represent the jdk information of the project java sdk.
         */
        public Jdk getJdk() {
            return jdk;
        }
    
        public void setJdk(Jdk jdk) {
            this.jdk = jdk;
        }
    
        /**
         * The vcs used by the project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. 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)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

    import org.gradle.testkit.runner.TaskOutcome
    
    import static org.gradle.api.problems.Severity.ERROR
    
    /**
     * 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
    - 16K bytes
    - Viewed (0)
Back to top