Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_binary (0.2 sec)

  1. src/internal/trace/traceviewer/http.go

    (function() {
      var viewer;
      var url;
      var model;
    
      function load() {
        var req = new XMLHttpRequest();
        var isBinary = /[.]gz$/.test(url) || /[.]zip$/.test(url);
        req.overrideMimeType('text/plain; charset=x-user-defined');
        req.open('GET', url, true);
        if (isBinary)
          req.responseType = 'arraybuffer';
    
        req.onreadystatechange = function(event) {
          if (req.readyState !== 4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentBinariesIntegrationTest.groovy

    -------------------------
    
    Source sets
        Library source 'sampleLib:librarySource'
            srcDir: src${File.separator}sampleLib${File.separator}librarySource
    
    Binaries
        SampleBinary 'sampleLib:1stBinary'
            build using task: :sampleLib1stBinary
        SampleBinary 'sampleLib:2ndBinary'
            build using task: :sampleLib2ndBinary
    """)
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

            #    --copt=-fvisibility=hidden
            #    --copt=-D_LIBCPP_TYPE_VIS=_LIBCPP_HIDDEN
            #    --copt=-D_LIBCPP_EXCEPTION_ABI=_LIBCPP_HIDDEN
            native.cc_binary(
                name = benchmark_name,
                srcs = [benchmark_file],
                testonly = testonly,
                copts = copts + tf_copts(),
                linkopts = if_android(["-pie", "-s"]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top