Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for has_feature (0.48 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #  endif  // __GXX_RTTI
    
    // Clang defines __GXX_RTTI starting with version 3.0, but its manual recommends
    // using has_feature instead. has_feature(cxx_rtti) is supported since 2.7, the
    // first version with C++ support.
    # elif defined(__clang__)
    
    #  define GTEST_HAS_RTTI __has_feature(cxx_rtti)
    
    // Starting with version 9.0 IBM Visual Age defines __RTTI_ALL__ to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_traceback.c

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin || linux
    
    #include <stdint.h>
    #include "libcgo.h"
    
    #ifndef __has_feature
    #define __has_feature(x) 0
    #endif
    
    #if __has_feature(memory_sanitizer)
    #include <sanitizer/msan_interface.h>
    #endif
    
    // Call the user's traceback function and then call sigtramp.
    // The runtime signal handler will jump to this code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 20:11:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/runtime/cgo/libcgo.h

    };
    
    /*
     * TSAN support.  This is only useful when building with
     *   CGO_CFLAGS="-fsanitize=thread" CGO_LDFLAGS="-fsanitize=thread" go install
     */
    #undef CGO_TSAN
    #if defined(__has_feature)
    # if __has_feature(thread_sanitizer)
    #  define CGO_TSAN
    # endif
    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/static/webcomponents.min.js

    .createDocument;a.prototype.createDocument=function(){return arguments[2]=C(arguments[2]),j(A.apply(N(this),arguments))},s(a,"createDocumentType"),s(a,"createHTMLDocument"),c(a,"hasFeature"),T(window.DOMImplementation,a),E([window.DOMImplementation],["createDocument","createDocumentType","createHTMLDocument","hasFeature"]),e.adoptNodeNoRemove=r,e.wrappers.DOMImplementation=a,e.wrappers.Document=t}(window.ShadowDOMPolyfill),function(e){"use strict";function t(e){n.call(this,e)}var n=e.wrappers.Ev...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    `lhs` and `rhs` must be Tensors of same rank, and meet following shape conditions.
    - `lhs_feature` % `feature_group_count` == 0
    - `lhs_feature` % `rhs_input_feature` == 0
    - `lhs_feature` / `feature_group_count` == `rhs_input_feature`
    - `rhs_output_feature` % `feature_group_count` == 0
    - `lhs_batch` % `batch_group_count` == 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top