Top "Reusability" questions

Reusability is the likelihood and potential for a piece of source code to be reused in other projects

Reusing thread in loop c++

I need to parallelize some tasks in a C++ program and am completely new to parallel programming. I've made some …

c++ multithreading loops reusability
Multiple WCF services referencing the same data contracts

I am building a set of WCF services that share common data contracts (or entities if you prefer). These are …

wcf service datacontract reusability
WCF Service Reference generates its own contract interface, won't reuse mine

My first question so hope it is suitable: Shared interface assembly - I have a 'shared' assembly which has an …

c# wcf reference reusability
No index path for table cell being reused

This started to happen out of the blue. Any ideas: Code: CUSTOMCLASSNAME (I have replaced the actual class name as …

ios tableview reusability tableviewcell
How to utilize a thread pool with pthreads?

I have a queue of jobs and I want to make a pool of four threads where I can throw …

c pthreads threadpool reusability
Reusing a JPanel in NetBeans GUI Designer

This is in NetBeans 6.5, Java 6. I have the following hierarchy in the NetBeans GUI Designer: JFrame JTabbedPane JPanel X <...&…

java netbeans reusability gui-designer
How to create global variable in prolog

I have a list that I create as follows: tab([(top,left),(top,middle),(top,right),(center,left),(center,middle), (…

list variables prolog global reusability
Reusing Components in Angular 2

When I started using Angular 2 I had the idea that the main reason to create components is because you can …

angular components reusability
UICollectionView do not reuse cells

I am having trouble with reuse cells and UICollectionView on iOS 7. My code works fine on iOS 6 but in iOS 7 …

cocoa-touch ios7 uicollectionview reusability uicollectionviewcell
Android: ViewHolder pattern and different types of rows?

ViewHolder pattern improves ListView scrolling framerate, as seen in following example: https://developer.android.com/resources/samples/ApiDemos/src/com/…

android listview performance reusability listadapter