Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 134 for isel (0.05 sec)

  1. src/runtime/align_test.go

    	}
    	f, ok := c.Fun.(*ast.SelectorExpr)
    	if !ok {
    		return v
    	}
    	p, ok := f.X.(*ast.Ident)
    	if !ok {
    		return v
    	}
    	if p.Name != "atomic" {
    		return v
    	}
    	if !strings.HasSuffix(f.Sel.Name, "64") {
    		return v
    	}
    
    	a := c.Args[0]
    
    	// This is a call to atomic.XXX64(a, ...). Make sure a is aligned to 8 bytes.
    	// XXX = one of Load, Store, Cas, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 14:52:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go.go

    	return libs
    }
    
    var seenlib = make(map[string]bool)
    
    func adddynlib(ctxt *Link, lib string) {
    	if seenlib[lib] || ctxt.LinkMode == LinkExternal {
    		return
    	}
    	seenlib[lib] = true
    
    	if ctxt.IsELF {
    		dsu := ctxt.loader.MakeSymbolUpdater(ctxt.DynStr)
    		if dsu.Size() == 0 {
    			dsu.Addstring("")
    		}
    		du := ctxt.loader.MakeSymbolUpdater(ctxt.Dynamic)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/nodes.go

    	}
    
    	// func Type { Body }
    	FuncLit struct {
    		Type *FuncType
    		Body *BlockStmt
    		expr
    	}
    
    	// (X)
    	ParenExpr struct {
    		X Expr
    		expr
    	}
    
    	// X.Sel
    	SelectorExpr struct {
    		X   Expr
    		Sel *Name
    		expr
    	}
    
    	// X[Index]
    	// X[T1, T2, ...] (with Ti = Index.(*ListExpr).ElemList[i])
    	IndexExpr struct {
    		X     Expr
    		Index Expr
    		expr
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. docs/tr/docs/python-types.md

    * `items_t` değişkeni sırasıyla `int`, `int`, ve `str` tiplerinden oluşan bir `tuple` türündedir .
    * `items_s` ise her öğesi `bytes` türünde olan bir `set` örneğidir.
    
    #### `Dict`
    
    Bir `dict` tanımlamak için virgülle ayrılmış iki parametre verebilirsiniz.
    
    İlk tip parametresi `dict` değerinin `key` değeri içindir.
    
    İkinci parametre ise `dict` değerinin `value` değeri içindir:
    
    ```Python hl_lines="1  4"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/arm/asm.go

    		return true
    
    	case objabi.R_ADDR:
    		if ldr.SymType(s) != sym.SDATA {
    			break
    		}
    		if target.IsElf() {
    			ld.Adddynsym(ldr, target, syms, targ)
    			rel := ldr.MakeSymbolUpdater(syms.Rel)
    			rel.AddAddrPlus(target.Arch, s, int64(r.Off()))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/stmt.go

    	}
    	return n
    }
    
    // select
    func tcSelect(sel *ir.SelectStmt) {
    	var def *ir.CommClause
    	lno := ir.SetPos(sel)
    	Stmts(sel.Init())
    	for _, ncase := range sel.Cases {
    		if ncase.Comm == nil {
    			// default
    			if def != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/arm64/asm.go

    				}
    				return true
    			}
    			ldr.Errorf(s, "unexpected R_ADDRARM64 reloc for dynamic symbol %s", ldr.SymName(targ))
    		}
    
    	case objabi.R_ADDR:
    		if ldr.SymType(s) == sym.STEXT && target.IsElf() {
    			// The code is asking for the address of an external
    			// function. We provide it with the address of the
    			// correspondent GOT symbol.
    			ld.AddGotSym(target, ldr, syms, targ, uint32(elf.R_AARCH64_GLOB_DAT))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  8. src/strconv/atof.go

    	if hex {
    		f, err := atofHex(s[:n], &float32info, mantissa, exp, neg, trunc)
    		return float32(f), n, err
    	}
    
    	if optimize {
    		// Try pure floating-point arithmetic conversion, and if that fails,
    		// the Eisel-Lemire algorithm.
    		if !trunc {
    			if f, ok := atof32exact(mantissa, exp, neg); ok {
    				return f, n, nil
    			}
    		}
    		f, ok := eiselLemire32(mantissa, exp, neg)
    		if ok {
    			if !trunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  9. src/go/doc/exports.go

    	case *ast.Ident:
    		return &ast.Ident{Name: typ.Name, NamePos: pos}
    	case *ast.SelectorExpr:
    		if id, ok := typ.X.(*ast.Ident); ok {
    			// presumably a qualified identifier
    			return &ast.SelectorExpr{
    				Sel: ast.NewIdent(typ.Sel.Name),
    				X:   &ast.Ident{Name: id.Name, NamePos: pos},
    			}
    		}
    	}
    	return nil // shouldn't happen, but be conservative and don't panic
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. docs/tr/docs/tutorial/first-steps.md

    ```
    
    </div>
    
    !!! note "Not"
        `uvicorn main:app` komutunu şu şekilde açıklayabiliriz:
    
        * `main`: dosya olan `main.py` (yani Python "modülü").
        * `app`: ise `main.py` dosyasının içerisinde `app = FastAPI()` satırında oluşturduğumuz `FastAPI` nesnesi.
        * `--reload`: kod değişikliklerinin ardından sunucuyu otomatik olarak yeniden başlatır. Bu parameteyi sadece geliştirme aşamasında kullanmalıyız.
    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