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.hotspot.agent.jmod - Hotspot Agent Module
JDK 11 jdk.hotspot.agent.jmod is the JMOD file for JDK 11 Hotspot Agent module.
JDK 11 Hotspot Agent module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.hotspot.agent.jmod.
JDK 11 Hotspot Agent module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Hotspot Agent module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.hotspot.agent.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ sun/jvm/hotspot/debugger/win32/coff/Characteristics.java
/* * Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * */ package sun.jvm.hotspot.debugger.win32.coff; /** Constants indicating attributes of the object or image file. (Some of the descriptions are taken directly from Microsoft's documentation and are copyrighted by Microsoft.) */ public interface Characteristics { /** Image only, Windows CE, Windows NT and above. Indicates that the file does not contain base relocations and must therefore be loaded at its preferred base address. If the base address is not available, the loader reports an error. Operating systems running on top of MS-DOS (Win32s) are generally not able to use the preferred base address and so cannot run these images. However, beginning with version 4.0, Windows will use an application's preferred base address. The default behavior of the linker is to strip base relocations from EXEs. */ public static final short IMAGE_FILE_RELOCS_STRIPPED = (short) 0x0001; /** Image only. Indicates that the image file is valid and can be run. If this flag is not set, it generally indicates a linker error. */ public static final short IMAGE_FILE_EXECUTABLE_IMAGE = (short) 0x0002; /** COFF line numbers have been removed. */ public static final short IMAGE_FILE_LINE_NUMS_STRIPPED = (short) 0x0004; /** COFF symbol table entries for local symbols have been removed. */ public static final short IMAGE_FILE_LOCAL_SYMS_STRIPPED = (short) 0x0008; /** Aggressively trim working set. */ public static final short IMAGE_FILE_AGGRESSIVE_WS_TRIM = (short) 0x0010; /** App can handle > 2gb addresses. */ public static final short IMAGE_FILE_LARGE_ADDRESS_AWARE = (short) 0x0020; /** Use of this flag is reserved for future use. */ public static final short IMAGE_FILE_16BIT_MACHINE = (short) 0x0040; /** Little endian: LSB precedes MSB in memory. */ public static final short IMAGE_FILE_BYTES_REVERSED_LO = (short) 0x0080; /** Machine based on 32-bit-word architecture. */ public static final short IMAGE_FILE_32BIT_MACHINE = (short) 0x0100; /** Debugging information removed from image file. */ public static final short IMAGE_FILE_DEBUG_STRIPPED = (short) 0x0200; /** If image is on removable media, copy and run from swap file. */ public static final short IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP = (short) 0x0400; /** The image file is a system file, not a user program. */ public static final short IMAGE_FILE_SYSTEM = (short) 0x1000; /** The image file is a dynamic-link library (DLL). Such files are considered executable files for almost all purposes, although they cannot be directly run. */ public static final short IMAGE_FILE_DLL = (short) 0x2000; /** File should be run only on a UP machine. */ public static final short IMAGE_FILE_UP_SYSTEM_ONLY = (short) 0x4000; /** Big endian: MSB precedes LSB in memory. */ public static final short IMAGE_FILE_BYTES_REVERSED_HI = (short) 0x8000; }
⏎ sun/jvm/hotspot/debugger/win32/coff/Characteristics.java
Or download all of them as a single archive file:
File name: jdk.hotspot.agent-11.0.1-src.zip File size: 1243786 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.httpserver.jmod - HTTP Server Module
2020-02-29, 144746👍, 0💬
Popular Posts:
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
What is the dom\GetElementsByTagName .javaprovided in the Apache Xerces package? I have Apache Xerce...
The Web Services Description Language for Java Toolkit (WSDL4J), Release 1.6.2, allows the creation,...
How to download and install Apache ZooKeeper Source Package? Apache ZooKeeper is an open-source serv...
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...