Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for ParseIPSloppy (0.15 sec)

  1. pkg/proxy/ipvs/graceful_termination_test.go

    		{
    			name: "graceful delete, no connections results in deleting the real server immediatetly",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    				Address:      netutils.ParseIPSloppy("10.0.0.1"),
    				Port:         uint16(80),
    				Weight:       100,
    				ActiveConn:   0,
    				InactiveConn: 0,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/ipvs_test.go

    				Address: netutils.ParseIPSloppy("1.2.3.4"),
    				Port:    3080,
    			},
    			rsB: &RealServer{
    				Address: netutils.ParseIPSloppy("1.2.3.4"),
    				Port:    3080,
    			},
    			equal:  true,
    			reason: "All fields equal",
    		},
    		{
    			rsA: &RealServer{
    				Address: netutils.ParseIPSloppy("2012::beef"),
    				Port:    3080,
    			},
    			rsB: &RealServer{
    				Address: netutils.ParseIPSloppy("2012::beef"),
    				Port:    3080,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/util/ipvs_linux_test.go

    				Weight:          1,
    				Address:         netutils.ParseIPSloppy("1.2.3.4"),
    			},
    			RealServer{
    				Address: netutils.ParseIPSloppy("1.2.3.4"),
    				Port:    54321,
    				Weight:  1,
    			},
    		},
    		{
    			libipvs.Destination{
    				Port:            53,
    				ConnectionFlags: 0,
    				Weight:          1,
    				Address:         netutils.ParseIPSloppy("2002::cafe"),
    			},
    			RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. pkg/proxy/util/nodeport_addresses_test.go

    					addrs: []net.Addr{
    						&net.IPNet{IP: netutils.ParseIPSloppy("1.2.3.4"), Mask: net.CIDRMask(30, 32)},
    						&net.IPNet{IP: netutils.ParseIPSloppy("2001:db8::1"), Mask: net.CIDRMask(64, 128)},
    					},
    				},
    				{
    					itf: net.Interface{Index: 1, MTU: 0, Name: "lo", HardwareAddr: nil, Flags: 0},
    					addrs: []net.Addr{
    						&net.IPNet{IP: netutils.ParseIPSloppy("127.0.0.1"), Mask: net.CIDRMask(8, 32)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. pkg/registry/core/service/ipallocator/storage/storage_test.go

    	defer destroyFunc()
    	if err := storage.Allocate(netutils.ParseIPSloppy("192.168.1.2")); !strings.Contains(err.Error(), "cannot allocate resources of type serviceipallocations at this time") {
    		t.Fatal(err)
    	}
    }
    
    func TestErrors(t *testing.T) {
    	_, storage, _, _, destroyFunc := newStorage(t)
    	defer destroyFunc()
    	err := storage.Allocate(netutils.ParseIPSloppy("192.168.0.0"))
    	if _, ok := err.(*ipallocator.ErrNotInRange); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    		testOptions *ServerRunOptions
    		expectErr   string
    	}{
    		{
    			name: "Test when MaxRequestsInFlight is negative value",
    			testOptions: &ServerRunOptions{
    				AdvertiseAddress:            netutils.ParseIPSloppy("192.168.10.10"),
    				CorsAllowedOriginList:       []string{"10.10.10.100", "10.10.10.200"},
    				MaxRequestsInFlight:         -400,
    				MaxMutatingRequestsInFlight: 200,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    	upIntf       = makeIntf(1, "eth3", flagUp)
    )
    
    var (
    	ipv4Route = Route{Interface: "eth3", Destination: netutils.ParseIPSloppy("0.0.0.0"), Gateway: netutils.ParseIPSloppy("10.254.0.1"), Family: familyIPv4}
    	ipv6Route = Route{Interface: "eth3", Destination: netutils.ParseIPSloppy("::"), Gateway: netutils.ParseIPSloppy("2001:1::1"), Family: familyIPv6}
    )
    
    var (
    	noRoutes   = []Route{}
    	routeV4    = []Route{ipv4Route}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/util/testing/fake_test.go

    	vs := &utilipvs.VirtualServer{
    		Address:  netutils.ParseIPSloppy("10.20.30.40"),
    		Port:     uint16(80),
    		Protocol: string("TCP"),
    	}
    	rss := []*utilipvs.RealServer{
    		{Address: netutils.ParseIPSloppy("172.16.2.1"), Port: 8080, Weight: 1},
    		{Address: netutils.ParseIPSloppy("172.16.2.2"), Port: 8080, Weight: 2},
    		{Address: netutils.ParseIPSloppy("172.16.2.3"), Port: 8080, Weight: 3},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. pkg/util/node/node_test.go

    			},
    			expectIPs: []net.IP{netutils.ParseIPSloppy("1.2.3.4")},
    		},
    		{
    			name: "IPv4-only, external-first",
    			addresses: []v1.NodeAddress{
    				{Type: v1.NodeExternalIP, Address: "4.3.2.1"},
    				{Type: v1.NodeExternalIP, Address: "4.3.2.2"},
    				{Type: v1.NodeInternalIP, Address: "1.2.3.4"},
    			},
    			expectIPs: []net.IP{netutils.ParseIPSloppy("1.2.3.4")},
    		},
    		{
    			name: "IPv4-only, no internal",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. pkg/registry/core/service/ipallocator/cidrallocator_test.go

    		allocator, err := r.getAllocator(netutils.ParseIPSloppy("10.0.0.11"))
    		if err != nil {
    			return false, nil
    		}
    		allocator.ipAddressSynced = func() bool { return true }
    		return allocator.ready.Load(), nil
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	// allocate one IP from the new allocator
    	err = r.Allocate(netutils.ParseIPSloppy("10.0.0.11"))
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top