Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for RequiresExactMatch (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    			},
    			label:         "key",
    			expectedFound: true,
    			expectedValue: "value",
    		},
    	}
    	for _, ts := range testCases {
    		t.Run(ts.name, func(t *testing.T) {
    			value, found := ts.sel.RequiresExactMatch(ts.label)
    			if found != ts.expectedFound {
    				t.Errorf("Expected match %v, found %v", ts.expectedFound, found)
    			}
    			if found && value != ts.expectedValue {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.17.md

    - Fixed the bug that deleted services were processed by EndpointSliceController repeatedly even their cleanup were successful. ([#82996](https://github.com/kubernetes/kubernetes/pull/82996), [@tnqn](https://github.com/tnqn))
    - Add `RequiresExactMatch` for `label.Selector` ([#85048](https://github.com/kubernetes/kubernetes/pull/85048), [@shaloulcy](https://github.com/shaloulcy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
Back to top