Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 166 for sdk2 (0.06 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

                            path(file('clang-bin'))
                        }
                        withType(VisualCpp) {
                            installDir = file('vs-install')
                            windowsSdkDir = file('sdk-install')
                        }
                    }
                }
    """
            new CppApp().writeToProject(testDirectory)
    
            when:
            succeeds("tasks")
    
            then:
            noExceptionThrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. cmd/testdata/xl-meta-merge.zip

    commandline tool. See [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. > NOTE: Standalone MinIO servers are best suited for early development and evaluation. Certain features such as versioning, object locking, and bucket replication require distributed deploying MinIO with Erasure Coding. For...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioProjectFileTest.groovy

            "14"              | "14.0"
            "12"              | "12.0"
            "11"              | "4.0"
            "10"              | "4.0"
        }
    
        def "calculates WindowsTargetPlatformVersion from SDK version"() {
            when:
            generator.setSdkVersion(VersionNumber.withPatchNumber().parse(sdkVersion))
    
            then:
            projectFile.windowsTargetPlatformVersion == targetVersion
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnector.java

            } finally {
                discardEmptyContentAndClose(s3Object);
            }
        }
    
        private static void discardEmptyContentAndClose(S3Object s3Object) {
            // Consume the content stream to avoid warning from S3 SDK. The response should have only 1 byte there because Range header was specified.
            try {
                S3ObjectInputStream objectContent = s3Object.getObjectContent();
                if (objectContent == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/internal/VisualStudioTargetBinary.java

        /**
         * Returns the target Visual Studio version of this binary.
         */
        @Internal
        VersionNumber getVisualStudioVersion();
    
        /**
         * Returns the target SDK version of this binary.
         */
        @Internal
        VersionNumber getSdkVersion();
    
        /**
         * Returns the project suffix to use when naming Visual Studio projects
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/swift/plugins/SwiftBasePlugin.java

                        task.getCompilerArgs().add("-enable-testing");
                    }
                    if (binary.getTargetMachine().getOperatingSystemFamily().isMacOs()) {
                        task.getCompilerArgs().add("-sdk");
                        task.getCompilerArgs().add(locator.find().getAbsolutePath());
                    }
                    task.getModuleName().set(binary.getModule());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. docs/extensions/s3zip/README.md

    ## Code Examples
    
    [Using minio-go library](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/minio-go/main.go)
    [Using AWS JS SDK v2](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/aws-js/main.js)
    [Using boto3](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/boto3/main.py)
    
    ## Requirements and limits
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/make.rc

    }
    
    bootgo = 1.20.6
    GOROOT = `{cd .. && pwd}
    goroot_bootstrap_set = 'true'
    if(! ~ $#GOROOT_BOOTSTRAP 1){
    	goroot_bootstrap_set = 'false'
    	GOROOT_BOOTSTRAP = $home/go1.4
    	for(d in sdk/go$bootgo go$bootgo)
    		if(test -d $home/$d)
    			GOROOT_BOOTSTRAP = $home/$d
    }
    for(p in $path){
    	if(! test -x $GOROOT_BOOTSTRAP/bin/go){
    		if(go_exe = `{path=$p whatis go}){
    			goroot_bootstrap = $GOROOT_BOOTSTRAP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. internal/config/etcd/etcd.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.Enabled = true
    	cfg.DialTimeout = defaultDialTimeout
    	cfg.DialKeepAliveTime = defaultDialKeepAlive
    	// Disable etcd client SDK logging, etcd client
    	// incorrectly starts logging in unexpected data
    	// format.
    	cfg.LogConfig = &zap.Config{
    		Level:    zap.NewAtomicLevelAt(zap.FatalLevel),
    		Encoding: "console",
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
     * #### Timing Guarantees
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top