Sponsored White Papers, Webcasts, and Downloads
Additional Resources
- Profile-Guided Proactive Garbage Collection for Locality Optimization
- Many applications written in garbage collected languages have large dynamic working sets and poor data locality. This paper presents a new system for continuously improving program data locality at run time with low overhead. The key contributions include making a case that garbage collection should be viewed as a proactive...
- Tags: Optimization, Garbage Collection, Locality Optimization, Data Locality
- White papers 2006-06-11
- Using the C/C++ Garbage Collection Library, libgc
- Garbage collection deals with the automatic management of dynamic memory. One can dynamically allocate and deallocate memory by using the C++ operators new and delete as well as by using the libc functions malloc and free. This paper discusses some of the runtime errors related to memory management and how...
- Tags: Garbage Collection, Library, C/C++, Programming Languages, Software Development, Software/Web Development
- White papers
- MSDN Webcast: MSDN geekSpeak: .NET Garbage Collection With Jeffrey Richter (Level 200)
- The presenter of this webcast gives new insights into garbage collection in Microsoft .NET.
- Tags: Microsoft Developer Network, Webcast, Garbage Collection, Microsoft Corp., .Net, Application Servers, Digital Media, Middleware, Software Development, Software/Web Development, Enterprise Software, Software, Consumer Electronics, Personal Technology
- Webcasts 2006-11-01
- A Garbage-Collecting Typed Assembly Language
- Typed assembly languages usually support heap allocation safely, but often rely on an external garbage collector to deallocate objects from the heap, to prevent unsafe dangling pointers. Even if the external garbage collector is provably correct, verifying the safety of the interaction between TAL programs and garbage collection is still...
- Tags: Garbage Collection, Assembly Language, Garbage Collector
- White papers 2006-02-10
- Collecting the Garbage in the MS .NET Framework
- The Microsoft .NET Framework Garbage Collector provides a high-speed memory allocation service and methods to clean released memory. Many applications will never require a cleanup of the Managed Heap, but for those applications that do, the above coding techniques can increase performance. Additionally one can use the Common Language Runtime...
- Tags: Microsoft .NET Framework, Hewlett-Packard Co., Memory, Microsoft Corp., Microsoft .NET Framework Garbage Collector, .Net, Software Development, Software/Web Development
- White papers 2005-05-01
- An Introduction to Real-Time Java Technology: Part 2, Garbage Collection and the Sun Java Real-Time System (Java RTS)
- Because Garbage Collection GC is one of the largest sources of unpredictability in Java applications, a real-time Virtual Machine VM must find a way to prevent collection pauses from causing tasks to miss their deadlines. However, it should be noted that the RTSJ does not define real-time GC. There are...
- Tags: Java, Sun Microsystems Inc., Garbage Collection, Java Technology, Sun Java
- White papers 2008-07-01
- Tiff Inserter (exe)
- This program lets you pick a directory that contains the target files, lets you select an image to insert and gives the user the opportunity to insert the TIFF image at a specified point within the file. The GC option is to use the garbage collection function, which is useful...
- Tags: Garbage Collection, Image, GC Option
- Software downloads 2005-10-07
- Monitor .NET application performance with the CLR Profiler
- GC errors"Garbage collection begins by assuming all objects are unnecessary until proven otherwise." - Right."An object proves that it is necessary essentially by its references, or who it is referenced by."- Ok, but if you're going to make the statement you could be more complete in the description. It's...
- Tags: CLR, feedback, garbage, jwhite@..., monitor, programming, software, windows
- Discussion threads 2007-01-17
- Monitor .NET application performance with the CLR Profiler
- In the .NET Framework, memory management is supposed to be handled automatically by the system. This allows you to concentrate on the important issues of application designand development. Unfortunately, this utopia has not been completely realized asmemory issues still appear in .NET-based applications. This article examinesone tool?the CLR (Common Language...
- Tags: CLR, collector, garbage collection, garbage collector, Memory, Microsoft .NET, monitor, Software engineering/development, Tony Patton
- Technical articles 2007-01-16
- HP laserjet 5 changing fonts
- When the HP laserjet hasn't been used in a while "cold" the first page out prints in what appears to be wingding font instead of tahoma or like. The PC is running on XP. New drivers have been installed and yet this problem continues to happen. Any explanation?ThanksThis...
- Tags: inbox@..., garbage, feedback, Hewlett-Packard Co., HP LaserJet, font
- Discussion threads 2006-12-14
- Manage memory effectively with Java reference objects
- Ask any Java programmer to name the four best features of the Java language, and he’ll probably say something about automatic garbage collection—the process the JVM uses to detect objects that are no longer in use and reclaim their memory. Java’s garbage collection eliminates the potential for a number of...
- Tags: Programming languages, Alexandre Pereira Calsavara, Java, garbage collection, reference object
- Technical articles 2003-03-10
- Fedora 3.0 kernal panic
- After a few days of operation my Linux box is a Sendmail mail server the system kernel panics comes with information about stack pointer is garbage , BAD EIP Value, Fatal Exception in interrupt ,not syncing : Why is it causing my system to kernel panic? . I have DELL...
- Tags: Fedora Project, linux, RAM, salahu007@...
- Q&A 2005-09-07
- Real-Time Java, Part 5: Writing and Deploying Real-Time Java Applications
- This paper, the fifth in a six-part series about real-time Java, shows how to write and deploy real-time Java applications using the tools provided with IBM WebSphere Real Time. Using sample applications, the authors demonstrate the Metronome garbage collector for controlling garbage-collection pauses, the Ahead-of-time compiler for avoiding run-time compilation...
- Tags: Java Application, Pause, IBM Corp., Programming Languages, Java, Middleware, Software Development, Software/Web Development, Enterprise Software, Software
- White papers 2007-06-12
- Adios (exe)
- Adios extreme file system cleaner by Martin Beek - safely removes 150+ application- and Windows garbage files from your computer. Empties garbage bins, Norton virus quarantine, Norton protected bins, Internet browser caches, sensitive usage information, memory dumps, Windows update and servicepack-2 garbage.
- Tags: Norton Co., Garbage, Microsoft Windows, Operating Systems, Software
- Software downloads 2006-06-02
- Answers: Security and Garbage Collection
- It was a very busy week and weekend for me so instead of finishing the database links article I'm writing, I thought I would try to answer some questions that have been posted to some of my past articles....This post originally appeared on an external website
- Tags: garbage collection, security
- Blog posts 2005-12-11
- Java Application Performance Tuning III - Tuning the Java Heap and Garbage Collector
- Long pauses? Out of Memory Exceptions? Slow applications? You break out the books and search the Internet for Java heap tuning advice, but you find contradictory recommendations? In this webcast, we examine in detail the data structures and algorithms used by the JVM's automatic memory management system. With this technical...
- Tags: Java Application, Hewlett-Packard Co., Programming Languages, Java, Software Development, Software/Web Development
- Webcasts
- Garbage collection tuning in Java 5.0 is a breath of fresh air
- Memory management is a major factor that affects softwareapplication performance. More time is usually spent allocating and deallocatingmemory than performing actual data computation.While C++ offers direct control over when memory isallocated and freed up, Java attempts to abstract memory management by usinggarbage collection to reclaim memory that the program no...
- Tags: garbage collection, Java, memory, Peter V. Mikhalenko
- Technical articles 2006-08-23
- Code optimization: Memory management in .NET, part 1
- The .NET Framework provides memory management techniques that differ from the way memory management worked in a COM-based world. The memory management in COM was through reference counting. .NET provides an automatic memory management technique that involves reference tracing. In this article, we'll take a look at the garbage collection...
- Tags: .NET, Middleware, Microsoft .NET, Circular Reference, Microsoft .NET Framework, S. Vikram, memory, memory management, garbage collection, garbage collector
- Technical articles 2003-12-05
- Collection Studio (exe)
- Collection Studio is a program which tracks your collection items such as coins, banknotes, stamps, posters, etc and shows the whole or partial collection with different points of view. Easy-to-use tools will help you to change information, share it with friends, allowing collection to grow. Version 2.43 includes unspecified updates.
- Tags: Collection, Collection Studio, Productivity
- Software downloads 2007-12-20
- << Previous
- page 1 of 1
- Next >>