Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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)
  3. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        const std::function<Status(const Node&, bool*)>& resource_ops_to_ignore,
        std::optional<XlaResourceOpKind>* out_resource_op_kind) {
      bool should_ignore = false;
      if (resource_ops_to_ignore) {
        TF_RETURN_IF_ERROR(resource_ops_to_ignore(n, &should_ignore));
      }
      if (should_ignore) {
        *out_resource_op_kind = std::nullopt;
        return absl::OkStatus();
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top