Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/WindowsKitWindowsSdkLocatorTest.groovy

            platformSdk.libDirs == [dir2.file("Lib/10.0.10150.0/um/x64")]
        }
    
        def "SDK not available when specified install dir does not look like an SDK"() {
            def visitor = new TreeFormatter()
            def dir1 = kitDir("sdk1", "10.0.10240.0")
            def dir2 = badKitDir("sdk2", "10.0.10150.0")
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

            result.available
            result.component.name == "sdk 2"
            result.component.version == VersionNumber.parse("7.1")
            result.component.baseDir == dir2
        }
    
        def "uses windows kit if version is higher than windows SDK"() {
            def dir1 = sdkDir("sdk1")
            def dir2 = kitDir("sdk2")
            def dir3 = kitDir("sdk3")
    
            given:
            operatingSystem.findInPath(_) >> null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

                    LOGGER.debug("Ignoring candidate Windows SDK for {} as it does not look like a Windows SDK installation.", resourceCompiler);
                }
            }
            LOGGER.debug("Found Windows SDK {} using system path", sdkDir);
    
            if (!foundSdks.containsKey(sdkDir)) {
                addSdk(sdkDir, "path", "Path-resolved Windows SDK");
            }
            pathSdk = foundSdks.get(sdkDir);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. ci/official/envs/macos_x86_cross_compile

    TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX=cross_compile_macos_x86
    TFCI_MACOS_CROSS_COMPILE_ENABLE=1
    TFCI_MACOS_CROSS_COMPILE_SDK_DEST="tensorflow/tools/toolchains/cross_compile/cc/MacOSX.sdk"
    TFCI_MACOS_CROSS_COMPILE_SDK_SOURCE="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 02 23:38:12 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. internal/amztime/parse.go

    	"time"
    )
    
    // Supported amz date formats.
    var amzDateFormats = []string{
    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    // ErrMalformedDate always returned for dates that cannot be parsed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/generate-clients.md

    ## Client- und SDK-Generatoren – Sponsor
    
    Es gibt auch einige **vom Unternehmen entwickelte** Client- und SDK-Generatoren, die auf OpenAPI (FastAPI) basieren. In einigen Fällen können diese Ihnen **weitere Funktionalität** zusätzlich zu qualitativ hochwertigen generierten SDKs/Clients bieten.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/internal/http/HttpMethod.kt

      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun invalidatesCache(method: String): Boolean =
        (
          method == "POST" || method == "PATCH" || method == "PUT" ||
            method == "DELETE" || method == "MOVE"
        )
    
      @JvmStatic // Despite being 'internal', this method is called by popular 3rd party SDKs.
      fun requiresRequestBody(method: String): Boolean =
        (
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            when:
            withInstallations(jdk1, jdk2).run(":javadoc")
            then:
            executedAndNotSkipped(":javadoc")
            file("build/docs/javadoc/Lib.html").text.contains("Some API documentation.")
    
            when:
            withInstallations(jdk1, jdk2).run(":javadoc")
            then:
            skipped(":javadoc")
    
            when:
            executer.withArgument("-Ptest.javadoc.version=${jdk2.javaVersion.majorVersion}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultWindowsSdkLocatorTest.groovy

            result.component == sdk
        }
    
        def "finds a legacy sdk when a windows kit sdk cannot be found"() {
            def sdk = Mock(LegacyWindowsSdkInstall)
    
            given:
            legacySdkLookup.available >> true
            legacySdkLookup.component >> sdk
            windowsKitLookup.available >> false
            windowsKitLookup.component >> null
    
            when:
            def result = locator.locateComponent(null)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top