Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for sdk2 (0.07 sec)

  1. src/make.bat

    L88:set bootgo=1.20.6
    L89:if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\go%bootgo%
    L90:if "x%GOROOT_BOOTSTRAP%"=="x" if exist "%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\sdk\go%bootgo%
    L91:if "x%GOROOT_BOOTSTRAP%"=="x" set GOROOT_BOOTSTRAP=%HOMEDRIVE%%HOMEPATH%\Go1.4
    L92:
    L93::bootstrapset
    L94:if not exist "%GOROOT_BOOTSTRAP%\bin\go.exe" goto bootstrapfail
    L95:set GOROOT=%GOROOT_TEMP%
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. helm/minio/templates/NOTES.txt

      3. mc ls {{ template "minio.fullname" . }}
    
    Alternately, you can use your browser or the MinIO SDK to access the server - https://min.io/docs/minio/linux/reference/minio-server/minio-server.html
    {{- end }}
    
    {{ if and (.Values.networkPolicy.enabled) (not .Values.networkPolicy.allowExternal) }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/make.bash

    #
    # GOROOT_BOOTSTRAP: A working Go tree >= Go 1.20.6 for bootstrap.
    # If $GOROOT_BOOTSTRAP/bin/go is missing, $(go env GOROOT) is
    # tried for all "go" in $PATH. By default, one of $HOME/go1.20.6,
    # $HOME/sdk/go1.20.6, or $HOME/go1.4, whichever exists, in that order.
    # We still check $HOME/go1.4 to allow for build scripts that still hard-code
    # that name even though they put newer Go toolchains there.
    
    bootgo=1.20.6
    
    set -e
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. cluster/gce/windows/README-GCE-Windows-kube-up.md

    # To run e2e test locally, make sure "Application Default Credentials" is set in any of the places:
    # References: https://cloud.google.com/sdk/docs/authorizing#authorizing_with_a_service_account
    #             https://cloud.google.com/sdk/gcloud/reference/auth/application-default/
    #    1. $HOME/.config/gcloud/application_default_credentials.json, if doesn't exist, run this command:
    gcloud auth application-default login
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 21:39:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top