Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 53 for Siz (0.03 sec)

  1. src/cmd/internal/obj/x86/seh.go

    		s.Set(obj.AttrDuplicateOK, true)
    		s.Set(obj.AttrLocal, true)
    		s.Set(obj.AttrContentAddressable, true)
    		if exceptionHandler != nil {
    			r := obj.Addrel(s)
    			r.Off = int32(len(buf.data) - 4)
    			r.Siz = 4
    			r.Sym = exceptionHandler
    			r.Type = objabi.R_PEIMAGEOFF
    		}
    		ctxt.SEHSyms = append(ctxt.SEHSyms, s)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. docs/az/docs/index.md

    ---
    
    ## **Typer**, CLI-ların FastAPI-ı
    
    <a href="https://typer.tiangolo.com" target="_blank"><img src="https://typer.tiangolo.com/img/logo-margin/logo-margin-vector.svg" style="width: 20%;"></a>
    
    Əgər siz veb API əvəzinə terminalda istifadə ediləcək <abbr title="Command Line Interface">CLI</abbr> proqramı qurursunuzsa, <a href="https://typer.tiangolo.com/" class="external-link" target="_blank">**Typer**</a>-a baxa bilərsiniz.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. docs/az/docs/fastapi-people.md

    Xüsusilə də normalda daha az görünən və bir çox hallarda daha çətin olan, başqalarının suallarına kömək etmək və tərcümələrlə bağlı Pull Request-lərə rəy vermək kimi səy göstərmək.
    
    Bu səhifənin məlumatları hər ay hesablanır və siz <a href="https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/app/main.py" class="external-link" target="_blank">buradan mənbə kodunu</a> oxuya bilərsiniz.
    
    Burada sponsorların əməyini də vurğulamaq istəyirəm.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    // longer supported on darwin.
    const SYS___SYSCTL = SYS_SYSCTL
    
    // Translate "kern.hostname" to []_C_int{0,1,2,3}.
    func nametomib(name string) (mib []_C_int, err error) {
    	const siz = unsafe.Sizeof(mib[0])
    
    	// NOTE(rsc): It seems strange to set the buffer to have
    	// size CTL_MAXNAME+2 but use only CTL_MAXNAME
    	// as the size. I don't know why the +2 is here, but the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pe.go

    	if !ok {
    		rt.pages = append(rt.pages, page)
    	}
    
    	e := peBaseRelocEntry{
    		typeOff: uint16(off & 0xFFF),
    	}
    
    	// Set entry type
    	switch r.Siz() {
    	default:
    		Exitf("unsupported relocation size %d\n", r.Siz)
    	case 4:
    		e.typeOff |= uint16(IMAGE_REL_BASED_HIGHLOW << 12)
    	case 8:
    		e.typeOff |= uint16(IMAGE_REL_BASED_DIR64 << 12)
    	}
    
    	b.entries = append(b.entries, e)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/writebarrier.go

    						tmp := f.NewLocal(w.Pos, t)
    						mem = b.NewValue1A(w.Pos, OpVarDef, types.TypeMem, tmp, mem)
    						tmpaddr := b.NewValue2A(w.Pos, OpLocalAddr, t.PtrTo(), tmp, sp, mem)
    						siz := t.Size()
    						mem = b.NewValue3I(w.Pos, OpMove, types.TypeMem, siz, tmpaddr, val, mem)
    						mem.Aux = t
    						volatiles = append(volatiles, volatileCopy{val, tmpaddr})
    					}
    				}
    			}
    		}
    
    		// Build branch point.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm/asm5.go

    			c.ctxt.Diag("offset against tls var in %v", p)
    		}
    		rel := obj.Addrel(c.cursym)
    		rel.Off = int32(c.pc)
    		rel.Siz = 4
    		rel.Sym = p.To.Sym
    		rel.Type = objabi.R_TLS_IE
    		rel.Add = c.pc - p.Rel.Pc - 8 - int64(rel.Siz)
    
    	case 68: /* floating point store -> ADDR */
    		o1 = c.omvl(p, &p.To, REGTMP)
    
    		if o1 == 0 {
    			break
    		}
    		o2 = c.ofsr(p.As, int(p.From.Reg), 0, REGTMP, int(p.Scond), p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/symbolbuilder.go

    		sb.size = off + int64(arch.PtrSize)
    		sb.Grow(sb.size)
    	}
    	r, _ := sb.AddRel(objabi.R_ADDR)
    	r.SetSym(tgt)
    	r.SetOff(int32(off))
    	r.SetSiz(uint8(arch.PtrSize))
    	r.SetAdd(add)
    	return off + int64(r.Siz())
    }
    
    func (sb *SymbolBuilder) SetAddr(arch *sys.Arch, off int64, tgt Sym) int64 {
    	return sb.SetAddrPlus(arch, off, tgt, 0)
    }
    
    func (sb *SymbolBuilder) AddStringAt(off int64, str string) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    	}
    	offset := int64(2) // relocation offset from start of instruction
    	rel := obj.Addrel(c.cursym)
    	rel.Off = int32(c.pc + offset)
    	rel.Siz = 4
    	rel.Sym = sym
    	rel.Add = add + offset + int64(rel.Siz)
    	rel.Type = objabi.R_PCRELDBL
    	return rel
    }
    
    func (c *ctxtz) addrilrelocoffset(sym *obj.LSym, add, offset int64) *obj.Reloc {
    	if sym == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/wasm/wasmobj.go

    			case obj.TYPE_MEM:
    				if p.To.Name != obj.NAME_EXTERN && p.To.Name != obj.NAME_STATIC {
    					fmt.Println(p.To)
    					panic("bad name for Call")
    				}
    				r := obj.Addrel(s)
    				r.Siz = 1 // actually variable sized
    				r.Off = int32(w.Len())
    				r.Type = objabi.R_CALL
    				if p.Mark&WasmImport != 0 {
    					r.Type = objabi.R_WASMIMPORT
    				}
    				r.Sym = p.To.Sym
    				if hasLocalSP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top