Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for aframe (0.14 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(firstFrame(logs, "HEADERS")!!, "header logged")
          .contains("HEADERS       END_HEADERS")
        // While MockWebServer waits to read the client's HEADERS frame before sending the response, it
        // doesn't wait to read the client's DATA frame and may send a DATA frame before the client
        // does. So we can't assume the client's empty DATA will be logged first.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf.go

    		sn := d.ldr.SymName(rsym)
    		tn := sn[len(dwarf.InfoPrefix):]
    		ts := d.ldr.Lookup("type:"+tn, 0)
    		d.defgotype(ts)
    	}
    }
    
    func expandFile(fname string) string {
    	fname = strings.TrimPrefix(fname, src.FileSymPrefix)
    	return expandGoroot(fname)
    }
    
    // writeDirFileTables emits the portion of the DWARF line table
    // prologue containing the include directories and file names,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

      // that does not depend on the merge on its backedge.
      Scope root = Scope::NewRootScope().ExitOnError();
      InductionVarInfo iv = CreateInductionVariable(root, "iv0", "frame", 0);
      DependentInductionVar dependent_iv =
          CreateDependentLoopInvariantValue(root, "div0", "frame", iv.loop_cond, 0);
      FixupSourceAndSinkEdges(root.graph());
    
      TF_ASSERT_OK(root.graph()->UpdateEdge(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    	stacksize := text.To.Offset
    	if stacksize == -8 {
    		// Historical way to mark NOFRAME.
    		text.From.Sym.Set(obj.AttrNoFrame, true)
    		stacksize = 0
    	}
    	if stacksize < 0 {
    		ctxt.Diag("negative frame size %d - did you mean NOFRAME?", stacksize)
    	}
    	if text.From.Sym.NoFrame() {
    		if stacksize != 0 {
    			ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", stacksize)
    		}
    	}
    
    	if !containsCall(cursym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    			if u.frame.sp <= uintptr(p) && uintptr(p) < u.frame.varp {
    				found = true
    				break
    			}
    		}
    		if found {
    			locals, _, _ := u.frame.getStackMap(false)
    			if locals.n == 0 {
    				return
    			}
    			size := uintptr(locals.n) * goarch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/javadoc.css

        color:var(--body-text-color);
        font-family:var(--body-font-family);
        font-size:var(--body-font-size);
        margin:0;
        padding:0;
        height:100%;
        width:100%;
    }
    iframe {
        margin:0;
        padding:0;
        height:100%;
        width:100%;
        overflow-y:scroll;
        border:none;
    }
    a:link, a:visited {
        text-decoration:none;
        color:var(--link-color);
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    			fmt.Fprintf(fgcch, "struct %s_return {\n", exp.ExpName)
    			forFieldList(fntype.Results,
    				func(i int, aname string, atype ast.Expr) {
    					fmt.Fprintf(fgcch, "\t%s r%d;", p.cgoType(atype).C, i)
    					if len(aname) > 0 {
    						fmt.Fprintf(fgcch, " /* %s */", aname)
    					}
    					fmt.Fprint(fgcch, "\n")
    				})
    			fmt.Fprintf(fgcch, "};\n")
    			gccResult = "struct " + exp.ExpName + "_return"
    		}
    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/runtime/malloc.go

    // and the span map for all pages in the arena. heapArena objects are
    // themselves allocated off-heap.
    //
    // Since arenas are aligned, the address space can be viewed as a
    // series of arena frames. The arena map (mheap_.arenas) maps from
    // arena frame number to *heapArena, or nil for parts of the address
    // space not backed by the Go heap. The arena map is structured as a
    // two-level array consisting of a "L1" arena map and many "L2" arena
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // The SockaddrCAN struct must be bound to the socket file descriptor
    // using Bind before the CAN socket can be used.
    //
    //	// Read one raw CAN frame
    //	fd, _ := Socket(AF_CAN, SOCK_RAW, CAN_RAW)
    //	addr := &SockaddrCAN{Ifindex: index}
    //	Bind(fd, addr)
    //	frame := make([]byte, 16)
    //	Read(fd, frame)
    //
    // The full SocketCAN documentation can be found in the linux kernel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/manual.css

    }
    
    table.grid-rows tfoot>tr>th.tableblock,
    table.grid-rows tfoot>tr>td.tableblock {
    	border-width: 1px 0 0 0;
    }
    
    table.frame-all {
    	border-width: 1px;
    }
    
    table.frame-sides {
    	border-width: 0 1px;
    }
    
    table.frame-topbot {
    	border-width: 1px 0;
    }
    
    th.halign-left,
    td.halign-left {
    	text-align: left;
    }
    
    th.halign-right,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top