Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for qword (0.09 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    	bThen.AddEdgeTo(bAfter)
    
    	b.AddEdgeTo(bElse)
    	s.startBlock(bElse)
    	switch n.Op() {
    	case ir.OLEN:
    		// length is stored in the first word for map/chan
    		s.vars[n] = s.load(lenType, x)
    	case ir.OCAP:
    		// capacity is stored in the second word for chan
    		sw := s.newValue1I(ssa.OpOffPtr, lenType.PtrTo(), lenType.Size(), x)
    		s.vars[n] = s.load(lenType, sw)
    	default:
    		s.Fatalf("op must be OLEN or OCAP")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * ✏ Fix typo about file path in `docs/en/docs/tutorial/bigger-applications.md`. PR [#3285](https://github.com/tiangolo/fastapi/pull/3285) by [@HolyDorus](https://github.com/HolyDorus).
    * ✏ Re-word to clarify test client in `docs/en/docs/tutorial/testing.md`. PR [#3382](https://github.com/tiangolo/fastapi/pull/3382) by [@Bharat123rox](https://github.com/Bharat123rox).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top