Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for shouldIgnore (0.14 sec)

  1. plugin/pkg/admission/serviceaccount/admission.go

    	}
    	return nil
    }
    
    // Admit verifies if the pod should be admitted
    func (s *Plugin) Admit(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	if shouldIgnore(a) {
    		return nil
    	}
    	if a.GetOperation() != admission.Create {
    		// we only mutate pods during create requests
    		return nil
    	}
    	pod := a.GetObject().(*api.Pod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

                                .solution("Remove the annotations on '" + fieldName + "'")
                        );
                    });
            }
            return propertiesMetadata;
        }
    
        private boolean shouldIgnore(Method method) {
            if (method.isSynthetic()) {
                return true;
            }
            if (method.isBridge()) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
Back to top