This HTML5 document contains 60 embedded RDF statements represented using HTML+Microdata notation.

The embedded RDF content will be recognized by any processor of HTML5 Microdata.

Namespace Prefixes

PrefixIRI
dctermshttp://purl.org/dc/terms/
n13http://www.eecg.toronto.edu/
dbohttp://dbpedia.org/ontology/
foafhttp://xmlns.com/foaf/0.1/
n14https://global.dbpedia.org/id/
yagohttp://dbpedia.org/class/yago/
schemahttp://schema.org/
dbthttp://dbpedia.org/resource/Template:
rdfshttp://www.w3.org/2000/01/rdf-schema#
freebasehttp://rdf.freebase.com/ns/
rdfhttp://www.w3.org/1999/02/22-rdf-syntax-ns#
owlhttp://www.w3.org/2002/07/owl#
wikipedia-enhttp://en.wikipedia.org/wiki/
dbphttp://dbpedia.org/property/
provhttp://www.w3.org/ns/prov#
dbchttp://dbpedia.org/resource/Category:
xsdhhttp://www.w3.org/2001/XMLSchema#
wikidatahttp://www.wikidata.org/entity/
goldhttp://purl.org/linguistics/gold/
dbrhttp://dbpedia.org/resource/

Statements

Subject Item
dbr:Jupiter_JVM
rdf:type
wikidata:Q386724 yago:CodingSystem106353757 yago:WrittenCommunication106349220 schema:CreativeWork dbo:Work wikidata:Q7397 owl:Thing yago:Communication100033020 dbo:Software yago:Software106566077 yago:Abstraction100002137 yago:Code106355894 yago:Writing106359877
rdfs:label
Jupiter JVM
rdfs:comment
Jupiter JVM is an open-source Java virtual machine, which has been developed as a master thesis with modularity and extensibility in mind. It uses Boehm garbage collector and GNU Classpath. The Jupiter Virtual Machine main aspects of its design can be simplified as:
foaf:name
Jupiter JVM
foaf:homepage
n13:jupiter
dbp:name
Jupiter JVM
dcterms:subject
dbc:Discontinued_Java_virtual_machines
dbo:wikiPageID
2078458
dbo:wikiPageRevisionID
979540336
dbo:wikiPageWikiLink
dbr:GNU_Classpath dbr:Boehm_garbage_collector dbr:Memory_locality dbr:Parallel_garbage_collection dbr:Thread_(computer_science) dbr:Java_virtual_machine dbr:GPL dbr:Java_Memory_Model dbr:Memory_consistency_model dbr:Synchronization dbr:Open-source_software dbr:Java_Virtual_Machine dbr:List_of_Java_virtual_machines dbc:Discontinued_Java_virtual_machines
dbo:wikiPageExternalLink
n13:jupiter
owl:sameAs
freebase:m.06kn94 wikidata:Q6314622 n14:4pFtq
dbp:wikiPageUsesTemplate
dbt:Portal dbt:Unreferenced dbt:Prog-lang-stub dbt:Java_Virtual_Machine dbt:Release_date dbt:Infobox_software
dbp:discontinued
yes
dbp:genre
dbr:Java_Virtual_Machine
dbp:latestReleaseDate
2002-07-15
dbp:latestReleaseVersion
1
dbp:license
dbr:GPL
dbp:website
n13:jupiter
dbo:abstract
Jupiter JVM is an open-source Java virtual machine, which has been developed as a master thesis with modularity and extensibility in mind. It uses Boehm garbage collector and GNU Classpath. The Jupiter Virtual Machine main aspects of its design can be simplified as: * Memory locality - Objects are allocated on the heap with little or no consideration for locality. While this approach may be appropriate for uniprocessors or small-scale SMPs, it is unlikely to work well on a cluster of workstations where remote memory access is one or two orders of magnitude slower than local memory access. * - Garbage collection can consume a considerable amount of application time. Typically, JVMs employ "stop-the-world" garbage collectors, where program threads are halted during garbage collection. This approach will not work for large numbers of processors, for two reasons. First, the cost of "stopping the world" is considerably higher when the number of processors is large. Second, using a single thread to collect garbage results in an unacceptably large sequential fraction for any application. * Memory consistency model - To achieve scaling performance on many processors, it is important to exploit the "relaxed" Java Memory Model. Presently no JVM implements the JMM faithfully, and indeed many implement it incorrectly, leading to lack of coherence and loss of optimization opportunities. The specification of the JMM was also revised in 2007. * Efficient threads and synchronization - With many processors, it is critical to provide efficient threading support and synchronization mechanisms that scale well.
gold:hypernym
dbr:Machine
prov:wasDerivedFrom
wikipedia-en:Jupiter_JVM?oldid=979540336&ns=0
dbo:wikiPageLength
2613
dbo:latestReleaseDate
2002-07-15
dbo:latestReleaseVersion
1.0.0 beta
dbo:genre
dbr:Java_Virtual_Machine
dbo:license
dbr:GPL
foaf:isPrimaryTopicOf
wikipedia-en:Jupiter_JVM