Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for headerOut (0.39 sec)

  1. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

            createNewFile(new File(annotationOutput, "some-ann-file.class"))
            createNewFile(new File(annotationOutput, "some-duplicated-file.class"))
            def headerOutput = createNewDirectory(file("headerOut"))
            createNewFile(new File(headerOutput, "some-header-file.h"))
            createNewFile(new File(headerOutput, "some-header-file.class"))
            createNewFile(new File(headerOutput, "some-duplicated-file.class"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/internal/trace/version/version.go

    	_, ok := versions[v]
    	return ok
    }
    
    // headerFmt is the format of the header of all Go execution traces.
    const headerFmt = "go 1.%d trace\x00\x00\x00"
    
    // ReadHeader reads the version of the trace out of the trace file's
    // header, whose prefix must be present in v.
    func ReadHeader(r io.Reader) (Version, error) {
    	var v Version
    	_, err := fmt.Fscanf(r, headerFmt, &v)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/aot/tfcompile.bzl

        "tf_copts",
    )
    load("//tensorflow:tensorflow.default.bzl", "tfcompile_dfsan_abilists", "tfcompile_dfsan_enabled", "tfcompile_target_cpu")
    
    def _tfcompile_model_library_rule_impl(ctx):
        header_file = ctx.outputs.header_out
        metadata_object_file = ctx.actions.declare_file("%s_tfcompile_metadata.o" % ctx.attr.model_name)
        function_object_file = ctx.actions.declare_file("%s_tfcompile_function.o" % ctx.attr.model_name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/net/http/roundtrip_js.go

    		success.Release()
    		failure.Release()
    
    		result := args[0]
    		header := Header{}
    		// https://developer.mozilla.org/en-US/docs/Web/API/Headers/entries
    		headersIt := result.Get("headers").Call("entries")
    		for {
    			n := headersIt.Call("next")
    			if n.Get("done").Bool() {
    				break
    			}
    			pair := n.Get("value")
    			key, value := pair.Index(0).String(), pair.Index(1).String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/adminlte.min.js

    e((function(){e._fixHeight(),e._fixScrollHeight()})),t(window).scroll((function(){(t("body").hasClass(h)||t("body").hasClass(f))&&e._fixScrollHeight()}))},n._fixScrollHeight=function(){var e={scroll:t(document).height(),window:t(window).height(),header:t(l).outerHeight(),footer:t(d).outerHeight()},i=Math.abs(e.window+t(window).scrollTop()-e.scroll),n=t(window).scrollTop(),s=!1,r=!1;t("body").hasClass(u)&&((t("body").hasClass(g)||t("body").hasClass(p)||t("body").hasClass(_)||t("body").hasClass(m)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 23.7K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	countError func(errToken string)
    
    	// lastHeaderStream is non-zero if the last frame was an
    	// unfinished HEADERS/CONTINUATION.
    	lastHeaderStream uint32
    
    	maxReadSize uint32
    	headerBuf   [http2frameHeaderLen]byte
    
    	// TODO: let getReadBuf be configurable, and use a less memory-pinning
    	// allocator in server.go to minimize memory pinned for many idle conns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top