Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for platform_ (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            and:
            "align the 'org' group to 2 different virtual platforms"()
    
            when:
            expectAlignment {
                module('core') tries('1.0') alignsTo('1.1') byVirtualPlatform('org', 'platform') byVirtualPlatform('org', 'platform2')
                module('xml') tries('1.0') alignsTo('1.1') byVirtualPlatform('org', 'platform') byVirtualPlatform('org', 'platform2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    So for GCC running on linux, the supported target platforms are 'linux/x86' and 'linux/x86_64'. For GCC running on Windows via Cygwin, platforms 'windows/x86' and 'windows/x86_64' are supported. (The Cygwin POSIX runtime is not yet modelled as part of the platform, but will be in the future.)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. configure.py

      pass
    
    
    def is_windows():
      return platform.system() == 'Windows'
    
    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. .bazelrc

    build:rbe_linux_cpu --extra_execution_platforms="@sigbuild-r2.17-clang_config_platform//:platform"
    build:rbe_linux_cpu --host_platform="@sigbuild-r2.17-clang_config_platform//:platform"
    build:rbe_linux_cpu --platforms="@sigbuild-r2.17-clang_config_platform//:platform"
    # This is needed for all Clang17 builds but must not be present in GCC builds.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    // most stable support.  Since core members of the Google Test project
    // don't have access to other platforms, support for them may be less
    // stable.  If you notice any problems on your platform, please notify
    // ******@****.*** (patches for fixing them are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //     GTEST_OS_WINDOWS_MOBILE   - Windows Mobile
    //   GTEST_OS_ZOS      - z/OS
    //
    // Among the platforms, Cygwin, Linux, macOS, and Windows have the
    // most stable support.  Since core members of the Google Test project
    // don't have access to other platforms, support for them may be less
    // stable.  If you notice any problems on your platform, please notify
    // ******@****.*** (patches for fixing them are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  7. .teamcity/test-buckets.json

    					"internal-performance-testing",
    					"ivy",
    					"java-platform",
    					"jvm-services",
    					"kotlin-dsl",
    					"kotlin-dsl-integ-tests",
    					"language-java",
    					"language-jvm",
    					"logging",
    					"maven",
    					"messaging",
    					"model-core",
    					"model-groovy",
    					"persistent-cache",
    					"platform-base",
    					"platform-jvm",
    					"plugin-development",
    					"plugin-use",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                        ModuleComponentIdentifier platformId = (ModuleComponentIdentifier) owner;
                        final ModuleComponentSelector cs = DefaultModuleComponentSelector.newSelector(platformId.getModuleIdentifier(), platformId.getVersion());
    
                        // There are 2 possibilities here:
                        // 1. the "platform" referenced is a real module, in which case we directly add it to the graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  9. tensorflow/BUILD

        "@ml_dtypes//:__subpackages__",
        "@nccl_archive//:__subpackages__",
        "@nvtx_archive//:__subpackages__",
        "@onednn//:__subpackages__",
        "@org_sqlite//:__subpackages__",
        "@platforms//:__subpackages__",
        "@snappy//:__subpackages__",
        "@upb//:__subpackages__",
        "@zlib//:__subpackages__",
        "@dlpack//:__subpackages__",
        "@arm_neon_2_x86_sse//:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The following code enables JUnit Platform support in `build.gradle`:
    
    .Enabling JUnit Platform to run your tests
    ====
    include::sample[dir="snippets/testing/junitplatform-jupiter/kotlin",files="build.gradle.kts[tags=enabling-junit-platform]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top