Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 12346891 (0.15 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Custom resource field selectors are now in beta and enabled by default. Check out https://github.com/kubernetes/enhancements/issues/4358 for more details. ([#124681](https://github.com/kubernetes/kubernetes/pull/124681), [@jpbetz](https://github.com/jpbetz)) [SIG API Machinery, Auth and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    				expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", nil, nodeMeta)
    				expectEndpoints(t, s, "outbound|9090||service.namespace.svc.cluster.local", expectAmbient([]string{"1.2.3.4:9091"}, ambient), nodeMeta)
    
    				if err := s.Store().Delete(gvk.ServiceEntry, newSE.Name, newSE.Namespace, nil); err != nil {
    					t.Fatal(err)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. src/net/netip/netip_test.go

    	}
    }
    
    func TestAddrPortCompare(t *testing.T) {
    	tests := []struct {
    		a, b AddrPort
    		want int
    	}{
    		{AddrPort{}, AddrPort{}, 0},
    		{AddrPort{}, mustIPPort("1.2.3.4:80"), -1},
    
    		{mustIPPort("1.2.3.4:80"), mustIPPort("1.2.3.4:80"), 0},
    		{mustIPPort("[::1]:80"), mustIPPort("[::1]:80"), 0},
    
    		{mustIPPort("1.2.3.4:80"), mustIPPort("2.3.4.5:22"), -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top