Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for platform1 (0.16 sec)

  1. src/cmd/dist/build.go

    // builds against an old release's go/build, which may be out of sync.
    // To reduce duplication, we generate the list for go/build from this.
    //
    // We list all supported platforms in this list, so that this is the
    // single point of truth for supported platforms. This list is used
    // by 'go tool dist list'.
    var cgoEnabled = map[string]bool{
    	"aix/ppc64":       true,
    	"darwin/amd64":    true,
    	"darwin/arm64":    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    implementation(platform(libs.myLib))
                    implementation(platform(libs.myLib.subgroup))
                }
            """
    
            when:
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.1') {
                        variant('platform-runtime', [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

        %2 = "quantfork.stats"(%1) {layerStats = dense<[5.00000000e-6, 7.00000000e-1]> : tensor<2xf32>} : (tensor<1x3xf32>) -> tensor<1x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/EventListenerTest.kt

    @Timeout(30)
    @Tag("Slow")
    class EventListenerTest {
      @RegisterExtension
      val platform = PlatformRule()
    
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
      private lateinit var server: MockWebServer
      private val listener: RecordingEventListener = RecordingEventListener()
      private val handshakeCertificates = platform.localhostHandshakeCertificates()
      private var client =
        clientTestRule.newClientBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    			&goTest{
    				variant:   "host",
    				pkg:       "runtime/internal/wasitest",
    				timeout:   1 * time.Minute,
    				runOnHost: true,
    			})
    	}
    
    	// Only run the API check on fast development platforms.
    	// Every platform checks the API on every GOOS/GOARCH/CGO_ENABLED combination anyway,
    	// so we really only need to run this check once anywhere to get adequate coverage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def targetPlatform = Attribute.of('targetPlatform', Platform)
            def runtimePlatform = Attribute.of('runtimePlatform', Platform)
    
            when:
            conf.getAttributes().attribute(targetPlatform, Platform.JAVA6)
            conf.getAttributes().attribute(runtimePlatform, Platform.JAVA7)
    
            then:
            conf.attributes.getAttribute(targetPlatform) == Platform.JAVA6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  7. src/runtime/malloc.go

    	// heapAddrBits is the number of bits in a heap address. On
    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    	// to 64 bits. Addresses where the top 16 bits are not either
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            this.x509TrustManagerOrNull =
              Platform.get().trustManager(sslSocketFactory) ?: throw IllegalStateException(
                "Unable to extract the trust manager on ${Platform.get()}, " +
                  "sslSocketFactory is ${sslSocketFactory.javaClass}",
              )
            this.certificateChainCleaner =
              Platform.get().buildCertificateChainCleaner(x509TrustManagerOrNull!!)
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  9. src/runtime/mbitmap.go

    	// can be.
    	//
    	// A span with heap bits in it will have 128 bytes of heap bits on 64-bit
    	// platforms, and 256 bytes of heap bits on 32-bit platforms. The first size
    	// class where malloc headers match this overhead for 64-bit platforms is
    	// 512 bytes (8 KiB / 512 bytes * 8 bytes-per-header = 128 bytes of overhead).
    	// On 32-bit platforms, this same point is the 256 byte size class
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_test.cc

    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/macros.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/platform/strcat.h"
    #include "tensorflow/core/platform/test.h"
    #include "tensorflow/core/platform/test_benchmark.h"
    #include "tensorflow/core/protobuf/cluster.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
Back to top