Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for is_binary (0.17 sec)

  1. hack/verify-flags-underscore.py

    args = parser.parse_args()
    
    # Cargo culted from http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
    def is_binary(pathname):
        """Return true if the given filename is binary.
        @raise EnvironmentError: if the file does not exist or cannot be accessed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/benchmark_main.template

    //    TFCOMPILE_CPP_CLASS : Name of the C++ class generated by tfcompile.
    //
    // The tf_library bazel macro in tfcompile.bzl performs the token rewriting, and
    // generates a cc_binary rule for you.
    
    // These macros must be defined before eigen files are included.
    #define EIGEN_USE_THREADS
    #define EIGEN_USE_CUSTOM_THREAD_POOL
    
    // clang-format off
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 20:05:05 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/printer/nodes.go

    			printBlank = false // no blank after line break
    		}
    	}
    	if printBlank {
    		p.print(blank)
    	}
    	p.expr1(x.Y, prec+1, depth+1)
    	if ws == ignore {
    		p.print(unindent)
    	}
    }
    
    func isBinary(expr ast.Expr) bool {
    	_, ok := expr.(*ast.BinaryExpr)
    	return ok
    }
    
    func (p *printer) expr1(expr ast.Expr, prec1, depth int) {
    	p.setPos(expr.Pos())
    
    	switch x := expr.(type) {
    	case *ast.BadExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            "//tensorflow:tensorflow_cc",
            "//tensorflow/python:pywrap_tensorflow_internal",
        ]),
    )
    
    # ** Targets for Windows build (start) **
    
    # Build a shared library (DLL) by cc_binary from tf_custom_op_library_additional_deps_impl,
    # it contains all object code from its dependencies.
    # This target is only used for parsing the symbols to be exported in tensorflow.dll.
    # Do NOT depend on it.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.20.md

          exists in k/k repo since we removed federation/, and I don't see it
          in https://github.com/kubernetes-sigs/kubefed/ either. I'm assuming
          that it's gone for good now.
      
      - bazel: output go_binary rule directly from go_binary_conditional_pure
        
        From: [@mikedanese](https://github.com/mikedanese):
        Instead of aliasing. Aliases are annoying in a number of ways. This is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		return r
    	}
    	return b
    }
    
    func (b *Binary) GoString() string {
    	return b.goString(0, "")
    }
    
    func (b *Binary) goString(indent int, field string) string {
    	return fmt.Sprintf("%*s%sBinary:\n%s\n%s\n%s", indent, "", field,
    		b.Op.goString(indent+2, "Op: "),
    		b.Left.goString(indent+2, "Left: "),
    		b.Right.goString(indent+2, "Right: "))
    }
    
    func (b *Binary) prec() precedence {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const headerSize=opt_headerSize||tr.b.TraceStream.HEADER_SIZE;this.data_=buffer;this.isBinary_=isBinary;this.header_=InMemoryTraceStream.uint8ArrayToString_(this.data_.subarray(0,headerSize));this.cursor_=0;}
    get isBinary(){return this.isBinary_;}
    get hasData(){return this.cursor_<this.data_.length;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top