Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for addReport (0.17 sec)

  1. pkg/test/framework/components/istio/ingress/interface.go

    	// DiscoveryAddresses returns the external XDS (15012) address on the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer).
    	DiscoveryAddresses() []netip.AddrPort
    	// AddressesForPort returns the external address of the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer) for the given port.
    	AddressesForPort(port int) ([]string, []int)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. api/go1.22.txt

    pkg net/http, method (*Request) PathValue(string) string #61410
    pkg net/http, method (*Request) SetPathValue(string, string) #61410
    pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642
    pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808
    pkg reflect, func PtrTo //deprecated #59599
    pkg reflect, func TypeFor[$0 interface{}]() Type #60088
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/net/ipsock_posix.go

    		if err != nil {
    			return nil, err
    		}
    		return &sa, nil
    	}
    	return nil, &AddrError{Err: "invalid address family", Addr: ip.String()}
    }
    
    func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {
    	// ipToSockaddrInet4 has special handling here for zero length slices.
    	// We do not, because netip has no concept of a generic zero IP address.
    	addr := ap.Addr()
    	if !addr.Is4() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/framefuzz.json

    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"mask6\"\n"}
    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"AddrPort.isZero\"\n"}
    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"stringsLastIndexByte\"\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/istio.go

    	// the given cluster. This allows access to the discovery server from
    	// outside its cluster.
    	RemoteDiscoveryAddressFor(cluster cluster.Cluster) (netip.AddrPort, error)
    	// CreateRemoteSecret on the cluster with the given options.
    	CreateRemoteSecret(ctx resource.Context, c cluster.Cluster, opts ...string) (string, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top