Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for 100xi1 (0.1 sec)

  1. pkg/proxy/ipvs/README.md

    ```
     # kubectl get svc --all-namespaces
    NAMESPACE     NAME         TYPE        CLUSTER-IP   EXTERNAL-IP   PORT(S)         AGE
    default       kubernetes   ClusterIP   10.0.0.1     <none>        443/TCP         1d
    kube-system   kube-dns     ClusterIP   10.0.0.10    <none>        53/UDP,53/TCP   1d
    ```
    We may get IPVS proxy rules like:
    
    ```shell
     # ipvsadm -ln
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http_test.go

    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	netutils "k8s.io/utils/net"
    )
    
    func TestGetClientIP(t *testing.T) {
    	ipString := "10.0.0.1"
    	ip := netutils.ParseIPSloppy(ipString)
    	invalidIPString := "invalidIPString"
    	testCases := []struct {
    		Request    http.Request
    		ExpectedIP net.IP
    	}{
    		{
    			Request: http.Request{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:21:56 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. src/fmt/scan_test.go

    		{"space vs newline 0101", "1\n 2", "%d\n%d ", 2, true},
    		{"space vs newline 0110", "1\n 2", "%d \n%d", 2, true},
    		{"space vs newline 0111", "1\n 2", "%d \n %d", 2, true},
    		{"space vs newline 1000", "1 \n2", "%d\n%d", 2, true},
    		{"space vs newline 1001", "1 \n2", "%d\n %d", 2, true},
    		{"space vs newline 1010", "1 \n2", "%d \n%d", 2, true},
    		{"space vs newline 1011", "1 \n2", "%d \n %d", 2, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 20:25:13 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/bitmap_test.go

    			released: "10.0.0.5",
    			outOfRange: []string{
    				"10.0.0.0",      // reserved (base address)
    				"10.15.255.255", // reserved (broadcast address)
    				"10.255.255.2",  // not in range
    			},
    			alreadyAllocated: "10.0.0.1",
    		},
    		{
    			name:     "IPv6",
    			cidr:     "2001:db8:1::/48",
    			family:   api.IPv6Protocol,
    			free:     65535,
    			released: "2001:db8:1::5",
    			outOfRange: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. src/math/big/arith_test.go

    	{},
    	{nat{0}, nat{0}, nat{0}, 0},
    	{nat{1}, nat{1}, nat{0}, 0},
    	{nat{0}, nat{_M}, nat{1}, 1},
    	{nat{80235}, nat{12345}, nat{67890}, 0},
    	{nat{_M - 1}, nat{_M}, nat{_M}, 1},
    	{nat{0, 0, 0, 0}, nat{_M, _M, _M, _M}, nat{1, 0, 0, 0}, 1},
    	{nat{0, 0, 0, _M}, nat{_M, _M, _M, _M - 1}, nat{1, 0, 0, 0}, 0},
    	{nat{0, 0, 0, 0}, nat{_M, 0, _M, 0}, nat{1, _M, 0, _M}, 1},
    }
    
    func testFunVV(t *testing.T, msg string, f funVV, a argVV) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 19.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    			Address: &core.Address{
    				Address: &core.Address_SocketAddress{
    					SocketAddress: &core.SocketAddress{
    						Address: ip,
    						PortSpecifier: &core.SocketAddress_PortValue{
    							PortValue: 10001,
    						},
    					},
    				},
    			},
    		},
    	}
    }
    
    func buildWrappedLocalityLbEndpoints() []*WrappedLocalityLbEndpoints {
    	cluster := buildSmallClusterForFailOverPriority()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/helpers_test.go

    // the regexp doesn't end with `$`, and the matched rule succeeds against the input data,
    // runChain will continue trying to match the rest of the rule. E.g., "ip daddr 10.0.0.1
    // drop" would first match destAddrRegexp, and then (assuming destIP was "10.0.0.1") would
    // match verdictRegexp.
    
    var destAddrRegexp = regexp.MustCompile(`^ip6* daddr (!= )?(\S+)`)
    var destAddrLookupRegexp = regexp.MustCompile(`^ip6* daddr (!= )?\{([^}]*)\}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		{"dev.k8s.io": []byte("bar")},
    		{"dev.k8s.io.": []byte("bar")},
    		{"foo.example.com": []byte("bar")},
    		{"this.is.a.really.long.fqdn": []byte("bar")},
    		{"bbc.co.uk": []byte("bar")},
    		{"10.0.0.1": []byte("bar")}, // DNS labels can start with numbers and there is no requirement for letters.
    		{"hyphens-are-good.k8s.io": []byte("bar")},
    		{strings.Repeat("a", 63) + ".k8s.io": []byte("bar")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
Back to top