Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for olhr (0.04 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/main/resources/fess_indices/fess/tr/stopwords.txt

    nedenle
    nerde
    nerede
    nereye
    niye
    niçin
    o
    olan
    olarak
    oldu
    olduğu
    olduğunu
    olduklarını
    olmadı
    olmadığı
    olmak
    olması
    olmayan
    olmaz
    olsa
    olsun
    olup
    olur
    olursa
    oluyor
    on
    ona
    ondan
    onlar
    onlardan
    onları
    onların
    onu
    onun
    otuz
    oysa
    öyle
    pek
    rağmen
    sadece
    sanki
    sekiz
    seksen
    sen
    senden
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/export_debug_arm64_test.go

    	sp := ctxt.sp()
    	memmove(h.argp, unsafe.Pointer(uintptr(sp)+8), h.argSize)
    	if h.regArgs != nil {
    		loadRegArgs(h.regArgs, ctxt.regs())
    	}
    	// Restore the old lr from *sp
    	olr := *(*uint64)(unsafe.Pointer(uintptr(sp)))
    	ctxt.set_lr(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: Sat Apr 23 05:38:56 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/math/tanh_s390x.s

    	FMOVD   tanhrodataL18<>+48(SB), F2
    	WFMADB  V1, V3, V4, V1
    	FMOVD   tanhrodataL18<>+40(SB), F4
    	WFMADB  V3, V2, V4, V2
    	FMOVD   tanhrodataL18<>+32(SB), F4
    	WORD    $0xB9270022     //lhr %r2,%r2
    	WFMADB  V3, V1, V4, V1
    	FMOVD   tanhrodataL18<>+24(SB), F4
    	WFMADB  V3, V2, V4, V3
    	WFMADB  V0, V5, V0, V2
    	WFMADB  V0, V1, V3, V0
    	WORD    $0xA7183ECF     //lhi %r1,16079
    	WFMADB  V0, V2, V5, V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top