Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ns3 (0.06 sec)

  1. pkg/config/host/names.go

    // NamesForNamespace(["ns1/foo.com","ns2/bar.com"], "ns3")   = Names([])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns1")     = Names(["foo.com","bar.com"])
    // NamesForNamespace(["ns1/foo.com","*/bar.com"], "ns3")     = Names(["bar.com"])
    // NamesForNamespace(["foo.com","ns2/bar.com"], "ns2")       = Names(["foo.com","bar.com"])
    // NamesForNamespace(["foo.com","ns2/bar.com"], "ns3")       = Names(["foo.com"])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/host/names_test.go

    			"ns1",
    			host.Names{"foo.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "ns2/bar.com"},
    			"ns3",
    			host.Names{},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns1",
    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    			[]string{"ns1/foo.com", "*/bar.com"},
    			"ns3",
    			host.Names{"bar.com"},
    		},
    		{
    			[]string{"foo.com", "ns2/bar.com"},
    			"ns2",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. pilot/pkg/model/cluster_local_test.go

    							ClusterLocal: true,
    						},
    						Hosts: []string{
    							"*.ns1.svc.cluster.local",
    							"*.ns2.svc.cluster.local",
    						},
    					},
    				},
    			},
    			host:     "s.ns3.svc.cluster.local",
    			expected: false,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			g := NewWithT(t)
    
    			env := &model.Environment{Watcher: mesh.NewFixedWatcher(c.m)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top