Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for 100xi1 (0.1 sec)

  1. src/cmd/compile/internal/ssa/poset_test.go

    		{Ordered_Fail, 123, 124},
    
    		// Dag #0: 100<101
    		{Checkpoint, 0, 0},
    		{SetOrder, 100, 101},
    		{Ordered, 100, 101},
    		{Ordered_Fail, 101, 100},
    		{SetOrder_Fail, 101, 100},
    		{SetOrder, 100, 101}, // repeat
    		{NonEqual, 100, 101},
    		{NonEqual, 101, 100},
    		{SetEqual_Fail, 100, 101},
    
    		// Dag #1: 4<=7<12
    		{Checkpoint, 0, 0},
    		{SetOrderOrEqual, 4, 7},
    		{OrderedOrEqual, 4, 7},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 26 07:52:35 UTC 2019
    - 18.1K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/graceful_termination_test.go

    			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,
    			},
    			existingIPVS: &utilipvstest.FakeIPVS{
    				Services: map[utilipvstest.ServiceKey]*utilipvs.VirtualServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings_test.go

    						{ContainerPort: 80, Protocol: api.ProtocolUDP, HostIP: "10.0.0.1"},
    					},
    				}},
    			}},
    			expected: []string{
    				`spec.containers[0].ports[1]: overlapping port definition with spec.containers[0].ports[0]`,
    				`spec.containers[0].ports[1]: hostIP set without hostPort: {Name: HostPort:0 ContainerPort:80 Protocol:UDP HostIP:10.0.0.1}`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier_test.go

    	fakehcn "k8s.io/kubernetes/pkg/proxy/winkernel/testing"
    	netutils "k8s.io/utils/net"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	testHostName      = "test-hostname"
    	testNetwork       = "TestNetwork"
    	ipAddress         = "10.0.0.1"
    	prefixLen         = 24
    	macAddress        = "00-11-22-33-44-55"
    	destinationPrefix = "192.168.2.0/24"
    	providerAddress   = "10.0.0.3"
    	guid              = "123ABC"
    	endpointGuid1     = "EPID-1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. pkg/kubelet/network/dns/dns_test.go

    			dnsConfig: &v1.PodDNSConfig{
    				Nameservers: []string{"10.0.0.11"},
    				Searches:    []string{"my.domain"},
    				Options: []v1.PodDNSConfigOption{
    					{Name: "ndots", Value: &testNdotsOptionValue},
    					{Name: "debug"},
    				},
    			},
    			expectedDNSConfig: &runtimeapi.DNSConfig{
    				Servers:  []string{testClusterNameserver, "10.0.0.11"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    		expectedNumActions: 1,
    		expectedNumSlices:  1,
    	}, {
    		testName: "Endpoints with 1001 addresses - 1 should not be mirrored",
    		service:  &v1.Service{},
    		endpoints: &v1.Endpoints{
    			Subsets: []v1.EndpointSubset{{
    				Ports:     []v1.EndpointPort{{Port: 80}},
    				Addresses: generateAddresses(1001),
    			}},
    		},
    		endpointSlices:     []*discovery.EndpointSlice{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/hash/BloomFilterTest.java

            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 100, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.01))
            .addEqualityGroup(BloomFilter.create(Funnels.byteArrayFunnel(), 200, 0.02))
            .addEqualityGroup(BloomFilter.create(Funnels.unencodedCharsFunnel(), 100, 0.01))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/xds/endpoints/ep_filters_test.go

    	{
    		name:  "from_network1_cluster1a",
    		proxy: makeProxy("network1", "cluster1a"),
    		want: []xdstest.LocLbEpInfo{
    			{
    				LbEps: []xdstest.LbEpInfo{
    					// 3 local endpoints on network1
    					{Address: "10.0.0.1", Weight: 6},
    					{Address: "10.0.0.2", Weight: 6},
    					{Address: "10.0.0.3", Weight: 6},
    					// 1 endpoint on network2, cluster2a
    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			name: "kubeadmConfig is nil",
    			args: args{
    				kubeConfigDir: tmpDir,
    				kubeadmConfig: nil,
    				name:          "foo",
    				spec: &kubeConfigSpec{
    					CACert:         caCert,
    					APIServer:      "10.0.0.1",
    					ClientName:     "foo",
    					TokenAuth:      &tokenAuth{Token: "test"},
    					ClientCertAuth: &clientCertAuth{CAKey: caKey},
    				},
    			},
    			expectedError: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top