Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 12346891 (0.14 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. 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