Top "Circular-reference" questions

A circular reference is a series of references where the last object references the first, resulting in a closed loop.

Circular references in Javascript / Garbage collector

Can somebody explain in detail how Javascript engines deal with circular references ? Is there a big difference between browsers or …

javascript memory-leaks garbage-collection circular-reference
How did Microsoft create assemblies that have circular references?

In the .NET BCL there are circular references between: System.dll and System.Xml.dll System.dll and System.Configuration.…

.net assemblies circular-reference base-class-library
Garbage collection in Perl

Unlike Java, Perl uses reference count for garbage collection. I have tried searching some previous questions which speak about C++ …

perl garbage-collection circular-reference
Circular Reference error when serializing objects in ASP.NET Web API

I'm writing a Web API project in C# that uses Entity Framework to pull data from a DB, serialize it …

entity-framework asp.net-mvc-4 serialization asp.net-web-api circular-reference
I have a circular reference. How can I create a weak reference in Objective-C?

I'm working on an iPhone application. I have an object of class Row that needs to release numerous objects of …

objective-c iphone weak-references circular-reference
What solutions are there for circular references?

When using reference counting, what are possible solutions/techniques to deal with circular references? The most well-known solution is using …

reference-counting circular-reference
javascript, circular references and memory leaks

From what I recall of a not too distant past, Javascript interpreters suffered from memory leaking issues when faced with …

javascript memory-leaks browser circular-reference
Avoid Circular Model Imports in Django Apps

I have a django project with 2 apps like this: ## tags app, models.py class Tag(models.Model): title = models.CharField(…

python django organization circular-reference contenttype
c# : Utility to find circular references / compile in correct order?

doers anyone know of a good utility or program to interrogate a solution or a directory for all projects and …

c# circular-reference
Circular reference among two .net assemblies

I have two assemblies A & B. A has existing reference to B and it must be kept that way. …

c# circular-reference