Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for elem2 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		// these fields are chosen such that, if status is extracted as properties["status"], it's validation is not lost.
    		if statusSubresourceEnabled {
    			v := reflect.ValueOf(schema).Elem()
    			for i := 0; i < v.NumField(); i++ {
    				// skip zero values
    				if value := v.Field(i).Interface(); reflect.DeepEqual(value, reflect.Zero(reflect.TypeOf(value)).Interface()) {
    					continue
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		}
    	}
    }
    
    // Test to catch new fields in FilterChainMatch message.
    func TestFilterChainMatchFields(t *testing.T) {
    	fcm := listener.FilterChainMatch{}
    	e := reflect.ValueOf(&fcm).Elem()
    	// If this fails, that means new fields have been added to FilterChainMatch, filterChainMatchEqual function needs to be updated.
    	if e.NumField() != 14 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top