Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 542 for adir (0.04 sec)

  1. src/internal/coverage/cfile/emitdata_test.go

    }
    
    func mktestdirs(t *testing.T, tag, tp, dir string) (string, string) {
    	t.Helper()
    	rdir := mkdir(t, filepath.Join(dir, tp+"-rdir-"+tag))
    	edir := mkdir(t, filepath.Join(dir, tp+"-edir-"+tag))
    	return rdir, edir
    }
    
    func testEmitToDir(t *testing.T, harnessPath string, dir string) {
    	withAndWithoutRunner(func(setGoCoverDir bool, tag string) {
    		tp := "emitToDir"
    		rdir, edir := mktestdirs(t, tag, tp, dir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/first-steps.md

    Ayrıca, API'ınızla iletişim kuracak önyüz, mobil veya IoT uygulamaları gibi istemciler için otomatik olarak kod oluşturabilirsiniz.
    
    ## Adım Adım Özetleyelim
    
    ### Adım 1: `FastAPI`yı Projemize Dahil Edelim
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    `FastAPI`, API'niz için tüm işlevselliği sağlayan bir Python sınıfıdı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)
  3. src/net/netip/netip.go

    func IPv4Unspecified() Addr { return AddrFrom4([4]byte{}) }
    
    // AddrFrom4 returns the address of the IPv4 address given by the bytes in addr.
    func AddrFrom4(addr [4]byte) Addr {
    	return Addr{
    		addr: uint128{0, 0xffff00000000 | uint64(addr[0])<<24 | uint64(addr[1])<<16 | uint64(addr[2])<<8 | uint64(addr[3])},
    		z:    z4,
    	}
    }
    
    // AddrFrom16 returns the IPv6 address given by the bytes in addr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo.go

    type machoExe struct {
    	f *macho.File
    }
    
    func (x *machoExe) ReadData(addr, size uint64) ([]byte, error) {
    	for _, load := range x.f.Loads {
    		seg, ok := load.(*macho.Segment)
    		if !ok {
    			continue
    		}
    		if seg.Addr <= addr && addr <= seg.Addr+seg.Filesz-1 {
    			if seg.Name == "__PAGEZERO" {
    				continue
    			}
    			n := seg.Addr + seg.Filesz - addr
    			if n > size {
    				n = size
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/sync/atomic/doc.go

    func SwapInt64(addr *int64, new int64) (old int64)
    
    // SwapUint32 atomically stores new into *addr and returns the previous *addr value.
    // Consider using the more ergonomic and less error-prone [Uint32.Swap] instead.
    func SwapUint32(addr *uint32, new uint32) (old uint32)
    
    // SwapUint64 atomically stores new into *addr and returns the previous *addr value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    }
                }
            }
        }
    
        NbtAddress[] getAllByName( Name name, InetAddress addr )
                                                throws UnknownHostException {
            int n;
            NameQueryRequest request = new NameQueryRequest( name );
            NameQueryResponse response = new NameQueryResponse();
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 17.4K bytes
    - Viewed (0)
  7. api/go1.18.txt

    pkg net/netip, method (Addr) MarshalBinary() ([]uint8, error)
    pkg net/netip, method (Addr) MarshalText() ([]uint8, error)
    pkg net/netip, method (Addr) Next() Addr
    pkg net/netip, method (Addr) Prefix(int) (Prefix, error)
    pkg net/netip, method (Addr) Prev() Addr
    pkg net/netip, method (Addr) String() string
    pkg net/netip, method (Addr) StringExpanded() string
    pkg net/netip, method (Addr) Unmap() Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. src/runtime/race.go

    	racereleaseg(getg(), addr)
    }
    
    //go:nosplit
    func racereleaseg(gp *g, addr unsafe.Pointer) {
    	if getg().raceignore != 0 || !isvalidaddr(addr) {
    		return
    	}
    	racecall(&__tsan_release, gp.racectx, uintptr(addr), 0, 0)
    }
    
    //go:nosplit
    func racereleaseacquire(addr unsafe.Pointer) {
    	racereleaseacquireg(getg(), addr)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. pkg/dns/client/dns_test.go

    		for host := range althosts {
    			if _, exists := nt.Table[host]; !exists {
    				addresses := make([]string, 0, len(ipv4)+len(ipv6))
    				for _, addr := range ipv4 {
    					addresses = append(addresses, addr.String())
    				}
    				for _, addr := range ipv6 {
    					addresses = append(addresses, addr.String())
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm_test.go

    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_F2}, C_FREGP},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_V2}, C_VREG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_VS1}, C_VSREG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_VS2}, C_VSREGP},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_CR}, C_CREG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_CR1}, C_CREG},
    		{obj.Addr{Type: obj.TYPE_REG, Reg: REG_CR1SO}, C_CRBIT},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top