Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.jcmd.jmod - JCmd Tool
JDK 11 jdk.jcmd.jmod is the JMOD file for JDK 11 JCmd tool, which can be invoked by the "jcmd" command.
JDK 11 JCmd tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jcmd.jmod.
JDK 11 JCmd tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JCmd source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jcmd.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/tools/jstat/ExpressionResolver.java
/* * Copyright (c) 2004, 2018, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package sun.tools.jstat; import sun.jvmstat.monitor.*; /** * A class implementing the ExpressionEvaluator to resolve unresolved * symbols in an Expression in the context of the available monitoring data. * This class also performs some minimal optimizations of the expressions, * such as simplification of constant subexpressions. * * @author Brian Doherty * @since 1.5 */ public class ExpressionResolver implements ExpressionEvaluator { private static boolean debug = Boolean.getBoolean("ExpressionResolver.debug"); private MonitoredVm vm; ExpressionResolver(MonitoredVm vm) { this.vm = vm; } /* * evaluate the given expression. evaluation in this case means * to resolve the counter names in the expression */ public Object evaluate(Expression e) throws MonitorException { if (e == null) { return null; } if (debug) { System.out.println("Resolving Expression:" + e); } if (e instanceof Identifier) { Identifier id = (Identifier)e; // check if it's already resolved if (id.isResolved()) { return id; } // look it up Monitor m = vm.findByName(id.getName()); if (m == null) { if (debug) { System.err.println("Warning: Unresolved Symbol: " + id.getName() + " substituted NaN"); } return new Literal(e.isRequired() ? 0.0d : Double.NaN); } if (m.getVariability() == Variability.CONSTANT) { if (debug) { System.out.println("Converting constant " + id.getName() + " to literal with value " + m.getValue()); } return new Literal(m.getValue()); } id.setValue(m); return id; } if (e instanceof Literal) { return e; } Expression l = null; Expression r = null; if (e.getLeft() != null) { l = (Expression)evaluate(e.getLeft()); } if (e.getRight() != null) { r = (Expression)evaluate(e.getRight()); } if (l != null && r != null) { if ((l instanceof Literal) && (r instanceof Literal)) { Literal ll = (Literal)l; Literal rl = (Literal)r; boolean warn = false; Double nan = Double.valueOf(Double.NaN); if (ll.getValue() instanceof String) { warn = true; ll.setValue(nan); } if (rl.getValue() instanceof String) { warn = true; rl.setValue(nan); } if (debug && warn) { System.out.println("Warning: String literal in " + "numerical expression: " + "substitutied NaN"); } // perform the operation Number ln = (Number)ll.getValue(); Number rn = (Number)rl.getValue(); double result = e.getOperator().eval(ln.doubleValue(), rn.doubleValue()); if (debug) { System.out.println("Converting expression " + e + " (left = " + ln.doubleValue() + ")" + " (right = " + rn.doubleValue() + ")" + " to literal value " + result); } var literal = new Literal(result); literal.setRequired(e.isRequired()); return literal; } } if (l != null && r == null) { return l; } e.setLeft(l); e.setRight(r); return e; } }
⏎ sun/tools/jstat/ExpressionResolver.java
Or download all of them as a single archive file:
File name: jdk.jcmd-11.0.1-src.zip File size: 47892 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jconsole.jmod - JConsole Tool
2020-07-07, 15102👍, 0💬
Popular Posts:
What Is HttpComponents commons-httpclient-3.1.j ar?HttpComponents commons-httpclient-3.1.j aris the ...
JDK 11 jdk.compiler.jmod is the JMOD file for JDK 11 Compiler tool, which can be invoked by the "jav...
What Is in Xerces-J-bin.2.12.2.zip? Xerces-J-bin.2.12.2.zip file is the distribution package ZIP fil...
JDK 11 jdk.internal.le.jmod is the JMOD file for JDK 11 Internal Line Editing module. JDK 11 Interna...
How to display XML element type information with the jaxp\TypeInfoWriter.java provided in the Apache...