├── .gitattributes ├── .gitignore ├── GBEArray.pas ├── GBEMapReduce.dpr ├── GBEMapReduce.dproj ├── GBEMapReduce.res ├── GBEMapReduceGroup.groupproj ├── GBEMapReduceTest.dpr ├── GBEMapReduceTest.dproj ├── GBEMapReduceTest.res ├── LICENSE ├── README.md ├── Unit1.fmx ├── Unit1.pas ├── Win32 └── Debug │ └── dunitx-results.xml ├── img └── capture.png ├── uPersonne.pas └── uTestMapReduce.pas /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/.gitignore -------------------------------------------------------------------------------- /GBEArray.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEArray.pas -------------------------------------------------------------------------------- /GBEMapReduce.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduce.dpr -------------------------------------------------------------------------------- /GBEMapReduce.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduce.dproj -------------------------------------------------------------------------------- /GBEMapReduce.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduce.res -------------------------------------------------------------------------------- /GBEMapReduceGroup.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduceGroup.groupproj -------------------------------------------------------------------------------- /GBEMapReduceTest.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduceTest.dpr -------------------------------------------------------------------------------- /GBEMapReduceTest.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduceTest.dproj -------------------------------------------------------------------------------- /GBEMapReduceTest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/GBEMapReduceTest.res -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/README.md -------------------------------------------------------------------------------- /Unit1.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/Unit1.fmx -------------------------------------------------------------------------------- /Unit1.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/Unit1.pas -------------------------------------------------------------------------------- /Win32/Debug/dunitx-results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/Win32/Debug/dunitx-results.xml -------------------------------------------------------------------------------- /img/capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/img/capture.png -------------------------------------------------------------------------------- /uPersonne.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/uPersonne.pas -------------------------------------------------------------------------------- /uTestMapReduce.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbegreg/MapReduce/HEAD/uTestMapReduce.pas --------------------------------------------------------------------------------