Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for badDestination (0.1 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    	}{
    		{"gatewayfirst", gatewayfirst, 1, &ipv4Route, ""},
    		{"gatewaymiddle", gatewaymiddle, 1, &ipv4Route, ""},
    		{"gatewaylast", gatewaylast, 1, &ipv4Route, ""},
    		{"no routes", nothing, 0, nil, ""},
    		{"badDestination", badDestination, 0, nil, "invalid IPv4"},
    		{"badGateway", badGateway, 0, nil, "invalid IPv4"},
    		{"route_Invalidhex", route_Invalidhex, 0, nil, "odd length hex string"},
    		{"no default routes", noInternetConnection, 0, nil, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    		IncomingMessages: c.inMessages.Load(),
    		OutgoingMessages: c.outMessages.Load(),
    		OutQueue:         len(c.outQueue),
    		LastPongTime:     time.Unix(0, c.LastPong).UTC(),
    	}
    	m.ByDestination = map[string]madmin.RPCMetrics{
    		c.Remote: m,
    	}
    	return m
    }
    
    func (c *Connection) debugMsg(d debugMsg, args ...any) {
    	if debugPrint {
    		fmt.Println("debug: sending message", d, args)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top