- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中edu.umd.cs.findbugs.ba.XField.getClassDescriptor()
方法的一些代码示例,展示了XField.getClassDescriptor()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XField.getClassDescriptor()
方法的具体详情如下:
包路径:edu.umd.cs.findbugs.ba.XField
类名称:XField
方法名:getClassDescriptor
暂无
代码示例来源:origin: spotbugs/spotbugs
Map.Entry<XField, OpcodeStack.Item> entry = i.next();
XField f = entry.getKey();
if ( AnalysisContext.currentXFactory().isReflectiveClass(f.getClassDescriptor())) {
i.remove();
removed++;
代码示例来源:origin: spotbugs/spotbugs
@Override
public void report() {
Subtypes2 subtypes2 = AnalysisContext.currentAnalysisContext().getSubtypes2();
for (XField f : AnalysisContext.currentXFactory().allFields()) {
if (isVolatileArray(f) && subtypes2.isApplicationClass(f.getClassDescriptor())) {
int priority = LOW_PRIORITY;
if (initializationWrites.contains(f) && !otherWrites.contains(f)) {
priority = NORMAL_PRIORITY;
}
bugReporter.reportBug(new BugInstance(this, "VO_VOLATILE_REFERENCE_TO_ARRAY", priority).addClass(
f.getClassDescriptor()).addField(f));
}
}
}
代码示例来源:origin: spotbugs/spotbugs
public static boolean isServletField(XField field) {
ClassDescriptor classDescriptor = field.getClassDescriptor();
try {
Subtypes2 subtypes2 = AnalysisContext.currentAnalysisContext().getSubtypes2();
if (subtypes2.isSubtype(classDescriptor, servlet) && !subtypes2.isSubtype(classDescriptor, singleThreadedServlet)) {
return true;
}
} catch (ClassNotFoundException e) {
assert true;
}
if (classDescriptor.getClassName().endsWith("Servlet")) {
return true;
}
return false;
}
代码示例来源:origin: spotbugs/spotbugs
XClass xClass = Global.getAnalysisCache().getClassAnalysis(XClass.class, f.getClassDescriptor());
movedOutofInterface = couldBePackage && xClass.isInterface();
} catch (CheckedAnalysisException e) {
代码示例来源:origin: spotbugs/spotbugs
if (seen == Const.PUTFIELD) {
XField xField = getXFieldOperand();
if (xField != null && xField.getClassDescriptor().equals(getClassDescriptor())) {
Item first = stack.getStackItem(0);
代码示例来源:origin: spotbugs/spotbugs
XFactory xFactory = AnalysisContext.currentXFactory();
for (XField f : AnalysisContext.currentXFactory().allFields()) {
ClassDescriptor classDescriptor = f.getClassDescriptor();
if (currentAnalysisContext.isApplicationClass(classDescriptor) && !currentAnalysisContext.isTooBig(classDescriptor)
&& !xFactory.isReflectiveClass(classDescriptor)) {
classContainingNullOnlyFields.add(f.getClassDescriptor());
int increment = 3;
Collection<ProgramPoint> assumedNonNullAt = data.assumedNonNull.get(f);
} else if (nullOnlyFieldNames.getCount(f.getName()) > 8) {
assumeReflective.add(f);
} else if (classContainingNullOnlyFields.getCount(f.getClassDescriptor()) > 4) {
assumeReflective.add(f);
} else if (classContainingNullOnlyFields.getCount(f.getClassDescriptor()) > 2 && f.getName().length() == 1) {
assumeReflective.add(f);
XClass thisClass = Global.getAnalysisCache().getClassAnalysis(XClass.class, f.getClassDescriptor());
if (r instanceof ObjectType) {
ClassDescriptor c = DescriptorFactory.getClassDescriptor((ObjectType) r);
if (subtypes2.isSubtype(f.getClassDescriptor(), c)) {
ProgramPoint p = data.threadLocalAssignedInConstructor.get(of);
int priority = p == null ? NORMAL_PRIORITY : HIGH_PRIORITY;
if (isAnonymousInnerClass) {
bugInstance = new BugInstance(this, "SIC_INNER_SHOULD_BE_STATIC_ANON", priority);
List<BugAnnotation> annotations = anonymousClassAnnotation.remove(f.getClassDescriptor().getDottedClassName());
if(annotations != null) {
代码示例来源:origin: spotbugs/spotbugs
@Override
public void sawOpcode(int seen) {
if(skip) {
return;
}
if(isBranch(seen) || seen == Const.ATHROW || isReturn(seen)) {
skip = true;
}
if(seen == Const.PUTFIELD) {
XField xField = getXFieldOperand();
if(xField != null && xField.getClassDescriptor().getClassName().equals(getClassName())) {
Item val = getStack().getStackItem(0);
if(val.isInitialParameter()) {
reporter.reportBug(new BugInstance("ME_ENUM_FIELD_SETTER", NORMAL_PRIORITY).addClassAndMethod(this).addField(xField)
.addSourceLine(this));
}
}
}
}
}
代码示例来源:origin: spotbugs/spotbugs
private MethodCall getMethodCall(MethodDescriptor methodDescriptorOperand) {
Item objItem = getStack().getStackItem(getNumberArguments(methodDescriptorOperand.getSignature()));
if (isNew(objItem)) {
return new MethodCall(methodDescriptorOperand, TARGET_NEW);
}
if (objItem.getRegisterNumber() == 0 && !getMethod().isStatic()) {
return new MethodCall(methodDescriptorOperand, constructor ? TARGET_NEW : TARGET_THIS);
}
XField xField = objItem.getXField();
if (xField != null) {
if (classInit && xField.isStatic() && xField.getClassDescriptor().getClassName().equals(getClassName())) {
return new MethodCall(methodDescriptorOperand, TARGET_NEW);
}
if (!getMethodDescriptor().isStatic() && objItem.getFieldLoadedFromRegister() == 0
&& allowedFields.contains(xField.getFieldDescriptor())) {
fieldsModifyingMethods.add(getMethodDescriptor());
return new MethodCall(methodDescriptorOperand, xField.getFieldDescriptor());
}
}
return new MethodCall(methodDescriptorOperand, TARGET_OTHER);
}
代码示例来源:origin: spotbugs/spotbugs
if (f == null || !f.getClassDescriptor().equals(getClassDescriptor())) {
return;
代码示例来源:origin: spotbugs/spotbugs
if (!fieldOperand.getClassDescriptor().getClassName().equals(getClassName())) {
fieldSummary.addWrittenOutsideOfConstructor(fieldOperand);
} else if (seen == Const.PUTFIELD) {
代码示例来源:origin: spotbugs/spotbugs
XField xField = (XField)field;
if((xField.isPublic() || xField.isProtected())) {
XClass xClass = AnalysisContext.currentXFactory().getXClass(xField.getClassDescriptor());
if(xClass != null && xClass.isPublic()) {
priority = NORMAL_PRIORITY;
代码示例来源:origin: com.google.code.findbugs/findbugs
Map.Entry<XField, OpcodeStack.Item> entry = i.next();
XField f = entry.getKey();
if ( AnalysisContext.currentXFactory().isReflectiveClass(f.getClassDescriptor())) {
i.remove();
removed++;
代码示例来源:origin: com.google.code.findbugs/findbugs
@Override
public void report() {
Subtypes2 subtypes2 = AnalysisContext.currentAnalysisContext().getSubtypes2();
for (XField f : AnalysisContext.currentXFactory().allFields()) {
if (isVolatileArray(f) && subtypes2.isApplicationClass(f.getClassDescriptor())) {
int priority = LOW_PRIORITY;
if (initializationWrites.contains(f) && !otherWrites.contains(f)) {
priority = NORMAL_PRIORITY;
}
bugReporter.reportBug(new BugInstance(this, "VO_VOLATILE_REFERENCE_TO_ARRAY", priority).addClass(
f.getClassDescriptor()).addField(f));
}
}
}
代码示例来源:origin: com.google.code.findbugs/findbugs
public static boolean isServletField(XField field) {
ClassDescriptor classDescriptor = field.getClassDescriptor();
try {
Subtypes2 subtypes2 = AnalysisContext.currentAnalysisContext().getSubtypes2();
if (subtypes2.isSubtype(classDescriptor, servlet) && !subtypes2.isSubtype(classDescriptor, singleThreadedServlet)) {
return true;
}
} catch (ClassNotFoundException e) {
assert true;
}
if (classDescriptor.getClassName().endsWith("Servlet")) {
return true;
}
return false;
}
代码示例来源:origin: com.google.code.findbugs/findbugs
XClass xClass = Global.getAnalysisCache().getClassAnalysis(XClass.class, f.getClassDescriptor());
movedOutofInterface = couldBePackage && xClass.isInterface();
} catch (CheckedAnalysisException e) {
代码示例来源:origin: com.google.code.findbugs/findbugs
if (seen == PUTFIELD) {
XField xField = getXFieldOperand();
if (xField != null && xField.getClassDescriptor().equals(getClassDescriptor())) {
Item first = stack.getStackItem(0);
代码示例来源:origin: com.google.code.findbugs/findbugs
@Override
public void sawOpcode(int seen) {
if(skip) {
return;
}
if(isBranch(seen) || seen == ATHROW || isReturn(seen)) {
skip = true;
}
if(seen == PUTFIELD) {
XField xField = getXFieldOperand();
if(xField != null && xField.getClassDescriptor().getClassName().equals(getClassName())) {
Item val = getStack().getStackItem(0);
if(val.isInitialParameter()) {
reporter.reportBug(new BugInstance("ME_ENUM_FIELD_SETTER", NORMAL_PRIORITY).addClassAndMethod(this).addField(xField)
.addSourceLine(this));
}
}
}
}
}
代码示例来源:origin: com.google.code.findbugs/findbugs
private MethodCall getMethodCall(MethodDescriptor methodDescriptorOperand) {
Item objItem = getStack().getStackItem(getNumberArguments(methodDescriptorOperand.getSignature()));
if (isNew(objItem)) {
return new MethodCall(methodDescriptorOperand, TARGET_NEW);
}
if (objItem.getRegisterNumber() == 0 && !getMethod().isStatic()) {
return new MethodCall(methodDescriptorOperand, constructor ? TARGET_NEW : TARGET_THIS);
}
XField xField = objItem.getXField();
if (xField != null) {
if (classInit && xField.isStatic() && xField.getClassDescriptor().getClassName().equals(getClassName())) {
return new MethodCall(methodDescriptorOperand, TARGET_NEW);
}
if (!getMethodDescriptor().isStatic() && objItem.getFieldLoadedFromRegister() == 0
&& allowedFields.contains(xField.getFieldDescriptor())) {
fieldsModifyingMethods.add(getMethodDescriptor());
return new MethodCall(methodDescriptorOperand, xField.getFieldDescriptor());
}
}
return new MethodCall(methodDescriptorOperand, TARGET_OTHER);
}
代码示例来源:origin: com.google.code.findbugs/findbugs
if (!fieldOperand.getClassDescriptor().getClassName().equals(getClassName())) {
fieldSummary.addWrittenOutsideOfConstructor(fieldOperand);
} else if (seen == PUTFIELD) {
代码示例来源:origin: com.google.code.findbugs/findbugs
if (f == null || !f.getClassDescriptor().equals(getClassDescriptor())) {
return;
如果我有一个多维数组,例如:[[a,b],[a,c],[b,a],[b,c],[c,a],[c,b] ] 我如何遍历并删除 [a,b] 与 [b,a] 相同的重复项。 而且,这个数组实际上非常庞大,有
我有如下数据 98-45.3A-22 104-44.0A-23 00983-29.1-22 01757-42.5A-22 04968-37.3A2-23 输出在 SQL Server 中查找如下输出
使用自定义托管 Bootstrap 应用程序,我无法在单击取消按钮时停止设置进度。我拉出带有是/否选项的确认 View 。确认取消后,设置回滚就好了。或者,如果拒绝,它会继续。这是根据以下内容完成的:
几天来,我一直在与 Wix 自定义 Bootstrap 作斗争,试图让升级正常工作。 BA 升级代码保持不变,而 MSI 文件具有新的产品代码。我只在 ARP 中显示 BA,不显示 MSI。我已经知道
我确信这个问题将来会帮助数百人。但该脚本有点超出了我的 jQuery 能力。我有 jQuery 基本技能,但无法解决这个问题。 基本上,我需要一个 iFrame(托管在单独的域上)来放置在我的主网站上
问题:构建一个只接受那些不以 ba 结尾的单词的 FA。我想为这个问题画 DFA,但我不明白我该怎么做,请帮我画这个 最佳答案 步骤: 绘制以“ba”结尾的 DFA。 反转状态即 做出最终状态,非最终
我遇到的错误是: "Uncaught TypeError: ba is undefined" "https://cdn.datatables.net/v/dt/dt-1.10.22/b-1.6.5/b
在玩 TestBA Bootstrapper from Bryan 时, 首先我安装了 1.0.0.0.然后我将版本增加到 1.0.0.1 并记录了该过程。这是在升级期间传递 -uninstall -
我摆弄了 extended globbing在 bash 中,但是逆匹配器 !(PATTERN) 有一些奇怪之处。考虑以下示例 $ touch ab ba $ shopt -s extglob $ e
我想做这样的事情: from ./script.sh import VARIABLE # <-- python style (不改变script.sh) 最佳答案 不完全一样,但这行得通: sourc
这听起来可能是一个微不足道的问题,但我无法找到正确的解决方案。请求帮助。 问题:在我的代码中,我按顺序收到 2 个事件(一个接一个)。该顺序可以是先“事件 A”,然后“事件 B”,反之亦然。如果我的事
在不重叠的字符串中查找 AB 和 BA。AB 和 BA 的顺序并不重要。我在编写此应用程序时遇到了如下问题: s = input() chars = set('AB' and 'BA') if all
我工作的地方有点进退两难......我在一个小团队工作,开发一个供内部使用的应用程序。我们最近刚刚收到该项目的新 PM。她想访问我们的数据库和我们的源代码(存储在 svn 中)。我们之前的 PM 认为
本文整理了Java中edu.umd.cs.findbugs.ba.XField类的一些代码示例,展示了XField类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mave
给定 S=>BaB、B=>b 和 null(B),代码应该生成 S =>BaB|aB|Ba|a 和 B=>b 但它没有生成 Ba 即输出是 S=>BaB| aB|a 和 B=>b 这是不正确的。 如果
我有点卡在这里。我正在尝试为每条路线分配一个唯一的路线 ID,无论是单程还是往返。 例如我有两列,起点和终点: DC 到纽约 -> 路线 A 纽约到哥伦比亚特区 -> 路线 A 纽约到波士顿 -> 路
我尝试匹配包含字母“ab”或“ba”的单词,例如“ab”olition,f“ab”rics,pro“ba”ble。我想出了以下正则表达式: r"[Aa](?=[Bb])[Bb]|[Bb](?=[Aa]
我有一个像“Ba\u015f\u00e7\u0131l”这样的字符串。我假设那些是一些特殊的重音字符。我如何: 1) 显示带有重音符号的字符串(即用实际字符替换代码) 2) 像这样存储字符串的最佳做法
我正在尝试创建允许我获取数组的所有组合以便稍后生成列表的函数。 但我的问题是目前我的函数将“ab”与“ba”区别对待。我不知道如何用语言来解释它,但我想下面的图片举例说明了我试图实现的目标。 func
我正在尝试实现应用程序内购买,而且似乎运行良好。当我尝试购买商品时,会出现带有价格的对话框。但是,当我将我的电子邮件帐户(或与开发者帐户没有任何关系的另一封电子邮件)放入“许可测试”列表中进行测试购买
我是一名优秀的程序员,十分优秀!