Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 554 for adir (0.05 sec)

  1. src/runtime/mbitmap.go

    			}
    		}
    		if want {
    			var addr uintptr
    			tp, addr = tp.next(x + span.elemsize)
    			if addr == 0 {
    				println("runtime: found bad iterator")
    			}
    			if addr != x+i {
    				print("runtime: addr=", hex(addr), " x+i=", hex(x+i), "\n")
    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(x + span.elemsize)
    		if addr == 0 {
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  2. src/net/net_windows_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		for _, addr := range addrs {
    			switch addr := addr.(type) {
    			case *IPNet:
    				if addr.IP.To4() != nil {
    					have = append(have, addr.String())
    				}
    				if addr.IP.To16() != nil && addr.IP.To4() == nil {
    					// netsh does not output netmask for ipv6, so ignore ipv6 mask
    					have = append(have, addr.IP.String())
    				}
    			case *IPAddr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  3. src/runtime/race_arm64.s

    // R9 = addr of target function
    TEXT	racecallatomic<>(SB), NOSPLIT, $0
    	// Set up these registers
    	// R0 = *ThreadState
    	// R1 = caller pc
    	// R2 = pc
    	// R3 = addr of incoming arg list
    
    	// Trigger SIGSEGV early.
    	MOVD	40(RSP), R3	// 1st arg is addr. after two times BL, get it at 40(RSP)
    	MOVB	(R3), R13	// segv here if addr is bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    package unix
    
    import "unsafe"
    
    // SysvShmAttach attaches the Sysv shared memory segment associated with the
    // shared memory identifier id.
    func SysvShmAttach(id int, addr uintptr, flag int) ([]byte, error) {
    	addr, errno := shmat(id, addr, flag)
    	if errno != nil {
    		return nil, errno
    	}
    
    	// Retrieve the size of the shared memory to enable slice creation
    	var info SysvShmDesc
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/pprof/pprof.go

    			out = append(out, &driver.Sym{
    				Name:  []string{s.Name},
    				File:  f.name,
    				Start: s.Addr,
    				End:   s.Addr + uint64(s.Size) - 1,
    			})
    		}
    	}
    	return out, nil
    }
    
    func (f *file) Close() error {
    	f.file.Close()
    	return nil
    }
    
    // newUI will be set in readlineui.go in some platforms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/net/net_fake.go

    			return ip
    		}
    	}
    
    	switch addr := addr.(type) {
    	case *TCPAddr:
    		ip := convertIP(addr.IP)
    		if ip == nil || len(ip) == len(addr.IP) {
    			return addr
    		}
    		return &TCPAddr{IP: ip, Port: addr.Port, Zone: addr.Zone}
    	case *UDPAddr:
    		ip := convertIP(addr.IP)
    		if ip == nil || len(ip) == len(addr.IP) {
    			return addr
    		}
    		return &UDPAddr{IP: ip, Port: addr.Port, Zone: addr.Zone}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/endpoint.go

    }
    
    func retrieveEndpointAddress(ep *endpoint.LbEndpoint) string {
    	addr := ep.GetEndpoint().GetAddress()
    	if addr := addr.GetSocketAddress(); addr != nil {
    		return addr.Address + ":" + strconv.Itoa(int(addr.GetPortValue()))
    	}
    	if addr := addr.GetPipe(); addr != nil {
    		return addr.GetPath()
    	}
    	if internal := addr.GetEnvoyInternalAddress(); internal != nil {
    		switch an := internal.GetAddressNameSpecifier().(type) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. src/runtime/race_amd64.s

    TEXT	runtime·RaceRead(SB), NOSPLIT, $0-8
    	// This needs to be a tail call, because raceread reads caller pc.
    	JMP	runtime·raceread(SB)
    
    // void runtime·racereadpc(void *addr, void *callpc, void *pc)
    TEXT	runtime·racereadpc(SB), NOSPLIT, $0-24
    	MOVQ	addr+0(FP), RARG1
    	MOVQ	callpc+8(FP), RARG2
    	MOVQ	pc+16(FP), RARG3
    	ADDQ	$1, RARG3 // pc is function start, tsan wants return address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/net/net.go

    	// network address.
    	Source Addr
    
    	// Addr is the network address for which this error occurred.
    	// For local operations, like Listen or SetDeadline, Addr is
    	// the address of the local endpoint being manipulated.
    	// For operations involving a remote network connection, like
    	// Dial, Read, or Write, Addr is the remote address of that
    	// connection.
    	Addr Addr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_stack_darwin.c

    x_cgo_getstackbound(uintptr bounds[2])
    {
    	void* addr;
    	size_t size;
    	pthread_t p;
    
    	p = pthread_self();
    	addr = pthread_get_stackaddr_np(p); // high address (!)
    	size = pthread_get_stacksize_np(p);
    
    	// bounds points into the Go stack. TSAN can't see the synchronization
    	// in Go around stack reuse.
    	_cgo_tsan_acquire();
    	bounds[0] = (uintptr)addr - size;
    	bounds[1] = (uintptr)addr;
    	_cgo_tsan_release();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 01:32:45 UTC 2024
    - 617 bytes
    - Viewed (0)
Back to top