Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 141 for Paddr (0.03 sec)

  1. pilot/pkg/xds/eds_sh_test.go

    	}
    
    	for addr, weight := range expected.weights {
    		var match *endpoint.LbEndpoint
    		for _, ep := range lbEndpoints {
    			if ep.GetEndpoint().Address.GetSocketAddress().Address == addr {
    				match = ep
    				break
    			}
    		}
    		if match == nil {
    			t.Fatalf("couldn't find endpoint with address %s: found %v", addr, getLbEndpointAddrs(lbEndpoints))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/nilcheck_test.go

    			Valu("sb", OpSB, c.config.Types.Uintptr, 0, nil),
    			Valu("sp", OpSP, c.config.Types.Uintptr, 0, nil),
    			Valu("baddr", OpLocalAddr, c.config.Types.Bool, 0, StringToAux("b"), "sp", "mem"),
    			Valu("bool1", OpLoad, c.config.Types.Bool, 0, nil, "baddr", "mem"),
    			If("bool1", "b1", "b2")),
    		Bloc("b1",
    			Valu("ptr1", OpAddr, ptrType, 0, nil, "sb"),
    			Goto("checkPtr")),
    		Bloc("b2",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/runtime/os_freebsd.go

    		return
    	}
    	print("umtx_wait addr=", addr, " val=", val, " ret=", ret, "\n")
    	*(*int32)(unsafe.Pointer(uintptr(0x1005))) = 0x1005
    }
    
    //go:nosplit
    func futexwakeup(addr *uint32, cnt uint32) {
    	ret := sys_umtx_op(addr, _UMTX_OP_WAKE_PRIVATE, cnt, 0, nil)
    	if ret >= 0 {
    		return
    	}
    
    	systemstack(func() {
    		print("umtx_wake_addr=", addr, " ret=", ret, "\n")
    	})
    }
    
    func thr_start()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_linux_386.go

    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func mmap2(addr uintptr, length uintptr, prot int, flags int, fd int, pageOffset uintptr) (xaddr uintptr, err error) {
    	r0, _, e1 := Syscall6(SYS_MMAP2, uintptr(addr), uintptr(length), uintptr(prot), uintptr(flags), uintptr(fd), uintptr(pageOffset))
    	xaddr = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 34.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_arm64.go

    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Data [8]uint32
    }
    
    type Ucred struct {
    	Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_MSYNC                  = 65  // { int msync(void *addr, size_t len, int flags); }
    	SYS_VFORK                  = 66  // { pid_t vfork(void); }
    	SYS_SBRK                   = 69  // { caddr_t sbrk(size_t incr); }
    	SYS_SSTK                   = 70  // { int sstk(size_t incr); }
    	SYS_MUNMAP                 = 73  // { int munmap(void *addr, size_t len); }
    	SYS_MPROTECT               = 74  // { int mprotect(void *addr, size_t len, int prot); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  7. src/runtime/pprof/proto.go

    			continue
    		}
    
    		frames, symbolizeResult := allFrames(addr)
    		if len(frames) == 0 { // runtime.goexit.
    			if id := b.emitLocation(); id > 0 {
    				locs = append(locs, id)
    			}
    			stk = stk[1:]
    			continue
    		}
    
    		if added := b.deck.tryAdd(addr, frames, symbolizeResult); added {
    			stk = stk[1:]
    			continue
    		}
    		// add failed because this addr is not inlined with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_arm.go

    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Data [8]uint32
    }
    
    type Ucred struct {
    	Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage.go

    	}
    	if pod == nil {
    		return fmt.Errorf("pod is missing, skipping (%s/%s)", addr.TargetRef.Namespace, addr.TargetRef.Name)
    	}
    	for _, podIP := range pod.Status.PodIPs {
    		if podIP.IP == addr.IP {
    			return nil
    		}
    	}
    	return fmt.Errorf("pod ip(s) doesn't match endpoint ip, skipping: %v vs %s (%s/%s)", pod.Status.PodIPs, addr.IP, addr.TargetRef.Namespace, addr.TargetRef.Name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }
    	SYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, int prot); }
    	SYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, int behav); }
    	SYS_UTIMES         = 76  // { int sys_utimes(const char *path, const struct timeval *tptr); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
Back to top