Academic literature on the topic 'Portable java'

Create a spot-on reference in APA, MLA, Chicago, Harvard, and other styles

Select a source type:

Consult the lists of relevant articles, books, theses, conference reports, and other scholarly sources on the topic 'Portable java.'

Next to every source in the list of references, there is an 'Add to bibliography' button. Press on it, and we will generate automatically the bibliographic reference to the chosen work in the citation style you need: APA, MLA, Harvard, Chicago, Vancouver, etc.

You can also download the full text of the academic publication as pdf and read online its abstract whenever available in the metadata.

Journal articles on the topic "Portable java":

1

Binder, Walter, Jane G. Hulaas, and Alex Villazón. "Portable resource control in Java." ACM SIGPLAN Notices 36, no. 11 (November 2001): 139–55. http://dx.doi.org/10.1145/504311.504293.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Binder, Walter, Jarle G. Hulaas, and Alex Villazón. "Portable Resource Control in Java." Electronic Notes in Theoretical Computer Science 63 (May 2002): 1–16. http://dx.doi.org/10.1016/s1571-0661(04)80333-5.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Binder, W., and J. Hulaas. "A portable CPU-management framework for Java." IEEE Internet Computing 8, no. 5 (September 2004): 74–83. http://dx.doi.org/10.1109/mic.2004.28.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Binder, Walter. "Portable and accurate sampling profiling for Java." Software: Practice and Experience 36, no. 6 (2006): 615–50. http://dx.doi.org/10.1002/spe.712.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Binder, Walter, and Jarle Hulaas. "Java Bytecode Transformations for Efficient, Portable CPU Accounting." Electronic Notes in Theoretical Computer Science 141, no. 1 (December 2005): 53–73. http://dx.doi.org/10.1016/j.entcs.2005.02.037.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Wang, Yi-Hsien, I.-Chen Wu, and Jyh-Yaw Jiang. "A portable AWT/Swing architecture for Java game development." Software: Practice and Experience 37, no. 7 (2007): 727–45. http://dx.doi.org/10.1002/spe.786.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Bubak, Marian, Dawid Kurzyniec, Piotr Łuszczek, and Vaidy Sunderam. "Creating Java to Native Code Interfaces with Janet." Scientific Programming 9, no. 1 (2001): 39–50. http://dx.doi.org/10.1155/2001/582127.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Java is growing in appropriateness and usability for high performance computing. With this increasing adoption, issues relating to combining Java with existing codes in other languages become more important. The Java Native Interface (JNI) API is portable but too inconvenient to be used directly owing to its low-level API. This paper presents Janet — a highly expressive Java language extension and preprocessing tool that enables convenient integration of native code with Java programs. The Janet methodology overcomes some of the limitations of JNI and generates Java programs that execute with little or no degradation despite the flexibility and generality of the interface.
8

Tzruya, Yoav, and Mordechai Ben-Ari. "A portable implementation of the distributed systems annex in Java." ACM SIGAda Ada Letters XVIII, no. 6 (November 1998): 204–11. http://dx.doi.org/10.1145/301687.289620.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Umatani, Seiji, Hirokazu Shobayashi, Masahiro Yasugi, and Taiichi Yuasa. "Efficient and Portable Implementation of Java-style Exception Handling in C." IPSJ Digital Courier 2 (2006): 238–47. http://dx.doi.org/10.2197/ipsjdc.2.238.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Georges, A., M. Christiaens, M. Ronsse, and K. De Bosschere. "JaRec: a portable record/replay environment for multi-threaded Java applications." Software: Practice and Experience 34, no. 6 (April 5, 2004): 523–47. http://dx.doi.org/10.1002/spe.579.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Dissertations / Theses on the topic "Portable java":

1

Griswold, Scott J. "A Java Implementation of a Portable Desktop Manager." UNF Digital Commons, 1998. http://digitalcommons.unf.edu/etd/95.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Computers equipped with a Graphical User Interface (GUI) and connected to the Internet are common in both the business and educational communities. These computers, using a web browser, easily share programs written in the Java programming language that are able to execute on a variety of heterogeneous machines. While programs written in many languages will not execute unmodified on different computing platforms because of portability restrictions, Java has overcome these limitations and provides a platform independent language. However, every programming language is limited, and no language provides all the features required for every program. Therefore, creation of any portable program must consider not only the language, but also the architecture and operating system constraints of the target machines. A desktop manager program was developed using the Java programming language. This program provides a uniform user interface to manage other programs and executes on multiple computer platforms.
2

Gagnon, Etienne. "A portable research framework for the execution of Java bytecode /." Thesis, McGill University, 2002. http://digitool.Library.McGill.CA:80/R/?func=dbin-jump-full&object_id=82876.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Compilation to bytecode paired with interpretation is often used as a technique to easily build prototypes for new programming languages. Some languages, including Java, push this further and use the bytecode layer to isolate programs from the underlying platform. Current state-of-the-art commercial and research Java virtual machines implement advanced just-in-time and adaptive compilation techniques to deliver high-performance execution of Java bytecode. Yet, experimenting with new features such as adding new bytecodes or redesigning the type system can be a daunting task within these complex systems, when new features invalidate assumptions on which the internal dynamic optimizing compiler depends. On the other hand, simpler existing Java bytecode interpreters, written purely in high-level languages, deliver poor performance. The main motivation behind this thesis was to answer the question: How fast can a portable, easily modifiable Java bytecode interpreter be? In order to address this question, we have designed and developed the Sable VM research framework, a portable interpreter-based Java virtual machine written in portable C.
In this thesis we introduce innovative techniques for implementing an efficient, yet portable Java bytecode interpreter. These techniques address three areas: instruction dispatch, memory management, and synchronization. Specifically, we show how to implement an inline-threaded engine in the presence of lazy code preparation, without incurring a high synchronization penalty. We then introduce a logical partitioning of runtime system memory that simplifies memory management, and a related sparse interface virtual table design for fast interface-method invocation. We show how to efficiently compute space-efficient garbage collection maps for verifiable bytecode. We also present a bidirectional object layout that simplifies garbage collection. Finally, we introduce an improvement to thin locks, eliminating busy-wait in case of contention. Our experiments within the Sable VM framework show that inline-threading [PR98] Java delivers significant performance improvement over switch and direct-threading, that sparse interface tables cause no memory loss, and that our map computation algorithm delivers a very small number of distinct garbage collection maps. Our overall performance measurements show that, using our techniques, a portable interpreter can deliver competitive interpretation performance, and even surpass that of a less-portable state-of-the-art interpreter on some benchmarks.
3

Rothenhaus, Kurt J. "Distributed software applications in JAVA for portable processors operating on a wireless LAN." Thesis, Monterey, Calif. : Springfield, Va. : Naval Postgraduate School ; Available from National Technical Information Service, 1999. http://handle.dtic.mil/100.2/ADA369706.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Hu, Yu-Shing. "A portable worst-case execution time analysis framework for real-time Java architectures." Thesis, University of York, 2004. http://ethos.bl.uk/OrderDetails.do?uin=uk.bl.ethos.423749.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Zhang, Hua. "VCLUSTER: A PORTABLE VIRTUAL COMPUTING LIBRARY FOR CLUSTER COMPUTING." Doctoral diss., Orlando, Fla. : University of Central Florida, 2008. http://purl.fcla.edu/fcla/etd/CFE0002339.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Antoniu, Gabriel. "DSM-PM2 : une plate-forme portable pour l'implémentation de protocoles de cohérence multithreads pour systèmes à mémoire virtuellement partagée." Phd thesis, Ecole normale supérieure de lyon - ENS LYON, 2001. http://tel.archives-ouvertes.fr/tel-00565382.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Dans leur présentation traditionnelle, les systèmes à mémoire distribuée virtuellement partagée (MVP, en anglais DSM) permettent à des processus de partager un espace d'adressage commun selon un modèle de cohérence fixé : cohérence séquentielle, à la libération, etc. Les pro- cessus peuvent habituellement être distribués sur des noeuds physiquement distincts et leurs in- teractions par la mémoire commune sont implémentées (de manière transparente) par la MVP, en utilisant une bibliothèque de communication. Dans la plupart de travaux dans ce domaine, il est sous-entendu que la MVP et l'architecture sous-jacente sont données. Le programmeur doit alors adapter son application à ce cadre fixe, afin d'obtenir une exécution efficace. Cette approche impose des limitations statiques et ne permet pas de comparer des approches alternatives. La contribution de cette thèse consiste à proposer une plate-forme générique d'implémentation et d'expérimentation appelée DSM-PM2, qui permet de développer et d'optimiser conjointement les applications distribuées et le(s) protocole(s) de cohérence de la MVP sous-jacente. Cette plate-forme, implémentée entièrement au niveau logiciel, est portable sur plusieurs architectures de grappes hautes performances. Elle fournit les briques de bases nécessaires pour implémenter et évaluer une large classe de protocoles de cohérence multithreads dans un cadre unifié. Trois mo- dèles de cohérence sont actuellement supportés : la cohérence séquentielle, la cohérence à la libéra- tion et la cohérence Java. Plusieurs études de performance ont été effectuées à l'aide d'applications multithreads pour l'ensemble des protocoles proposés, sur différentes plates-formes. DSM-PM a été validé par son utilisation en tant que cible d'un système de compilation Java pour des grappes appelé Hyperion.
7

Fredriksson, Stefan. "WebAssembly vs. its predecessors : A comparison of technologies." Thesis, Linnéuniversitetet, Institutionen för datavetenskap och medieteknik (DM), 2020. http://urn.kb.se/resolve?urn=urn:nbn:se:lnu:diva-97654.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
For many years it has only been HTML, CSS, and JavaScript that have been native to the Web. In December 2019, WebAssembly joined them as the fourth language to run natively on the Web. This thesis compared WebAssembly to the technologies ActiveX, Java applets, Asm.js, and Portable Native Client (PNaCl) in terms of their performance, security, and browser support. The reason why this was an interesting topic to investigate was to determine in what areas WebAssembly is an improvement over previous similar technologies. Another goal was to provide companies that still use older technologies with an indication as to whether or not it is worth upgrading their system with newer technology. To answer the problem, the thesis mainly focused on comparing the performance of the technologies through a controlled experiment. The thesis also aimed at getting a glimpse of the security differences between the technologies by the use of a literature study. The thesis showed that PNaCl was the technology with the best performance. However, WebAssembly had better browser support. Also, PNaCl is deprecated while WebAssembly is heavily supported and could potentially be further optimized.
8

Courbot, Alexandre. "Spécialisation tardive de systèmes Java embarqués pour petits objets portables et sécurisés." Phd thesis, Université des Sciences et Technologie de Lille - Lille I, 2006. http://tel.archives-ouvertes.fr/tel-00113765.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Java est une technologie attractive pour les équipements embarqués et contraints, de par ses propriétés de sûreté, de portabilité et de faible empreinte mémoire du code. Cependant, la taille imposante d'un environnement Java complet a obligé les producteurs d'équipements embarqués à utiliser des spécifications dégradées de Java aux fonctionnalités limitées, telles que J2ME ou Java Card. Ces spécialisations précoces de Java perdent la compatibilité au niveau applicatif avec l'édition standard, et ne peuvent ainsi s'adresser qu'à des cas d'utilisation particuliers.Notre travail consiste à permettre l'utilisation de l'édition standard de Java sur les systèmes contraints, au travers d'une spécialisation tardive et agressive du système qui intervient après déploiement de ses applications. L'occurrence tardive de la spécialisation permet de mieux déterminer les conditions d'utilisation du système, et donc de le spécialiser « sur mesure » par rapport aux applications qu'il exécute.Nos contributions sont les suivantes : dans un premier temps, nous définissons la notion de « romization », consistant à déployer un système hors-ligne avant de capturer et de transférer son image mémoire vers l'équipement sur lequel il doit s'exécuter. De cette définition, nous proposons une architecture de romization capable de capturer une image mémoire du système à n'importe quel moment de son exécution. Dans un second temps, nous traitons des moyens d'analyse et de spécialisation permettant de rendre cette image mémoire embarquable. L'évaluation effectuée montre que cette spécialisation tardive, appliquée à un environnement Java standard déployé, permet effectivement d'en obtenir une version minimaliste et embarquable sur un équipement contraint.
9

Courbot, Alexandre Simplot David Grimaud Gilles. "Spécialisation tardive de systèmes Java embarqués pour petits objets portables et sécurisés." Villeneuve d'Ascq : Université des sciences et technologies de Lille, 2007. https://iris.univ-lille1.fr/dspace/handle/1908/994.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Reproduction de : Thèse de doctorat : Informatique : Lille 1 : 2006.
N° d'ordre (Lille 1) : 3839. Résumé en français et en anglais. Titre provenant de la page de titre du document numérisé. Bibliogr. p. 133-139.
10

Willrich, Roberto. "Conception formelle de documents hypermedias portables." Phd thesis, Université Paul Sabatier - Toulouse III, 1996. http://tel.archives-ouvertes.fr/tel-00139865.

Full text
APA, Harvard, Vancouver, ISO, and other styles
Abstract:
Cette thèse propose un modèle formel et une méthodologie, permettant la conception formelle de documents hypermédias portables, qui couvre toutes les étapes essentielles du cycle de développement des documents hypermédias. Nous avons défini un modèle formel permettant la spécification et l'analyse des documents. L'implémentation est supportée par la traduction de la spécification analysée en une représentation physique interprétable par un système de présentation. Nous avons aussi développé des outils mettant en oeuvre cette méthodologie. Le modèle formel proposé est une extension du modèle Réseaux de Pétri Hiérarchiques à Flux Temporel (RdPHFT), qui permet une spécification formelle unifiée et précise de la synchronisation logique et temporelle des systèmes hypermédias distribués. Le modèle RdPHFT n'a pas pour objectif la description complète de documents hypermédias. Cette thèse propose une version interprétée du modèle RdPHFT, appelée RdPHFT-I, qui étend le modèle RdPHFT afin de permettre la spécification complète de documents hypermédias. A la suite et à l'aide du modèle RdPHFT-I, nous proposons une méthodologie de prototypage de documents hypermédias dans laquelle la spécification et l'analyse des documents sont faites à l'aide du modèle RdPHFT-I et l'implantation est supportée : soit par la production automatique de représentations MHEG, soit par la production d'applications Java. MHEG est une norme internationale de représentation des informations multimédias et hypermédias permettant le transfert de ces informations dans un système ouvert. Java est un langage de programmation d'applications multimédias fournissant un code portable de l'application. En résumé, la principale contribution de ce travail est d'avoir proposé et mis en oeuvre une méthodologie permettant de contrôler la qualité et de maîtriser la complexité des systèmes hypermédias, à partir d'un cycle de vie permettant de générer directement un docume nt hypermédia à partir d'une spécification formelle analysée.

Books on the topic "Portable java":

1

James, White. Java 2 micro edition: Java in small things. Greenwich, CT: Manning, 2002.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
2

Rossbach, Peter. Java server and servlets: Building portable web applications. Harlow, England: Addison-Wesley, 2000.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
3

Jonathan, Allin, ed. Wireless Java for Symbian devices. Chichester: Wiley, 2001.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
4

Rothenhaus, Kurt J. Distributed software applications in JAVA for portable processors operating on a wireless LAN. Monterey, Calif: Naval Postgraduate School, 1999.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
5

Kroll, Michael. Java 2 Micro Edition application development. Indianapolis, Ind: Sams, 2001.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
6

Debbabi, Mourad. Embedded Java security: Security for mobile devices. London: Springer, 2010.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
7

Mourad, Debbabi, ed. Embedded Java security: Security for mobile devices. London: Springer, 2007.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
8

Kroll, Michael. Java 2 Micro Edition (J2ME) Application Development. Upper Saddle River: Pearson Education, 2005.

Find full text
APA, Harvard, Vancouver, ISO, and other styles
9

Linwood, Jeff, and Dave Minter. Building Portals with the Java Portlet API. Berkeley, CA: Apress, 2004. http://dx.doi.org/10.1007/978-1-4302-0754-2.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Sarang, Poornachandra. Practical Liferay: Java™-based Portal Applications Development. Berkeley, CA: Apress, 2009.

Find full text
APA, Harvard, Vancouver, ISO, and other styles

Book chapters on the topic "Portable java":

1

Tilevich, Eli, and Yannis Smaragdakis. "Portable and Efficient Distributed Threads for Java." In Middleware 2004, 478–92. Berlin, Heidelberg: Springer Berlin Heidelberg, 2004. http://dx.doi.org/10.1007/978-3-540-30229-2_25.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Sakamoto, Takahiro, Tatsurou Sekiguchi, and Akinori Yonezawa. "Bytecode Transformation for Portable Thread Migration in Java." In Agent Systems, Mobile Agents, and Applications, 16–28. Berlin, Heidelberg: Springer Berlin Heidelberg, 2000. http://dx.doi.org/10.1007/978-3-540-45347-5_3.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Truyen, Eddy, Bert Robben, Bart Vanhaute, Tim Coninx, Wouter Joosen, and Pierre Verbaeten. "Portable Support for Transparent Thread Migration in Java." In Agent Systems, Mobile Agents, and Applications, 29–43. Berlin, Heidelberg: Springer Berlin Heidelberg, 2000. http://dx.doi.org/10.1007/978-3-540-45347-5_4.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Mintchev, Sava, and Vladimir Getov. "Towards portable message passing in Java: Binding MPI." In Recent Advances in Parallel Virtual Machine and Message Passing Interface, 135–42. Berlin, Heidelberg: Springer Berlin Heidelberg, 1997. http://dx.doi.org/10.1007/3-540-63697-8_79.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Matsuoka, Satoshi, and Shigeo Itou. "Is Java Suitable for Portable High-Performance Computing?" In Object-Oriented Technology: ECOOP’98 Workshop Reader, 460–61. Berlin, Heidelberg: Springer Berlin Heidelberg, 1998. http://dx.doi.org/10.1007/3-540-49255-0_149.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Villazón, Alex, and Walter Binder. "Portable Resource Reification in Java-Based Mobile Agent Systems." In Mobile Agents, 213–28. Berlin, Heidelberg: Springer Berlin Heidelberg, 2001. http://dx.doi.org/10.1007/3-540-45647-3_15.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Ryan, Caspar, and Christopher Westhorpe. "Application Adaptation Through Transparent and Portable Object Mobility in Java." In On the Move to Meaningful Internet Systems 2004: CoopIS, DOA, and ODBASE, 1262–84. Berlin, Heidelberg: Springer Berlin Heidelberg, 2004. http://dx.doi.org/10.1007/978-3-540-30469-2_29.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Binder, Walter, and Jarle Hulaas. "Self-accounting as Principle for Portable CPU Control in Java." In Object-Oriented and Internet-Based Technologies, 24–38. Berlin, Heidelberg: Springer Berlin Heidelberg, 2004. http://dx.doi.org/10.1007/978-3-540-30196-7_3.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Hu, Erik Yu-Shing, Andy J. Wellings, and Guillem Bernat. "Deriving Java Virtual Machine Timing Models for Portable Worst-Case Execution Time Analysis." In On The Move to Meaningful Internet Systems 2003: OTM 2003 Workshops, 411–24. Berlin, Heidelberg: Springer Berlin Heidelberg, 2003. http://dx.doi.org/10.1007/978-3-540-39962-9_48.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Binder, Walter. "A Portable and Customizable Profiling Framework for Java Based on Bytecode Instruction Counting." In Programming Languages and Systems, 178–94. Berlin, Heidelberg: Springer Berlin Heidelberg, 2005. http://dx.doi.org/10.1007/11575467_13.

Full text
APA, Harvard, Vancouver, ISO, and other styles

Conference papers on the topic "Portable java":

1

Binder, Walter, Jane G. Hulaas, and Alex Villazón. "Portable resource control in Java." In the 16th ACM SIGPLAN conference. New York, New York, USA: ACM Press, 2001. http://dx.doi.org/10.1145/504282.504293.

Full text
APA, Harvard, Vancouver, ISO, and other styles
2

Sohda, Yukihiko, Hidemoto Nakada, and Satoshi Matsuoka. "Implementation of a portable software DSM in Java." In the 2001 joint ACM-ISCOPE conference. New York, New York, USA: ACM Press, 2001. http://dx.doi.org/10.1145/376656.376845.

Full text
APA, Harvard, Vancouver, ISO, and other styles
3

Wang, Pang-Chieh, Chin-Yang Lin, Cheng-Liang Lin, Yi-Fang Li, Cheng-Kai Yang, and Ting-Wei Hou. "A Portable Feather-Weight Java-Based Graphic Library for Embedded Systems on Java Processor." In 2009 Fifth International Conference on Intelligent Information Hiding and Multimedia Signal Processing (IIH-MSP). IEEE, 2009. http://dx.doi.org/10.1109/iih-msp.2009.209.

Full text
APA, Harvard, Vancouver, ISO, and other styles
4

Welch, Ian S., and Robert J. Stroud. "Kava - a powerful and portable reflective Java (poster session)." In Addendum to the 2000 proceedings of the conference. New York, New York, USA: ACM Press, 2000. http://dx.doi.org/10.1145/367845.368019.

Full text
APA, Harvard, Vancouver, ISO, and other styles
5

Whaley, John. "A portable sampling-based profiler for Java virtual machines." In the ACM 2000 conference. New York, New York, USA: ACM Press, 2000. http://dx.doi.org/10.1145/337449.337483.

Full text
APA, Harvard, Vancouver, ISO, and other styles
6

Binder, Walter. "Portable, efficient, and accurate sampling profiling for java-based middleware." In the 5th international workshop. New York, New York, USA: ACM Press, 2005. http://dx.doi.org/10.1145/1108473.1108484.

Full text
APA, Harvard, Vancouver, ISO, and other styles
7

Tzruya, Yoav, and Mordechai Ben-Ari. "A portable implementation of the distributed systems annex in Java." In the 1998 annual ACM SIGAda international conference. New York, New York, USA: ACM Press, 1998. http://dx.doi.org/10.1145/289524.289620.

Full text
APA, Harvard, Vancouver, ISO, and other styles
8

Yermolovich, Alexander, Andreas Gal, and Michael Franz. "Portable execution of legacy binaries on the Java virtual machine." In the 6th international symposium. New York, New York, USA: ACM Press, 2008. http://dx.doi.org/10.1145/1411732.1411742.

Full text
APA, Harvard, Vancouver, ISO, and other styles
9

Zhuang, Haihong, Jacopo Annese, Daniel J. Valentino, and Arthur W. Toga. "Displaying brain atlases using a portable Java application: the antomist." In Medical Imaging 2003, edited by Robert L. Galloway, Jr. SPIE, 2003. http://dx.doi.org/10.1117/12.480368.

Full text
APA, Harvard, Vancouver, ISO, and other styles
10

Hulaas, Jarle, and Walter Binder. "Program transformations for portable CPU accounting and control in Java." In the 2004 ACM SIGPLAN symposium. New York, New York, USA: ACM Press, 2004. http://dx.doi.org/10.1145/1014007.1014024.

Full text
APA, Harvard, Vancouver, ISO, and other styles

To the bibliography