Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 810 for platform1 (0.16 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

            'compatible platforms, but additional attributes unmatched' | [platform: JavaVersion.JAVA8]                 | [platform: JavaVersion.JAVA6, flavor: 'free'] | [platform: JavaVersion.JAVA6, flavor: 'paid'] | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - static library 'hello:staticLibrary':
          - No tool chain is available to build for platform 'unknown':
              - ${toolChain.instanceDisplayName}:
                  - Don't know how to build for platform 'unknown'.
      - executable 'main:executable':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/main/java/org/gradle/api/plugins/JavaPlatformPlugin.java

    import java.util.HashSet;
    import java.util.Set;
    
    /**
     * The Java platform plugin allows building platform components
     * for Java, which are usually published as BOM files (for Maven)
     * or Gradle platforms (Gradle metadata).
     *
     * @since 5.2
     * @see <a href="https://docs.gradle.org/current/userguide/java_platform_plugin.html">Java Platform plugin reference</a>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo_test.go

    	"strings"
    	"testing"
    )
    
    var flagAll = flag.Bool("all", false, "test all supported GOOS/GOARCH platforms, instead of only the current platform")
    
    // TestReadFile confirms that ReadFile can read build information from binaries
    // on supported target platforms. It builds a trivial binary on the current
    // platforms (or all platforms if -all is set) in various configurations and
    // checks that build information can or cannot be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    } else if (platform == "'org:other-platform:1.0'") {
                        module('org:other-platform:1.0') {
                            variant("runtime", ['org.gradle.usage': 'java-runtime', 'org.gradle.category': 'platform', 'org.gradle.status': 'release'])
                            constraint("org:foo:1.0")
                            noArtifacts()
                        }
                    } else if (platform == "'org:bom-platform:1.0'") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

    In general publishing dependencies to enforced platforms is a mistake: enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. This can result in hard to diagnose dependency resolution errors. If you did this intentionally you can disable this check by adding 'enforced-platform' to the suppressed validations of the :generateMetadataFileForIvyPublication...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/init.go

    // on supported platforms.
    //
    // On unsupported platforms, fuzzInstrumentFlags returns nil, meaning no
    // instrumentation is added. 'go test -fuzz' still works without coverage,
    // but it generates random inputs without guidance, so it's much less effective.
    func fuzzInstrumentFlags() []string {
    	if !platform.FuzzInstrumented(cfg.Goos, cfg.Goarch) {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

    In general publishing dependencies to enforced platforms is a mistake: enforced platforms shouldn't be used for published components because they behave like forced dependencies and leak to consumers. This can result in hard to diagnose dependency resolution errors. If you did this intentionally you can disable this check by adding 'enforced-platform' to the suppressed validations of the :generateMetadataFileForMavenPublication...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_device.cc

    int XlaDevice::Metadata::device_ordinal() const { return device_ordinal_; }
    
    se::Platform* XlaDevice::Metadata::platform() const { return platform_; }
    
    xla::LocalClient* XlaDevice::Metadata::client() const {
      auto client = xla::ClientLibrary::GetOrCreateLocalClient(platform_);
      return client.value();
    }
    
    const DeviceType& XlaDevice::Metadata::jit_device_type() const {
      return device_type_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device.h

      // Which hardware device in the client's platform this XlaDevice controls.
      const int device_ordinal_;
      // The name/type of this XlaDevice. eg. "XLA_GPU".
      const DeviceType device_name_;
      // The name of the device that is used to compile Ops for this XlaDevice.
      const DeviceType jit_device_name_;
      // The platform for this device.
      se::Platform* const platform_;  // Not owned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top