Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for olhr (0.24 sec)

  1. src/cmd/internal/obj/arm/asm5.go

    	return c.olhr(int32(i), b, r, sc) ^ (1<<22 | 1<<20)
    }
    
    func (c *ctxt5) olrr(i int, b int, r int, sc int) uint32 {
    	return c.olr(int32(i), b, r, sc) ^ (1 << 25)
    }
    
    func (c *ctxt5) olhrr(i int, b int, r int, sc int) uint32 {
    	return c.olhr(int32(i), b, r, sc) ^ (1 << 22)
    }
    
    func (c *ctxt5) ofsr(a obj.As, r int, v int32, b int, sc int, p *obj.Prog) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  2. src/runtime/export_debug_ppc64le_test.go

    	sp := ctxt.sp()
    	memmove(h.argp, unsafe.Pointer(uintptr(sp)+32), h.argSize)
    	if h.regArgs != nil {
    		loadRegArgs(h.regArgs, ctxt.cregs())
    	}
    	// Restore the old lr from *sp
    	olr := *(*uint64)(unsafe.Pointer(uintptr(sp)))
    	ctxt.set_link(olr)
    	pc := ctxt.pc()
    	ctxt.set_pc(pc + 4) // step to next instruction
    }
    
    // case 2
    func (h *debugCallHandler) debugCallPanicOut(ctxt *sigctxt) {
    	sp := ctxt.sp()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 15:33:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/request-forms.md

        Bu **FastAPI**'ın getirdiği bir kısıtlama değildir, HTTP protokolünün bir parçasıdır.
    
    ## Özet
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed May 08 19:10:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. docs/pt/docs/help-fastapi.md

    Favoritando, outros usuários poderão encontrar mais facilmente e verão que já foi útil para muita gente.
    
    ## Acompanhe novos updates no repositorio do GitHub
    
    Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no botão com um "olho" no canto superior direito): <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">https://github.com/tiangolo/fastapi</a>. 👀
    
    Podendo selecionar apenas "Novos Updates".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/prove.go

    			r = reverseBits[r]
    		}
    
    		p := pair{v, w, d}
    		oldR, ok := ft.facts[p]
    		if !ok {
    			if v == w {
    				oldR = eq
    			} else {
    				oldR = lt | eq | gt
    			}
    		}
    		// No changes compared to information already in facts table.
    		if oldR == r {
    			return
    		}
    		ft.stack = append(ft.stack, fact{p, oldR})
    		ft.facts[p] = oldR & r
    		// If this relation is not satisfiable, mark it and exit right away
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  6. docs/tr/docs/python-types.md

    {!../../../docs_src/python_types/tutorial009.py!}
    ```
    
    `str` yerine `Optional[str]` kullanmak editorün bu değerin her zaman `str` tipinde değil bazen `None` tipinde de olabileceğini belirtir ve hataları tespit etmemizde yardımcı olur.
    
    #### Generic tipler
    
    Köşeli parantez içinde tip parametreleri alan bu türler, örneğin:
    
    * `List`
    * `Tuple`
    * `Set`
    * `Dict`
    * `Optional`
    * ...and others.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. docs/tr/docs/tutorial/first-steps.md

    Burada "yol" bağlantıda bulunan ilk `/` ile başlayan ve sonrasında gelen kısmı ifade eder.
    
    Yani, şu şekilde bir bağlantıda:
    
    ```
    https://example.com/items/foo
    ```
    
    ... yol şöyle olur:
    
    ```
    /items/foo
    ```
    
    !!! info "Bilgi"
        "Yol" genellikle "<abbr title="Endpoint: Bitim Noktası">endpoint</abbr>" veya "<abbr title="Route: Yönlendirme/Yön">route</abbr>" olarak adlandırılır.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    func (qs *queueSet) advanceEpoch(ctx context.Context, now time.Time, incrR fqrequest.SeatSeconds) {
    	oldR := qs.currentR
    	qs.currentR -= rDecrement
    	klog.InfoS("Advancing epoch", "QS", qs.qCfg.Name, "when", now.Format(nsTimeFmt), "oldR", oldR, "newR", qs.currentR, "incrR", incrR)
    	success := true
    	for qIdx, queue := range qs.queues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    			l.objSyms[oldi] = objSym{r.objidx, li}
    		}
    		return oldi
    	}
    	oldr, oldli := l.toLocal(oldi)
    	oldsym := oldr.Sym(oldli)
    	if oldsym.Dupok() {
    		return oldi
    	}
    	overwrite := r.DataSize(li) != 0
    	if overwrite {
    		// new symbol overwrites old symbol.
    		oldtyp := sym.AbiSymKindToSymKind[objabi.SymKind(oldsym.Type())]
    		if !(oldtyp.IsData() && oldr.DataSize(oldli) == 0) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/poset.go

    func (po *poset) isroot(r uint32) bool {
    	for i := range po.roots {
    		if po.roots[i] == r {
    			return true
    		}
    	}
    	return false
    }
    
    func (po *poset) changeroot(oldr, newr uint32) {
    	for i := range po.roots {
    		if po.roots[i] == oldr {
    			po.roots[i] = newr
    			return
    		}
    	}
    	panic("changeroot on non-root")
    }
    
    func (po *poset) removeroot(r uint32) {
    	for i := range po.roots {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
Back to top