Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for compiling (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[native_binaries:preCompiledHeaders]]
    == Precompiled Headers
    
    Precompiled headers are a performance optimization that reduces the cost of compiling widely used headers multiple times. This feature _precompiles_ a header such that the compiled object file can be reused when compiling each source file rather than recompiling the header each time. This support is available for C, C+\+, Objective-C, and Objective-C++ builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. .bazelrc

    #     rbe_linux: General RBE options used on all linux builds.
    #     rbe_win_base:   General RBE options used on all Windows builds. Not to be used standalone.
    #     rbe_win_clang:  Options specific to compiling using Clang.
    #
    #     rbe_linux_cpu:                  RBE options to build with only CPU support.
    #     rbe_linux_cuda:                 RBE options to build with GPU support using clang.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //   GTEST_LINKED_AS_SHARED_LIBRARY
    //                            - Define to 1 when compiling tests that use
    //                              Google Test as a shared library (known as
    //                              DLL on Windows).
    //   GTEST_CREATE_SHARED_LIBRARY
    //                            - Define to 1 when compiling Google Test itself
    //                              as a shared library.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    See link:{javadocPath}/org/gradle/api/tasks/testing/Test.html#useJUnitPlatform--[Test.useJUnitPlatform()] for more details.
    
    [[compiling_and_executing_junit_jupiter_tests]]
    === Compiling and executing JUnit Jupiter tests
    
    To enable JUnit Jupiter support in Gradle, all you need to do is add the following dependency:
    
    .JUnit Jupiter dependencies
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. configure.py

        print('WARNING: The NDK version in %s is %s, which is not '
              'supported by Bazel (officially supported versions: %s). Please use '
              'another version. Compiling Android targets may result in confusing '
              'errors.\n' %
              (android_ndk_home_path, ndk_version, _SUPPORTED_ANDROID_NDK_VERSIONS))
      write_action_env_to_bazelrc('ANDROID_NDK_VERSION', ndk_version)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:compilation_warnings]]
    === Compilation warnings
    
    Gradle Kotlin DSL scripts are compiled by Gradle during the configuration phase of your build.
    Deprecation warnings found by the Kotlin compiler are reported on the console when compiling the scripts.
    
    [source,text]
    ----
    > Configure project :
    w: build.gradle.kts:4:5: 'getter for uploadTaskName: String!' is deprecated. Deprecated in Java
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    var tsanProlog = noTsanProlog
    
    // noMsanProlog is a prologue defining an MSAN function in C.
    // This is used when not compiling with -fsanitize=memory.
    const noMsanProlog = `
    #define _cgo_msan_write(addr, sz)
    `
    
    // yesMsanProlog is a prologue defining an MSAN function in C.
    // This is used when compiling with -fsanitize=memory.
    // See the comment above where _cgo_msan_write is called.
    const yesMsanProlog = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    //
    // This is a function instead of a variable because the exact toolenv depends
    // on the GOOS and GOARCH, and (at least for now) those are modified in place
    // to switch between the host and target configurations when cross-compiling.
    func toolenv() []string {
    	var env []string
    	if !mustLinkExternal(goos, goarch, false) {
    		// Unless the platform requires external linking,
    		// we disable cgo to get static binaries for cmd/go and cmd/pprof,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	buildmode string // If non-empty, -buildmode flag
    
    	env []string // Environment variables to add, as KEY=VAL. KEY= unsets a variable
    
    	runOnHost bool // When cross-compiling, run this test on the host instead of guest
    
    	// variant, if non-empty, is a name used to distinguish different
    	// configurations of the same test package(s). If set and omitVariant is false,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. tensorflow/BUILD

    )
    
    # Sometimes Bazel reports darwin_x86_64 as "darwin" and sometimes as
    # "darwin_x86_64". The former shows up when building on a Mac x86_64 host for a Mac x86_64 target.
    # The latter shows up when cross-compiling for Mac x86_64 from a Mac ARM machine and in internal
    # Google builds.
    config_setting(
        name = "macos_x86_64_default",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:macos"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top