Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ResourceVersionMatchExact (0.47 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/validation/validation.go

    		}
    		if match != metav1.ResourceVersionMatchExact && match != metav1.ResourceVersionMatchNotOlderThan {
    			allErrs = append(allErrs, field.NotSupported(field.NewPath("resourceVersionMatch"), match, []string{string(metav1.ResourceVersionMatchExact), string(metav1.ResourceVersionMatchNotOlderThan), ""}))
    		}
    		if match == metav1.ResourceVersionMatchExact && options.ResourceVersion == "0" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/validation/validation_test.go

    		opts: internalversion.ListOptions{
    			ResourceVersion:      "1",
    			ResourceVersionMatch: metav1.ResourceVersionMatchExact,
    		},
    	}, {
    		name: "invalid-resourceversionmatch-exact",
    		opts: internalversion.ListOptions{
    			ResourceVersion:      "0",
    			ResourceVersionMatch: metav1.ResourceVersionMatchExact,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top