├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── alps ├── CMakeLists.txt ├── README.md ├── alps.yml ├── cmake │ ├── FindFamAtomic.cmake │ ├── FindMint.cmake │ ├── FindNuma.cmake │ ├── FindXATTR.cmake │ └── internal_utils.cmake ├── doc │ ├── Doxyfile │ ├── README.md │ └── figures │ │ ├── alps-layers.pdf │ │ ├── alps-layers.png │ │ ├── alps-logo.pdf │ │ ├── alps-logo.png │ │ └── globalheap-layout.pdf ├── examples │ ├── CMakeLists.txt │ └── globalheap │ │ ├── CMakeLists.txt │ │ └── root.cc ├── include │ └── alps │ │ ├── common │ │ ├── assert_nd.hh │ │ ├── assorted_func.hh │ │ ├── compiler.hh │ │ ├── cxx11.hh │ │ ├── debug_options.hh │ │ ├── error_code.hh │ │ ├── error_code.xmacro │ │ ├── error_stack.hh │ │ └── externalizable.hh │ │ ├── error_code.hh │ │ ├── globalheap │ │ ├── globalheap.hh │ │ └── memattrib.hh │ │ └── pegasus │ │ ├── addr.hh │ │ ├── address_space.hh │ │ ├── address_space_options.hh │ │ ├── bits │ │ ├── mappable.tcc │ │ └── segmap.hh │ │ ├── interleave_group.hh │ │ ├── lfs_options.hh │ │ ├── mappable.hh │ │ ├── pegasus.hh │ │ ├── pegasus_options.hh │ │ ├── pointer.hh │ │ ├── region.hh │ │ ├── relocatable_region.hh │ │ └── tmpfs_options.hh ├── install-dep ├── scripts │ ├── debug │ │ └── analyze_log.py │ ├── deploy │ │ ├── alps │ │ ├── alps-install-dep.yml │ │ ├── alps-install-root.yml │ │ ├── alps-install.yml │ │ ├── alps.py │ │ ├── alps.yml.template.j2 │ │ ├── cheatsheet.md │ │ ├── l4tm_book_data.ini │ │ ├── l4tm_book_data.tmas.ini │ │ ├── lfs.tmas.yaml │ │ └── lfs.yaml │ └── make-distribution │ │ ├── README.md │ │ ├── add_copyright.sh │ │ ├── copyright.c.txt │ │ ├── copyright.md.txt │ │ ├── copyright.sh.txt │ │ └── make-distribution.sh ├── src │ ├── CMakeLists.txt │ ├── common │ │ ├── CMakeLists.txt │ │ ├── assert_nd.cc │ │ ├── assorted_func.cc │ │ ├── debug.hh │ │ ├── debug_options.cc │ │ ├── error_stack.cc │ │ ├── externalizable.cc │ │ ├── log.cc │ │ ├── log.hh │ │ ├── os.cc │ │ ├── os.hh │ │ ├── rich_backtrace.cc │ │ └── rich_backtrace.hh │ ├── globalheap │ │ ├── CMakeLists.txt │ │ ├── attrib.hh │ │ ├── bitmap.hh │ │ ├── extent.hh │ │ ├── extentheap.cc │ │ ├── extentheap.hh │ │ ├── extentmap.cc │ │ ├── extentmap.hh │ │ ├── freespacemap.cc │ │ ├── freespacemap.hh │ │ ├── globalheap.cc │ │ ├── globalheap.md │ │ ├── globalheap_internal.cc │ │ ├── globalheap_internal.hh │ │ ├── helper.cc │ │ ├── helper.hh │ │ ├── layout.hh │ │ ├── lease.cc │ │ ├── lease.hh │ │ ├── memattrib_alloc.hh │ │ ├── memattrib_heap.cc │ │ ├── memattrib_heap.hh │ │ ├── mk_size_class.py │ │ ├── multiextentheap.cc │ │ ├── multiextentheap.hh │ │ ├── nvslab.hh │ │ ├── persist.hh │ │ ├── process_slab_heap.cc │ │ ├── process_slab_heap.hh │ │ ├── rwlock.hh │ │ ├── size_class.cc │ │ ├── size_class.hh │ │ ├── slab.cc │ │ ├── slab.hh │ │ ├── slab_heap.cc │ │ ├── slab_heap.hh │ │ ├── thread_slab_heap.cc │ │ ├── thread_slab_heap.hh │ │ ├── util.cc │ │ ├── zone.cc │ │ ├── zone.hh │ │ ├── zone_heap.cc │ │ └── zone_heap.hh │ ├── mainpage.md │ └── pegasus │ │ ├── CMakeLists.txt │ │ ├── address_space.cc │ │ ├── address_space_options.cc │ │ ├── fstype_factory.hh │ │ ├── fstype_factory.tcc │ │ ├── helper_functions.cc │ │ ├── helper_functions.hh │ │ ├── invtbl.hh │ │ ├── lfs_options.cc │ │ ├── lfs_region_file.cc │ │ ├── lfs_region_file.hh │ │ ├── lfs_topology.cc │ │ ├── lfs_topology.hh │ │ ├── mm.cc │ │ ├── mm.hh │ │ ├── multi_region_file.cc │ │ ├── multi_region_file.hh │ │ ├── pegasthread.cc │ │ ├── pegasthread.hh │ │ ├── pegasus.cc │ │ ├── pegasus.md │ │ ├── pegasus_options.cc │ │ ├── region.cc │ │ ├── region_file.cc │ │ ├── region_file.hh │ │ ├── region_file_factory.cc │ │ ├── region_file_factory.hh │ │ ├── rvma_region_file.hh │ │ ├── segmap.cc │ │ ├── tmpfs_options.cc │ │ ├── tmpfs_region_file.cc │ │ ├── tmpfs_region_file.hh │ │ ├── tmpfs_topology.cc │ │ ├── tmpfs_topology.hh │ │ ├── topology.cc │ │ ├── topology.hh │ │ ├── topology_factory.hh │ │ └── vmarea.hh ├── test │ ├── CMakeLists.txt │ ├── integration │ │ ├── CMakeLists.txt │ │ ├── roles.yml │ │ ├── test_atomic.cc │ │ ├── test_atomic.yml │ │ ├── test_integration.yml │ │ ├── test_pegas.cc │ │ ├── test_pegas.yml │ │ ├── test_pointer.cc │ │ ├── test_pointer.yml │ │ ├── test_suite.yml │ │ ├── test_topology.cc │ │ └── test_topology.yml │ ├── test_common.hh │ ├── unit │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── test_options.cc │ │ │ └── test_os.cc │ │ ├── globalheap │ │ │ ├── CMakeLists.txt │ │ │ ├── test_bitmap.cc │ │ │ ├── test_extent.cc │ │ │ ├── test_extentheap.cc │ │ │ ├── test_extentmap.cc │ │ │ ├── test_freespacemap.cc │ │ │ ├── test_globalheap.cc │ │ │ ├── test_heap_fixture.hh │ │ │ ├── test_memattrib.cc │ │ │ ├── test_root.cc │ │ │ ├── test_slab.cc │ │ │ ├── test_slab_heap.cc │ │ │ ├── test_stress.cc │ │ │ ├── test_thread_slab_heap.cc │ │ │ ├── test_zone.cc │ │ │ └── test_zone_heap.cc │ │ ├── helper_functions.hh │ │ ├── l4tm │ │ │ ├── CMakeLists.txt │ │ │ ├── test_l4tm_lfs_alloc_policy.cc │ │ │ └── test_l4tm_lfs_map.cc │ │ ├── pegasus │ │ │ ├── CMakeLists.txt │ │ │ ├── test_inverted_table.cc │ │ │ ├── test_multi_region_file.cc │ │ │ ├── test_pegas.cc │ │ │ ├── test_pointer.cc │ │ │ ├── test_region_file.cc │ │ │ ├── test_tmpfs_region_file.cc │ │ │ └── test_topology.cc │ │ └── test_unit.yml │ └── util.cc └── third-party │ ├── CMakeLists.txt │ ├── gflags │ ├── .gitattributes │ ├── .gitignore │ ├── AUTHORS.txt │ ├── CMakeLists.txt │ ├── COPYING.txt │ ├── ChangeLog.txt │ ├── INSTALL.md │ ├── README.md │ ├── cmake │ │ ├── README_runtime.txt │ │ ├── config.cmake.in │ │ ├── execute_test.cmake │ │ ├── package.cmake.in │ │ ├── utils.cmake │ │ └── version.cmake.in │ ├── doc │ │ ├── designstyle.css │ │ └── index.html │ ├── src │ │ ├── config.h.in │ │ ├── gflags.cc │ │ ├── gflags.h.in │ │ ├── gflags_completions.cc │ │ ├── gflags_completions.h.in │ │ ├── gflags_completions.sh │ │ ├── gflags_declare.h.in │ │ ├── gflags_ns.h.in │ │ ├── gflags_reporting.cc │ │ ├── mutex.h │ │ ├── util.h │ │ ├── windows_port.cc │ │ └── windows_port.h │ └── test │ │ ├── CMakeLists.txt │ │ ├── config_for_unittests.h │ │ ├── flagfile.1 │ │ ├── flagfile.2 │ │ ├── flagfile.3 │ │ ├── gflags_declare_flags.cc │ │ ├── gflags_declare_test.cc │ │ ├── gflags_nc.py.in │ │ ├── gflags_strip_flags_test.cc │ │ ├── gflags_strip_flags_test.cmake │ │ ├── gflags_unittest.cc │ │ ├── gflags_unittest_flagfile │ │ └── nc │ │ ├── CMakeLists.txt │ │ └── gflags_nc.cc │ ├── gtest │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── aclocal.m4 │ ├── build-aux │ │ ├── config.guess │ │ ├── config.h.in │ │ ├── config.sub │ │ ├── depcomp │ │ ├── install-sh │ │ ├── ltmain.sh │ │ └── missing │ ├── cmake │ │ └── internal_utils.cmake │ ├── codegear │ │ ├── gtest.cbproj │ │ ├── gtest.groupproj │ │ ├── gtest_all.cc │ │ ├── gtest_link.cc │ │ ├── gtest_main.cbproj │ │ └── gtest_unittest.cbproj │ ├── configure │ ├── configure.ac │ ├── fused-src │ │ └── gtest │ │ │ ├── gtest-all.cc │ │ │ ├── gtest.h │ │ │ └── gtest_main.cc │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ ├── m4 │ │ ├── acx_pthread.m4 │ │ ├── gtest.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ └── lt~obsolete.m4 │ ├── make │ │ └── Makefile │ ├── msvc │ │ ├── gtest-md.sln │ │ ├── gtest-md.vcproj │ │ ├── gtest.sln │ │ ├── gtest.vcproj │ │ ├── gtest_main-md.vcproj │ │ ├── gtest_main.vcproj │ │ ├── gtest_prod_test-md.vcproj │ │ ├── gtest_prod_test.vcproj │ │ ├── gtest_unittest-md.vcproj │ │ └── gtest_unittest.vcproj │ ├── samples │ │ ├── prime_tables.h │ │ ├── sample1.cc │ │ ├── sample1.h │ │ ├── sample10_unittest.cc │ │ ├── sample1_unittest.cc │ │ ├── sample2.cc │ │ ├── sample2.h │ │ ├── sample2_unittest.cc │ │ ├── sample3-inl.h │ │ ├── sample3_unittest.cc │ │ ├── sample4.cc │ │ ├── sample4.h │ │ ├── sample4_unittest.cc │ │ ├── sample5_unittest.cc │ │ ├── sample6_unittest.cc │ │ ├── sample7_unittest.cc │ │ ├── sample8_unittest.cc │ │ └── sample9_unittest.cc │ ├── scripts │ │ ├── fuse_gtest_files.py │ │ ├── gen_gtest_pred_impl.py │ │ ├── gtest-config.in │ │ ├── pump.py │ │ └── test │ │ │ └── Makefile │ ├── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc │ ├── test │ │ ├── gtest-death-test_ex_test.cc │ │ ├── gtest-death-test_test.cc │ │ ├── gtest-filepath_test.cc │ │ ├── gtest-linked_ptr_test.cc │ │ ├── gtest-listener_test.cc │ │ ├── gtest-message_test.cc │ │ ├── gtest-options_test.cc │ │ ├── gtest-param-test2_test.cc │ │ ├── gtest-param-test_test.cc │ │ ├── gtest-param-test_test.h │ │ ├── gtest-port_test.cc │ │ ├── gtest-printers_test.cc │ │ ├── gtest-test-part_test.cc │ │ ├── gtest-tuple_test.cc │ │ ├── gtest-typed-test2_test.cc │ │ ├── gtest-typed-test_test.cc │ │ ├── gtest-typed-test_test.h │ │ ├── gtest-unittest-api_test.cc │ │ ├── gtest_all_test.cc │ │ ├── gtest_break_on_failure_unittest.py │ │ ├── gtest_break_on_failure_unittest_.cc │ │ ├── gtest_catch_exceptions_test.py │ │ ├── gtest_catch_exceptions_test_.cc │ │ ├── gtest_color_test.py │ │ ├── gtest_color_test_.cc │ │ ├── gtest_env_var_test.py │ │ ├── gtest_env_var_test_.cc │ │ ├── gtest_environment_test.cc │ │ ├── gtest_filter_unittest.py │ │ ├── gtest_filter_unittest_.cc │ │ ├── gtest_help_test.py │ │ ├── gtest_help_test_.cc │ │ ├── gtest_list_tests_unittest.py │ │ ├── gtest_list_tests_unittest_.cc │ │ ├── gtest_main_unittest.cc │ │ ├── gtest_no_test_unittest.cc │ │ ├── gtest_output_test.py │ │ ├── gtest_output_test_.cc │ │ ├── gtest_output_test_golden_lin.txt │ │ ├── gtest_pred_impl_unittest.cc │ │ ├── gtest_premature_exit_test.cc │ │ ├── gtest_prod_test.cc │ │ ├── gtest_repeat_test.cc │ │ ├── gtest_shuffle_test.py │ │ ├── gtest_shuffle_test_.cc │ │ ├── gtest_sole_header_test.cc │ │ ├── gtest_stress_test.cc │ │ ├── gtest_test_utils.py │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ ├── gtest_throw_on_failure_test.py │ │ ├── gtest_throw_on_failure_test_.cc │ │ ├── gtest_uninitialized_test.py │ │ ├── gtest_uninitialized_test_.cc │ │ ├── gtest_unittest.cc │ │ ├── gtest_xml_outfile1_test_.cc │ │ ├── gtest_xml_outfile2_test_.cc │ │ ├── gtest_xml_outfiles_test.py │ │ ├── gtest_xml_output_unittest.py │ │ ├── gtest_xml_output_unittest_.cc │ │ ├── gtest_xml_test_utils.py │ │ ├── production.cc │ │ └── production.h │ └── xcode │ │ ├── Config │ │ ├── DebugProject.xcconfig │ │ ├── FrameworkTarget.xcconfig │ │ ├── General.xcconfig │ │ ├── ReleaseProject.xcconfig │ │ ├── StaticLibraryTarget.xcconfig │ │ └── TestTarget.xcconfig │ │ ├── Resources │ │ └── Info.plist │ │ ├── Samples │ │ └── FrameworkSample │ │ │ ├── Info.plist │ │ │ ├── WidgetFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── runtests.sh │ │ │ ├── widget.cc │ │ │ ├── widget.h │ │ │ └── widget_test.cc │ │ ├── Scripts │ │ ├── runtests.sh │ │ └── versiongenerate.py │ │ └── gtest.xcodeproj │ │ └── project.pbxproj │ ├── libbacktrace │ ├── .gitignore │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── README │ ├── alloc.c │ ├── atomic.c │ ├── auxincl │ │ ├── dwarf2.h │ │ └── filenames.h │ ├── backtrace-supported.h.in │ ├── backtrace.c │ ├── backtrace.h │ ├── btest.c │ ├── config.h.in.cmake │ ├── dwarf.c │ ├── elf.c │ ├── fileline.c │ ├── internal.h │ ├── mmap.c │ ├── mmapio.c │ ├── nounwind.c │ ├── posix.c │ ├── print.c │ ├── read.c │ ├── simple.c │ ├── sort.c │ ├── state.c │ ├── stest.c │ └── unknown.c │ └── yaml-cpp-0.5.2 │ ├── .clang-format │ ├── .hgeol │ ├── .hgignore │ ├── CMakeLists.txt │ ├── include │ └── yaml-cpp │ │ ├── anchor.h │ │ ├── binary.h │ │ ├── contrib │ │ ├── anchordict.h │ │ └── graphbuilder.h │ │ ├── dll.h │ │ ├── emitfromevents.h │ │ ├── emitter.h │ │ ├── emitterdef.h │ │ ├── emittermanip.h │ │ ├── emitterstyle.h │ │ ├── eventhandler.h │ │ ├── exceptions.h │ │ ├── mark.h │ │ ├── node │ │ ├── convert.h │ │ ├── detail │ │ │ ├── bool_type.h │ │ │ ├── impl.h │ │ │ ├── iterator.h │ │ │ ├── iterator_fwd.h │ │ │ ├── memory.h │ │ │ ├── node.h │ │ │ ├── node_data.h │ │ │ ├── node_iterator.h │ │ │ └── node_ref.h │ │ ├── emit.h │ │ ├── impl.h │ │ ├── iterator.h │ │ ├── node.h │ │ ├── parse.h │ │ ├── ptr.h │ │ └── type.h │ │ ├── noncopyable.h │ │ ├── null.h │ │ ├── ostream_wrapper.h │ │ ├── parser.h │ │ ├── stlemitter.h │ │ ├── traits.h │ │ └── yaml.h │ ├── install.txt │ ├── license.txt │ ├── src │ ├── binary.cpp │ ├── collectionstack.h │ ├── contrib │ │ ├── graphbuilder.cpp │ │ ├── graphbuilderadapter.cpp │ │ └── graphbuilderadapter.h │ ├── convert.cpp │ ├── directives.cpp │ ├── directives.h │ ├── emit.cpp │ ├── emitfromevents.cpp │ ├── emitter.cpp │ ├── emitterstate.cpp │ ├── emitterstate.h │ ├── emitterutils.cpp │ ├── emitterutils.h │ ├── exp.cpp │ ├── exp.h │ ├── indentation.h │ ├── memory.cpp │ ├── node.cpp │ ├── node_data.cpp │ ├── nodebuilder.cpp │ ├── nodebuilder.h │ ├── nodeevents.cpp │ ├── nodeevents.h │ ├── null.cpp │ ├── ostream_wrapper.cpp │ ├── parse.cpp │ ├── parser.cpp │ ├── ptr_stack.h │ ├── ptr_vector.h │ ├── regex_yaml.cpp │ ├── regex_yaml.h │ ├── regeximpl.h │ ├── scanner.cpp │ ├── scanner.h │ ├── scanscalar.cpp │ ├── scanscalar.h │ ├── scantag.cpp │ ├── scantag.h │ ├── scantoken.cpp │ ├── setting.h │ ├── simplekey.cpp │ ├── singledocparser.cpp │ ├── singledocparser.h │ ├── stream.cpp │ ├── stream.h │ ├── streamcharsource.h │ ├── stringsource.h │ ├── tag.cpp │ ├── tag.h │ └── token.h │ ├── test │ ├── CMakeLists.txt │ ├── create-emitter-tests.py │ ├── gmock-1.7.0 │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── README │ │ ├── aclocal.m4 │ │ ├── build-aux │ │ │ ├── config.guess │ │ │ ├── config.h.in │ │ │ ├── config.sub │ │ │ ├── depcomp │ │ │ ├── install-sh │ │ │ ├── ltmain.sh │ │ │ └── missing │ │ ├── configure │ │ ├── configure.ac │ │ ├── fused-src │ │ │ ├── gmock-gtest-all.cc │ │ │ ├── gmock │ │ │ │ └── gmock.h │ │ │ ├── gmock_main.cc │ │ │ └── gtest │ │ │ │ └── gtest.h │ │ ├── gtest │ │ │ ├── CHANGES │ │ │ ├── CMakeLists.txt │ │ │ ├── CONTRIBUTORS │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── build-aux │ │ │ │ ├── config.guess │ │ │ │ ├── config.h.in │ │ │ │ ├── config.sub │ │ │ │ ├── depcomp │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ └── missing │ │ │ ├── cmake │ │ │ │ └── internal_utils.cmake │ │ │ ├── codegear │ │ │ │ ├── gtest.cbproj │ │ │ │ ├── gtest.groupproj │ │ │ │ ├── gtest_all.cc │ │ │ │ ├── gtest_link.cc │ │ │ │ ├── gtest_main.cbproj │ │ │ │ └── gtest_unittest.cbproj │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── fused-src │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-all.cc │ │ │ │ │ ├── gtest.h │ │ │ │ │ └── gtest_main.cc │ │ │ ├── include │ │ │ │ └── gtest │ │ │ │ │ ├── gtest-death-test.h │ │ │ │ │ ├── gtest-message.h │ │ │ │ │ ├── gtest-param-test.h │ │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ │ ├── gtest-printers.h │ │ │ │ │ ├── gtest-spi.h │ │ │ │ │ ├── gtest-test-part.h │ │ │ │ │ ├── gtest-typed-test.h │ │ │ │ │ ├── gtest.h │ │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ │ ├── gtest_prod.h │ │ │ │ │ └── internal │ │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ │ ├── gtest-filepath.h │ │ │ │ │ ├── gtest-internal.h │ │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ │ ├── gtest-param-util.h │ │ │ │ │ ├── gtest-port.h │ │ │ │ │ ├── gtest-string.h │ │ │ │ │ ├── gtest-tuple.h │ │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ │ ├── gtest-type-util.h │ │ │ │ │ └── gtest-type-util.h.pump │ │ │ ├── m4 │ │ │ │ ├── acx_pthread.m4 │ │ │ │ ├── gtest.m4 │ │ │ │ ├── libtool.m4 │ │ │ │ ├── ltoptions.m4 │ │ │ │ ├── ltsugar.m4 │ │ │ │ ├── ltversion.m4 │ │ │ │ └── lt~obsolete.m4 │ │ │ ├── make │ │ │ │ └── Makefile │ │ │ ├── msvc │ │ │ │ ├── gtest-md.sln │ │ │ │ ├── gtest-md.vcproj │ │ │ │ ├── gtest.sln │ │ │ │ ├── gtest.vcproj │ │ │ │ ├── gtest_main-md.vcproj │ │ │ │ ├── gtest_main.vcproj │ │ │ │ ├── gtest_prod_test-md.vcproj │ │ │ │ ├── gtest_prod_test.vcproj │ │ │ │ ├── gtest_unittest-md.vcproj │ │ │ │ └── gtest_unittest.vcproj │ │ │ ├── samples │ │ │ │ ├── prime_tables.h │ │ │ │ ├── sample1.cc │ │ │ │ ├── sample1.h │ │ │ │ ├── sample10_unittest.cc │ │ │ │ ├── sample1_unittest.cc │ │ │ │ ├── sample2.cc │ │ │ │ ├── sample2.h │ │ │ │ ├── sample2_unittest.cc │ │ │ │ ├── sample3-inl.h │ │ │ │ ├── sample3_unittest.cc │ │ │ │ ├── sample4.cc │ │ │ │ ├── sample4.h │ │ │ │ ├── sample4_unittest.cc │ │ │ │ ├── sample5_unittest.cc │ │ │ │ ├── sample6_unittest.cc │ │ │ │ ├── sample7_unittest.cc │ │ │ │ ├── sample8_unittest.cc │ │ │ │ └── sample9_unittest.cc │ │ │ ├── scripts │ │ │ │ ├── fuse_gtest_files.py │ │ │ │ ├── gen_gtest_pred_impl.py │ │ │ │ ├── gtest-config.in │ │ │ │ ├── pump.py │ │ │ │ └── test │ │ │ │ │ └── Makefile │ │ │ ├── src │ │ │ │ ├── gtest-all.cc │ │ │ │ ├── gtest-death-test.cc │ │ │ │ ├── gtest-filepath.cc │ │ │ │ ├── gtest-internal-inl.h │ │ │ │ ├── gtest-port.cc │ │ │ │ ├── gtest-printers.cc │ │ │ │ ├── gtest-test-part.cc │ │ │ │ ├── gtest-typed-test.cc │ │ │ │ ├── gtest.cc │ │ │ │ └── gtest_main.cc │ │ │ ├── test │ │ │ │ ├── gtest-death-test_ex_test.cc │ │ │ │ ├── gtest-death-test_test.cc │ │ │ │ ├── gtest-filepath_test.cc │ │ │ │ ├── gtest-linked_ptr_test.cc │ │ │ │ ├── gtest-listener_test.cc │ │ │ │ ├── gtest-message_test.cc │ │ │ │ ├── gtest-options_test.cc │ │ │ │ ├── gtest-param-test2_test.cc │ │ │ │ ├── gtest-param-test_test.cc │ │ │ │ ├── gtest-param-test_test.h │ │ │ │ ├── gtest-port_test.cc │ │ │ │ ├── gtest-printers_test.cc │ │ │ │ ├── gtest-test-part_test.cc │ │ │ │ ├── gtest-tuple_test.cc │ │ │ │ ├── gtest-typed-test2_test.cc │ │ │ │ ├── gtest-typed-test_test.cc │ │ │ │ ├── gtest-typed-test_test.h │ │ │ │ ├── gtest-unittest-api_test.cc │ │ │ │ ├── gtest_all_test.cc │ │ │ │ ├── gtest_break_on_failure_unittest.py │ │ │ │ ├── gtest_break_on_failure_unittest_.cc │ │ │ │ ├── gtest_catch_exceptions_test.py │ │ │ │ ├── gtest_catch_exceptions_test_.cc │ │ │ │ ├── gtest_color_test.py │ │ │ │ ├── gtest_color_test_.cc │ │ │ │ ├── gtest_env_var_test.py │ │ │ │ ├── gtest_env_var_test_.cc │ │ │ │ ├── gtest_environment_test.cc │ │ │ │ ├── gtest_filter_unittest.py │ │ │ │ ├── gtest_filter_unittest_.cc │ │ │ │ ├── gtest_help_test.py │ │ │ │ ├── gtest_help_test_.cc │ │ │ │ ├── gtest_list_tests_unittest.py │ │ │ │ ├── gtest_list_tests_unittest_.cc │ │ │ │ ├── gtest_main_unittest.cc │ │ │ │ ├── gtest_no_test_unittest.cc │ │ │ │ ├── gtest_output_test.py │ │ │ │ ├── gtest_output_test_.cc │ │ │ │ ├── gtest_output_test_golden_lin.txt │ │ │ │ ├── gtest_pred_impl_unittest.cc │ │ │ │ ├── gtest_premature_exit_test.cc │ │ │ │ ├── gtest_prod_test.cc │ │ │ │ ├── gtest_repeat_test.cc │ │ │ │ ├── gtest_shuffle_test.py │ │ │ │ ├── gtest_shuffle_test_.cc │ │ │ │ ├── gtest_sole_header_test.cc │ │ │ │ ├── gtest_stress_test.cc │ │ │ │ ├── gtest_test_utils.py │ │ │ │ ├── gtest_throw_on_failure_ex_test.cc │ │ │ │ ├── gtest_throw_on_failure_test.py │ │ │ │ ├── gtest_throw_on_failure_test_.cc │ │ │ │ ├── gtest_uninitialized_test.py │ │ │ │ ├── gtest_uninitialized_test_.cc │ │ │ │ ├── gtest_unittest.cc │ │ │ │ ├── gtest_xml_outfile1_test_.cc │ │ │ │ ├── gtest_xml_outfile2_test_.cc │ │ │ │ ├── gtest_xml_outfiles_test.py │ │ │ │ ├── gtest_xml_output_unittest.py │ │ │ │ ├── gtest_xml_output_unittest_.cc │ │ │ │ ├── gtest_xml_test_utils.py │ │ │ │ ├── production.cc │ │ │ │ └── production.h │ │ │ └── xcode │ │ │ │ ├── Config │ │ │ │ ├── DebugProject.xcconfig │ │ │ │ ├── FrameworkTarget.xcconfig │ │ │ │ ├── General.xcconfig │ │ │ │ ├── ReleaseProject.xcconfig │ │ │ │ ├── StaticLibraryTarget.xcconfig │ │ │ │ └── TestTarget.xcconfig │ │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ │ ├── Samples │ │ │ │ └── FrameworkSample │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── WidgetFramework.xcodeproj │ │ │ │ │ └── project.pbxproj │ │ │ │ │ ├── runtests.sh │ │ │ │ │ ├── widget.cc │ │ │ │ │ ├── widget.h │ │ │ │ │ └── widget_test.cc │ │ │ │ ├── Scripts │ │ │ │ ├── runtests.sh │ │ │ │ └── versiongenerate.py │ │ │ │ └── gtest.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── include │ │ │ └── gmock │ │ │ │ ├── gmock-actions.h │ │ │ │ ├── gmock-cardinalities.h │ │ │ │ ├── gmock-generated-actions.h │ │ │ │ ├── gmock-generated-actions.h.pump │ │ │ │ ├── gmock-generated-function-mockers.h │ │ │ │ ├── gmock-generated-function-mockers.h.pump │ │ │ │ ├── gmock-generated-matchers.h │ │ │ │ ├── gmock-generated-matchers.h.pump │ │ │ │ ├── gmock-generated-nice-strict.h │ │ │ │ ├── gmock-generated-nice-strict.h.pump │ │ │ │ ├── gmock-matchers.h │ │ │ │ ├── gmock-more-actions.h │ │ │ │ ├── gmock-more-matchers.h │ │ │ │ ├── gmock-spec-builders.h │ │ │ │ ├── gmock.h │ │ │ │ └── internal │ │ │ │ ├── gmock-generated-internal-utils.h │ │ │ │ ├── gmock-generated-internal-utils.h.pump │ │ │ │ ├── gmock-internal-utils.h │ │ │ │ └── gmock-port.h │ │ ├── make │ │ │ └── Makefile │ │ ├── msvc │ │ │ ├── 2005 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcproj │ │ │ │ ├── gmock_config.vsprops │ │ │ │ ├── gmock_main.vcproj │ │ │ │ └── gmock_test.vcproj │ │ │ └── 2010 │ │ │ │ ├── gmock.sln │ │ │ │ ├── gmock.vcxproj │ │ │ │ ├── gmock_config.props │ │ │ │ ├── gmock_main.vcxproj │ │ │ │ └── gmock_test.vcxproj │ │ ├── scripts │ │ │ ├── fuse_gmock_files.py │ │ │ ├── generator │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── README.cppclean │ │ │ │ ├── cpp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ast.py │ │ │ │ │ ├── gmock_class.py │ │ │ │ │ ├── keywords.py │ │ │ │ │ ├── tokenize.py │ │ │ │ │ └── utils.py │ │ │ │ └── gmock_gen.py │ │ │ └── gmock-config.in │ │ ├── src │ │ │ ├── gmock-all.cc │ │ │ ├── gmock-cardinalities.cc │ │ │ ├── gmock-internal-utils.cc │ │ │ ├── gmock-matchers.cc │ │ │ ├── gmock-spec-builders.cc │ │ │ ├── gmock.cc │ │ │ └── gmock_main.cc │ │ └── test │ │ │ ├── gmock-actions_test.cc │ │ │ ├── gmock-cardinalities_test.cc │ │ │ ├── gmock-generated-actions_test.cc │ │ │ ├── gmock-generated-function-mockers_test.cc │ │ │ ├── gmock-generated-internal-utils_test.cc │ │ │ ├── gmock-generated-matchers_test.cc │ │ │ ├── gmock-internal-utils_test.cc │ │ │ ├── gmock-matchers_test.cc │ │ │ ├── gmock-more-actions_test.cc │ │ │ ├── gmock-nice-strict_test.cc │ │ │ ├── gmock-port_test.cc │ │ │ ├── gmock-spec-builders_test.cc │ │ │ ├── gmock_all_test.cc │ │ │ ├── gmock_ex_test.cc │ │ │ ├── gmock_leak_test.py │ │ │ ├── gmock_leak_test_.cc │ │ │ ├── gmock_link2_test.cc │ │ │ ├── gmock_link_test.cc │ │ │ ├── gmock_link_test.h │ │ │ ├── gmock_output_test.py │ │ │ ├── gmock_output_test_.cc │ │ │ ├── gmock_output_test_golden.txt │ │ │ ├── gmock_stress_test.cc │ │ │ ├── gmock_test.cc │ │ │ └── gmock_test_utils.py │ ├── handler_test.h │ ├── integration │ │ ├── emitter_test.cpp │ │ ├── encoding_test.cpp │ │ ├── gen_emitter_test.cpp │ │ ├── handler_spec_test.cpp │ │ ├── handler_test.cpp │ │ ├── load_node_test.cpp │ │ └── node_spec_test.cpp │ ├── main.cpp │ ├── mock_event_handler.h │ ├── node │ │ └── node_test.cpp │ ├── ostream_wrapper_test.cpp │ └── specexamples.h │ ├── util │ ├── CMakeLists.txt │ ├── api.cpp │ ├── parse.cpp │ ├── read.cpp │ └── sandbox.cpp │ ├── yaml-cpp-config-version.cmake.in │ ├── yaml-cpp-config.cmake.in │ └── yaml-cpp.pc.cmake ├── deploy ├── README.md ├── dependent-modules │ ├── README.txt │ ├── install-boost.sh │ ├── install-pre-reqs.sh │ ├── prereqs-install.yml │ ├── spark-inventory.yml │ └── spark-vars.yml ├── examples │ ├── spark-defaults.conf │ └── spark-env.sh ├── maven-install-spark-core-1.2.0.sh ├── maven-install-spark-core-2.0.0.sh ├── multi-copy.sh └── virtualnode │ ├── playbooks │ ├── alps-config.yml │ ├── ansible-test.yml │ ├── install-spark.sh │ ├── inventory.yml │ ├── multi-core.yml │ ├── pre-reqs-apt.yml │ ├── pre-reqs-yum.yml │ ├── root-dir.yml │ ├── run.sh │ ├── setup-alps.sh │ ├── unpack_node.yml │ ├── unpack_worker.yml │ └── variables.yml │ ├── scripts │ └── workers-per-socket.pl │ └── templates │ ├── examples │ └── test-pi.sh │ ├── master │ ├── conf │ │ ├── OLD_log4j.props │ │ ├── log4j.properties │ │ ├── slaves │ │ ├── spark-defaults.conf │ │ └── spark-env.sh │ └── sbin │ │ └── spark-daemon.sh │ ├── scripts │ ├── clean-up.sh │ ├── create_filesystems.sh │ ├── delete_filesystems.sh │ ├── killJava.sh │ ├── start-one.sh │ ├── start-spark.sh │ └── start-two.sh │ ├── spark │ ├── spark-defaults.conf │ └── spark-env.sh │ └── worker0 │ ├── conf │ ├── log4j.properties │ ├── slaves │ ├── spark-defaults.conf │ └── spark-env.sh │ └── sbin │ └── spark-daemon.sh ├── docs ├── exampleapps.pdf ├── httpserver-fix.pdf └── userguide.pdf ├── firesteel ├── CMakeLists.txt ├── build-cpp.sh ├── cmake │ ├── Findalps.cmake │ ├── Findgtest.cmake │ ├── Findjni.cmake │ └── Findtbb.cmake ├── pom.xml └── src │ ├── main │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── combinedoffheapstore │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ ├── combinedshuffle │ │ │ ├── CMakeLists.txt │ │ │ ├── version.cc │ │ │ └── version.h │ │ ├── jnioffheapstore │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── OffHeapStoreInf.cc │ │ │ └── com_hp_hpl_firesteel_offheapstore_OffHeapStore.h │ │ ├── jnishuffle │ │ │ ├── CMakeLists.txt │ │ │ ├── com_hp_hpl_firesteel_shuffle_MapSHMShuffleStore.h │ │ │ ├── com_hp_hpl_firesteel_shuffle_MapSHMShuffleStore_LocalKryoByteBufferBasedSerializer.h │ │ │ ├── com_hp_hpl_firesteel_shuffle_ReduceSHMShuffleStore.h │ │ │ ├── com_hp_hpl_firesteel_shuffle_ReduceSHMShuffleStore_LocalKryoByteBufferBasedDeserializer.h │ │ │ ├── com_hp_hpl_firesteel_shuffle_ShuffleStoreManager.h │ │ │ ├── shuffle_MapSHMShuffleStore.cc │ │ │ ├── shuffle_ReduceSHMShuffleStore.cc │ │ │ └── shuffle_ShuffleStoreManager.cc │ │ ├── offheapstore │ │ │ ├── AttributeHashTable.cc │ │ │ ├── AttributeHashTable.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── OffHeapStoreConstants.h │ │ │ ├── OffHeapStoreManager.cc │ │ │ ├── OffHeapStoreManager.h │ │ │ ├── OffHeapStoreSharedMemoryManager.h │ │ │ └── ShmAddress.h │ │ ├── shmmanagement │ │ │ ├── CMakeLists.txt │ │ │ ├── SharedMemoryAllocator.h │ │ │ ├── SharedMemoryManager.cc │ │ │ └── SharedMemoryManager.h │ │ └── shuffle │ │ │ ├── ArrayBufferPool.cc │ │ │ ├── ArrayBufferPool.h │ │ │ ├── ByteBufferHolder.h │ │ │ ├── ByteBufferPool.cc │ │ │ ├── ByteBufferPool.h │ │ │ ├── CMakeLists.txt │ │ │ ├── EnumKvTypes.h │ │ │ ├── ExtensibleByteBuffers.cc │ │ │ ├── ExtensibleByteBuffers.h │ │ │ ├── GenericMapShuffleStore.h │ │ │ ├── GenericReduceChannel.cc │ │ │ ├── GenericReduceChannel.h │ │ │ ├── GenericReduceShuffleStore.h │ │ │ ├── HashMapKeyPositionTracker.cc │ │ │ ├── HashMapKeyPositionTracker.h │ │ │ ├── HashMapReduceChannelWithIntKeys.cc │ │ │ ├── HashMapReduceChannelWithIntKeys.h │ │ │ ├── MapShuffleStoreManager.cc │ │ │ ├── MapShuffleStoreManager.h │ │ │ ├── MapShuffleStoreWithIntKeys.cc │ │ │ ├── MapShuffleStoreWithIntKeys.h │ │ │ ├── MapStatus.h │ │ │ ├── MergeSortChannelHelper.cc │ │ │ ├── MergeSortChannelHelper.h │ │ │ ├── MergeSortKeyPositionTrackerWithIntKeys.h │ │ │ ├── MergeSortReduceChannelWithIntKeys.cc │ │ │ ├── MergeSortReduceChannelWithIntKeys.h │ │ │ ├── PassThroughKeyValueTrackerWithIntKeys.h │ │ │ ├── PassThroughReduceChannelWithIntKeys.cc │ │ │ ├── PassThroughReduceChannelWithIntKeys.h │ │ │ ├── PriorityQueueVariableLengthKeyComparator.h │ │ │ ├── ReduceShuffleStoreManager.cc │ │ │ ├── ReduceShuffleStoreManager.h │ │ │ ├── ReduceShuffleStoreWithIntKeys.cc │ │ │ ├── ReduceShuffleStoreWithIntKeys.h │ │ │ ├── ShuffleConstants.h │ │ │ ├── ShuffleDataSharedMemoryManager.h │ │ │ ├── ShuffleDataSharedMemoryManagerHelper.cc │ │ │ ├── ShuffleDataSharedMemoryManagerHelper.h │ │ │ ├── ShuffleDataSharedMemoryReader.h │ │ │ ├── ShuffleDataSharedMemoryWriter.h │ │ │ ├── ShuffleStoreManager.cc │ │ │ ├── ShuffleStoreManager.h │ │ │ ├── SimpleUtils.h │ │ │ ├── VariableLengthKeyComparator.h │ │ │ ├── barrext │ │ │ ├── HashMapReduceChannelWithByteArrayKeys.cc │ │ │ ├── HashMapReduceChannelWithByteArrayKeys.h │ │ │ ├── MapShuffleStoreWithByteArrayKeys.cc │ │ │ ├── MapShuffleStoreWithByteArrayKeys.h │ │ │ ├── MergeSortKeyPositionTrackerWithByteArrayKeys.h │ │ │ ├── MergeSortReduceChannelWithByteArrayKeys.cc │ │ │ ├── MergeSortReduceChannelWithByteArrayKeys.h │ │ │ ├── PassThroughKeyValueTrackerWithByteArrayKeys.h │ │ │ ├── PassThroughReduceChannelWithByteArrayKeys.cc │ │ │ ├── PassThroughReduceChannelWithByteArrayKeys.h │ │ │ ├── ReduceShuffleStoreWithByteArrayKeys.cc │ │ │ └── ReduceShuffleStoreWithByteArrayKeys.h │ │ │ ├── longext │ │ │ ├── HashMapReduceChannelWithLongKeys.cc │ │ │ ├── HashMapReduceChannelWithLongKeys.h │ │ │ ├── MapShuffleStoreWithLongKeys.cc │ │ │ ├── MapShuffleStoreWithLongKeys.h │ │ │ ├── MergeSortKeyPositionTrackerWithLongKeys.h │ │ │ ├── MergeSortReduceChannelWithLongKeys.cc │ │ │ ├── MergeSortReduceChannelWithLongKeys.h │ │ │ ├── PassThroughKeyValueTrackerWithLongKeys.h │ │ │ ├── PassThroughReduceChannelWithLongKeys.cc │ │ │ ├── PassThroughReduceChannelWithLongKeys.h │ │ │ ├── ReduceShuffleStoreWithLongKeys.cc │ │ │ └── ReduceShuffleStoreWithLongKeys.h │ │ │ └── strext │ │ │ ├── MapShuffleStoreWithStringKeys.cc │ │ │ ├── MapShuffleStoreWithStringKeys.h │ │ │ ├── MergeSortReduceChannelWithStringKeys.cc │ │ │ ├── MergeSortReduceChannelWithStringKeys.h │ │ │ ├── ReduceShuffleStoreWithStringKeys.cc │ │ │ └── ReduceShuffleStoreWithStringKeys.h │ ├── java │ │ └── com │ │ │ └── hp │ │ │ └── hpl │ │ │ └── firesteel │ │ │ ├── offheapstore │ │ │ ├── NativeLibraryLoader.java │ │ │ ├── OffHeapStore.java │ │ │ └── ShmAddress.java │ │ │ └── shuffle │ │ │ ├── MapSHMShuffleStore.java │ │ │ ├── MapShuffleStore.java │ │ │ ├── NativeLibraryLoader.java │ │ │ ├── ReduceSHMShuffleStore.java │ │ │ ├── ReduceShuffleStore.java │ │ │ ├── ShuffleDataModel.java │ │ │ ├── ShuffleResourceTracker.java │ │ │ ├── ShuffleStoreManager.java │ │ │ ├── ShuffleStoreTracker.java │ │ │ ├── ThreadLocalShuffleResourceHolder.java │ │ │ └── simulated │ │ │ ├── SimulatedMapSHMShuffleStore.java │ │ │ ├── SimulatedReduceSHMShuffleStore.java │ │ │ └── SimulatedShuffleStoreManager.java │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ ├── SharedMemoryMapOutputTracker.scala │ │ ├── SharedMemoryMapStatus.scala │ │ └── shuffle │ │ └── shm │ │ ├── AggregatorWithMultiValues.scala │ │ ├── ShmShuffleBlockResolver.scala │ │ ├── ShmShuffleFetcherKeyValueIterator.scala │ │ ├── ShmShuffleFetcherKeyValuesIterator.scala │ │ ├── ShmShuffleManager.scala │ │ ├── ShmShuffleReader.scala │ │ ├── ShmShuffleStoreShuffleFetcher.scala │ │ └── ShmShuffleWriter.scala │ └── test │ ├── cpp │ ├── CMakeLists.txt │ └── shuffle │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── bytebufferpool_unitest.cc │ │ ├── extensiblebytebuffers_unittest.cc │ │ ├── load_ldpath.sh │ │ ├── mapshufflestoremanager_unittest.cc │ │ ├── mergesortchannelwithintkeys_unittest.cc │ │ ├── multipartitionedheap_unititest.cc │ │ ├── shufflestoremanager_unittest.cc │ │ └── shufflestorewithintkeys_unittest.cc │ ├── java │ └── com │ │ └── hp │ │ └── hpl │ │ └── firesteel │ │ └── shuffle │ │ ├── AllTests.java │ │ ├── HashBasedMapSHMShuffleStoreWithIntKeysTest.java │ │ ├── HashBasedMapSHMShuffleStoreWithLongKeysTest.java │ │ ├── HashBasedReduceSHMShuffleStoreWithIntKeysTest.java │ │ ├── HashBasedReduceSHMShuffleStoreWithLongKeysTest.java │ │ ├── KryoserializerTest.java │ │ ├── PassThroughReduceSHMShuffleStoreWithIntKeysTest.java │ │ ├── PassThroughReduceSHMShuffleStoreWithLongKeysTest.java │ │ ├── ShuffleStoreManagerTest.java │ │ ├── ShuffleStoreTrackerTest.java │ │ ├── SortBasedMapSHMShuffleStoreWithByteArrayKeysTest.java │ │ ├── SortBasedMapSHMShuffleStoreWithIntKeysTest.java │ │ ├── SortBasedReduceSHMShuffleStoreWithByteArrayKeysTest.java │ │ ├── SortBasedReduceSHMShuffleStoreWithIntKeysTest.java │ │ └── TestRelatedConstants.java │ ├── resources │ └── log4j.properties │ └── scala │ ├── common │ └── src │ │ ├── main │ │ └── scala │ │ │ └── com │ │ │ └── hp │ │ │ └── hpl │ │ │ └── sparkle │ │ │ └── App.scala │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ ├── LocalSparkContext.scala │ │ ├── SharedSparkContext.scala │ │ └── shuffle │ │ └── shm │ │ └── TestSupportClasses.scala │ ├── groupby │ ├── README │ ├── log4j.properties │ ├── pom.xml │ ├── runtests.sh │ ├── runtests_all.sh │ └── src │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── shuffle │ │ └── shm │ │ └── TestGroupByWithLargeDataSet.scala │ ├── mapoutputtracker │ ├── pom.xml │ ├── runtests.sh │ └── runtests_all.sh │ ├── mapstore │ ├── pom.xml │ ├── runtests.sh │ ├── runtests_all.sh │ └── src │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── shuffle │ │ └── shm │ │ ├── TestMapSHMShuffleStore.scala │ │ ├── TestReduceSHMShuffleStore.scala │ │ └── TestShuffleReaderSuite.scala │ ├── shufflemgr │ ├── pom.xml │ ├── runtests.sh │ ├── runtests_all.sh │ └── src │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── shuffle │ │ └── shm │ │ ├── TestBasicIteratorSuite.scala │ │ ├── TestKryoSerializer.scala │ │ ├── TestShuffleManager.scala │ │ └── TestShuffleSimulatedReaderSuite.scala │ ├── shuffleops │ ├── README │ ├── log4j.properties │ ├── pom.xml │ ├── runtests.sh │ ├── runtests_all.sh │ └── src │ │ └── test │ │ └── scala │ │ └── org │ │ └── apache │ │ └── spark │ │ └── shuffle │ │ └── shm │ │ ├── TestShmShuffleMultiThreadedOperations1.scala │ │ ├── TestShmShuffleMultiThreadedOperations2.scala │ │ ├── TestShmShuffleMultiThreadedOperations3.scala │ │ ├── TestShmShuffleMultiThreadedOperations4.scala │ │ └── TestShmShuffleOperations.scala │ └── sorts │ ├── README │ ├── log4j.properties │ ├── pom.xml │ ├── runtests.sh │ ├── runtests_all.sh │ └── src │ └── test │ └── scala │ └── org │ └── apache │ └── spark │ └── shuffle │ └── shm │ └── TestShmSortOperations.scala ├── tests ├── multinodes │ ├── BeliefPropagation │ │ ├── README.md │ │ ├── edgepartition-2.0.0 │ │ │ ├── build-cpp-withmake.sh │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── cpp │ │ │ │ └── jniedgepartition │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── com_hp_hpl_edgepartition_EdgeMessageComputeAggregate.h │ │ │ │ │ └── jni_EdgeMessageComputeAggregate.cc │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hp │ │ │ │ └── hpl │ │ │ │ └── edgepartition │ │ │ │ ├── EdgeMessageComputeAggregate.java │ │ │ │ └── NativeLibraryLoader.java │ │ ├── offheapstore-bp │ │ │ ├── data │ │ │ │ ├── edge100.txt │ │ │ │ ├── result100.txt │ │ │ │ └── vertex100.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── scala │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── spark │ │ │ │ │ └── offheapstore │ │ │ │ │ ├── examples │ │ │ │ │ └── bp │ │ │ │ │ │ ├── BP_logscale.scala │ │ │ │ │ │ ├── OffHeapStoreBP.scala │ │ │ │ │ │ └── RunBP.scala │ │ │ │ │ └── impl │ │ │ │ │ ├── UnsafeArray.scala │ │ │ │ │ ├── UnsafeArrays.scala │ │ │ │ │ ├── UnsafeDoubleArray.scala │ │ │ │ │ ├── UnsafeIntArray.scala │ │ │ │ │ └── UnsafeLongArray.scala │ │ │ │ └── test │ │ │ │ └── scala │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── spark │ │ │ │ ├── LocalSparkContext.scala │ │ │ │ └── offheapstore │ │ │ │ └── examples │ │ │ │ └── bp │ │ │ │ └── BPTestSuite.scala │ │ └── runOffHeapStoreBP.sh │ ├── GroupBy │ │ ├── README.md │ │ ├── groupby.sbt │ │ ├── launch-groupbyperflong.sh │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ └── SparkGroupByPerformanceTestWithLong.scala │ ├── Join │ │ ├── README.md │ │ ├── join.sbt │ │ ├── launch-joinperflong.sh │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ └── SparkJoinPerformanceTestWithLong.scala │ ├── PageRank │ │ ├── README.md │ │ ├── pagerank.sbt │ │ ├── soc-launch.sh │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ └── SparkPageRank.scala │ ├── PartitionBy │ │ ├── README.md │ │ ├── launch-partitionbyperf.sh │ │ ├── launch-partitionbyperflong.sh │ │ ├── partitionby.sbt │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ ├── SparkPartitionByPerformanceTest.scala │ │ │ └── SparkPartitionByPerformanceTestWithLong.scala │ ├── ReduceBy │ │ ├── README.md │ │ ├── launch-reducebyperflong.sh │ │ ├── reduceby.sbt │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ └── SparkReduceByPerformanceTestWithLong.scala │ ├── SortBy │ │ ├── README.md │ │ ├── launch-sortbyperflong.sh │ │ ├── sample.log │ │ ├── sortby.sbt │ │ └── src │ │ │ └── main │ │ │ └── scala │ │ │ └── org │ │ │ └── apache │ │ │ └── spark │ │ │ └── examples │ │ │ └── SparkSortByPerformanceTestWithLong.scala │ └── TeraSort │ │ ├── README.md │ │ ├── spark-terasort │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── pom.xml │ │ ├── scalastyle-config.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── com │ │ │ │ └── github │ │ │ │ └── ehiggs │ │ │ │ └── spark │ │ │ │ └── terasort │ │ │ │ ├── Random16.java │ │ │ │ └── Unsigned16.java │ │ │ ├── resources │ │ │ ├── parameters.sh │ │ │ └── run.sh │ │ │ └── scala │ │ │ └── com │ │ │ └── github │ │ │ └── ehiggs │ │ │ └── spark │ │ │ └── terasort │ │ │ ├── TeraGen.scala │ │ │ ├── TeraGenSort.scala │ │ │ ├── TeraInputFormat.scala │ │ │ ├── TeraOutputFormat.scala │ │ │ ├── TeraSort.scala │ │ │ ├── TeraSortPartitioner.scala │ │ │ └── TeraValidate.scala │ │ ├── teragen-launch.sh │ │ ├── terasort-launch.sh │ │ └── teravalidate-launch.sh └── units │ ├── javashmshuffle │ └── runtest │ │ ├── README.md │ │ ├── runAllTests.sh │ │ ├── runHashBasedMapShuffleStoreWithIntKeysTest.sh │ │ ├── runHashBasedMapShuffleStoreWithLongKeysTest.sh │ │ ├── runHashBasedReduceShuffleStoreWithIntKeysTest.sh │ │ ├── runHashBasedReduceShuffleStoreWithLongKeysTest.sh │ │ ├── runKryoSerializerTest.sh │ │ ├── runPassThroughReduceShuffleStoreWithIntKeysTest.sh │ │ ├── runPassThroughReduceShuffleStoreWithLongKeysTest.sh │ │ ├── runShmStoreManagerTest.sh │ │ ├── runSortBasedMapShuffleStoreWithByteArrayKeysTest.sh │ │ ├── runSortBasedMapShuffleStoreWithIntKeysTest.sh │ │ ├── runSortBasedReduceShuffleStoreWithByteArrayKeysTest.sh │ │ ├── runSortBasedReduceShuffleStoreWithIntKeysTest.sh │ │ └── runStoreTrackerTest.sh │ └── scalashmshuffle │ └── runtest │ ├── README.md │ ├── runShuffleManagerTest.sh │ ├── runTestMultiThreadedShmShuffleOperations1.sh │ ├── runTestMultiThreadedShmShuffleOperations2.sh │ ├── runTestMultiThreadedShmShuffleOperations3.sh │ ├── runTestMultiThreadedShmShuffleOperations4.sh │ └── runTestShmShuffleOperations.sh └── threading-fixed └── core └── src └── main └── scala └── org └── apache └── spark ├── deploy └── rest │ └── RestSubmissionServer.scala └── ui └── JettyUtils.scala /AUTHORS: -------------------------------------------------------------------------------- 1 | Jun Li 2 | Haris Volos 3 | Mijung Kim 4 | Hernan Laffitte 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/README.md -------------------------------------------------------------------------------- /alps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/CMakeLists.txt -------------------------------------------------------------------------------- /alps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/README.md -------------------------------------------------------------------------------- /alps/alps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/alps.yml -------------------------------------------------------------------------------- /alps/cmake/FindFamAtomic.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/cmake/FindFamAtomic.cmake -------------------------------------------------------------------------------- /alps/cmake/FindMint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/cmake/FindMint.cmake -------------------------------------------------------------------------------- /alps/cmake/FindNuma.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/cmake/FindNuma.cmake -------------------------------------------------------------------------------- /alps/cmake/FindXATTR.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/cmake/FindXATTR.cmake -------------------------------------------------------------------------------- /alps/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /alps/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/Doxyfile -------------------------------------------------------------------------------- /alps/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/README.md -------------------------------------------------------------------------------- /alps/doc/figures/alps-layers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/figures/alps-layers.pdf -------------------------------------------------------------------------------- /alps/doc/figures/alps-layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/figures/alps-layers.png -------------------------------------------------------------------------------- /alps/doc/figures/alps-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/figures/alps-logo.pdf -------------------------------------------------------------------------------- /alps/doc/figures/alps-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/figures/alps-logo.png -------------------------------------------------------------------------------- /alps/doc/figures/globalheap-layout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/doc/figures/globalheap-layout.pdf -------------------------------------------------------------------------------- /alps/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/examples/CMakeLists.txt -------------------------------------------------------------------------------- /alps/examples/globalheap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/examples/globalheap/CMakeLists.txt -------------------------------------------------------------------------------- /alps/examples/globalheap/root.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/examples/globalheap/root.cc -------------------------------------------------------------------------------- /alps/include/alps/common/assert_nd.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/assert_nd.hh -------------------------------------------------------------------------------- /alps/include/alps/common/assorted_func.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/assorted_func.hh -------------------------------------------------------------------------------- /alps/include/alps/common/compiler.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/compiler.hh -------------------------------------------------------------------------------- /alps/include/alps/common/cxx11.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/cxx11.hh -------------------------------------------------------------------------------- /alps/include/alps/common/debug_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/debug_options.hh -------------------------------------------------------------------------------- /alps/include/alps/common/error_code.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/error_code.hh -------------------------------------------------------------------------------- /alps/include/alps/common/error_code.xmacro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/error_code.xmacro -------------------------------------------------------------------------------- /alps/include/alps/common/error_stack.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/error_stack.hh -------------------------------------------------------------------------------- /alps/include/alps/common/externalizable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/common/externalizable.hh -------------------------------------------------------------------------------- /alps/include/alps/error_code.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/error_code.hh -------------------------------------------------------------------------------- /alps/include/alps/globalheap/globalheap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/globalheap/globalheap.hh -------------------------------------------------------------------------------- /alps/include/alps/globalheap/memattrib.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/globalheap/memattrib.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/addr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/addr.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/address_space.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/address_space.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/address_space_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/address_space_options.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/bits/mappable.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/bits/mappable.tcc -------------------------------------------------------------------------------- /alps/include/alps/pegasus/bits/segmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/bits/segmap.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/interleave_group.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/interleave_group.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/lfs_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/lfs_options.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/mappable.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/mappable.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/pegasus.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/pegasus.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/pegasus_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/pegasus_options.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/pointer.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/pointer.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/region.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/region.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/relocatable_region.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/relocatable_region.hh -------------------------------------------------------------------------------- /alps/include/alps/pegasus/tmpfs_options.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/include/alps/pegasus/tmpfs_options.hh -------------------------------------------------------------------------------- /alps/install-dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/install-dep -------------------------------------------------------------------------------- /alps/scripts/debug/analyze_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/debug/analyze_log.py -------------------------------------------------------------------------------- /alps/scripts/deploy/alps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps -------------------------------------------------------------------------------- /alps/scripts/deploy/alps-install-dep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps-install-dep.yml -------------------------------------------------------------------------------- /alps/scripts/deploy/alps-install-root.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps-install-root.yml -------------------------------------------------------------------------------- /alps/scripts/deploy/alps-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps-install.yml -------------------------------------------------------------------------------- /alps/scripts/deploy/alps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps.py -------------------------------------------------------------------------------- /alps/scripts/deploy/alps.yml.template.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/alps.yml.template.j2 -------------------------------------------------------------------------------- /alps/scripts/deploy/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/cheatsheet.md -------------------------------------------------------------------------------- /alps/scripts/deploy/l4tm_book_data.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/l4tm_book_data.ini -------------------------------------------------------------------------------- /alps/scripts/deploy/l4tm_book_data.tmas.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/l4tm_book_data.tmas.ini -------------------------------------------------------------------------------- /alps/scripts/deploy/lfs.tmas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/lfs.tmas.yaml -------------------------------------------------------------------------------- /alps/scripts/deploy/lfs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/deploy/lfs.yaml -------------------------------------------------------------------------------- /alps/scripts/make-distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/README.md -------------------------------------------------------------------------------- /alps/scripts/make-distribution/add_copyright.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/add_copyright.sh -------------------------------------------------------------------------------- /alps/scripts/make-distribution/copyright.c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/copyright.c.txt -------------------------------------------------------------------------------- /alps/scripts/make-distribution/copyright.md.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/copyright.md.txt -------------------------------------------------------------------------------- /alps/scripts/make-distribution/copyright.sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/copyright.sh.txt -------------------------------------------------------------------------------- /alps/scripts/make-distribution/make-distribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/scripts/make-distribution/make-distribution.sh -------------------------------------------------------------------------------- /alps/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/CMakeLists.txt -------------------------------------------------------------------------------- /alps/src/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/CMakeLists.txt -------------------------------------------------------------------------------- /alps/src/common/assert_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/assert_nd.cc -------------------------------------------------------------------------------- /alps/src/common/assorted_func.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/assorted_func.cc -------------------------------------------------------------------------------- /alps/src/common/debug.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/debug.hh -------------------------------------------------------------------------------- /alps/src/common/debug_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/debug_options.cc -------------------------------------------------------------------------------- /alps/src/common/error_stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/error_stack.cc -------------------------------------------------------------------------------- /alps/src/common/externalizable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/externalizable.cc -------------------------------------------------------------------------------- /alps/src/common/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/log.cc -------------------------------------------------------------------------------- /alps/src/common/log.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/log.hh -------------------------------------------------------------------------------- /alps/src/common/os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/os.cc -------------------------------------------------------------------------------- /alps/src/common/os.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/os.hh -------------------------------------------------------------------------------- /alps/src/common/rich_backtrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/rich_backtrace.cc -------------------------------------------------------------------------------- /alps/src/common/rich_backtrace.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/common/rich_backtrace.hh -------------------------------------------------------------------------------- /alps/src/globalheap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/CMakeLists.txt -------------------------------------------------------------------------------- /alps/src/globalheap/attrib.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/attrib.hh -------------------------------------------------------------------------------- /alps/src/globalheap/bitmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/bitmap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/extent.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/extent.hh -------------------------------------------------------------------------------- /alps/src/globalheap/extentheap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/extentheap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/extentheap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/extentheap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/extentmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/extentmap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/extentmap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/extentmap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/freespacemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/freespacemap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/freespacemap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/freespacemap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/globalheap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/globalheap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/globalheap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/globalheap.md -------------------------------------------------------------------------------- /alps/src/globalheap/globalheap_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/globalheap_internal.cc -------------------------------------------------------------------------------- /alps/src/globalheap/globalheap_internal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/globalheap_internal.hh -------------------------------------------------------------------------------- /alps/src/globalheap/helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/helper.cc -------------------------------------------------------------------------------- /alps/src/globalheap/helper.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/helper.hh -------------------------------------------------------------------------------- /alps/src/globalheap/layout.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/layout.hh -------------------------------------------------------------------------------- /alps/src/globalheap/lease.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/lease.cc -------------------------------------------------------------------------------- /alps/src/globalheap/lease.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/lease.hh -------------------------------------------------------------------------------- /alps/src/globalheap/memattrib_alloc.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/memattrib_alloc.hh -------------------------------------------------------------------------------- /alps/src/globalheap/memattrib_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/memattrib_heap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/memattrib_heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/memattrib_heap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/mk_size_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/mk_size_class.py -------------------------------------------------------------------------------- /alps/src/globalheap/multiextentheap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/multiextentheap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/multiextentheap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/multiextentheap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/nvslab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/nvslab.hh -------------------------------------------------------------------------------- /alps/src/globalheap/persist.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/persist.hh -------------------------------------------------------------------------------- /alps/src/globalheap/process_slab_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/process_slab_heap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/process_slab_heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/process_slab_heap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/rwlock.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/rwlock.hh -------------------------------------------------------------------------------- /alps/src/globalheap/size_class.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/size_class.cc -------------------------------------------------------------------------------- /alps/src/globalheap/size_class.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/size_class.hh -------------------------------------------------------------------------------- /alps/src/globalheap/slab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/slab.cc -------------------------------------------------------------------------------- /alps/src/globalheap/slab.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/slab.hh -------------------------------------------------------------------------------- /alps/src/globalheap/slab_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/slab_heap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/slab_heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/slab_heap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/thread_slab_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/thread_slab_heap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/thread_slab_heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/thread_slab_heap.hh -------------------------------------------------------------------------------- /alps/src/globalheap/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/util.cc -------------------------------------------------------------------------------- /alps/src/globalheap/zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/zone.cc -------------------------------------------------------------------------------- /alps/src/globalheap/zone.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/zone.hh -------------------------------------------------------------------------------- /alps/src/globalheap/zone_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/zone_heap.cc -------------------------------------------------------------------------------- /alps/src/globalheap/zone_heap.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/globalheap/zone_heap.hh -------------------------------------------------------------------------------- /alps/src/mainpage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/mainpage.md -------------------------------------------------------------------------------- /alps/src/pegasus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/CMakeLists.txt -------------------------------------------------------------------------------- /alps/src/pegasus/address_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/address_space.cc -------------------------------------------------------------------------------- /alps/src/pegasus/address_space_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/address_space_options.cc -------------------------------------------------------------------------------- /alps/src/pegasus/fstype_factory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/fstype_factory.hh -------------------------------------------------------------------------------- /alps/src/pegasus/fstype_factory.tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/fstype_factory.tcc -------------------------------------------------------------------------------- /alps/src/pegasus/helper_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/helper_functions.cc -------------------------------------------------------------------------------- /alps/src/pegasus/helper_functions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/helper_functions.hh -------------------------------------------------------------------------------- /alps/src/pegasus/invtbl.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/invtbl.hh -------------------------------------------------------------------------------- /alps/src/pegasus/lfs_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/lfs_options.cc -------------------------------------------------------------------------------- /alps/src/pegasus/lfs_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/lfs_region_file.cc -------------------------------------------------------------------------------- /alps/src/pegasus/lfs_region_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/lfs_region_file.hh -------------------------------------------------------------------------------- /alps/src/pegasus/lfs_topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/lfs_topology.cc -------------------------------------------------------------------------------- /alps/src/pegasus/lfs_topology.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/lfs_topology.hh -------------------------------------------------------------------------------- /alps/src/pegasus/mm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/mm.cc -------------------------------------------------------------------------------- /alps/src/pegasus/mm.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/mm.hh -------------------------------------------------------------------------------- /alps/src/pegasus/multi_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/multi_region_file.cc -------------------------------------------------------------------------------- /alps/src/pegasus/multi_region_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/multi_region_file.hh -------------------------------------------------------------------------------- /alps/src/pegasus/pegasthread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/pegasthread.cc -------------------------------------------------------------------------------- /alps/src/pegasus/pegasthread.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/pegasthread.hh -------------------------------------------------------------------------------- /alps/src/pegasus/pegasus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/pegasus.cc -------------------------------------------------------------------------------- /alps/src/pegasus/pegasus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/pegasus.md -------------------------------------------------------------------------------- /alps/src/pegasus/pegasus_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/pegasus_options.cc -------------------------------------------------------------------------------- /alps/src/pegasus/region.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/region.cc -------------------------------------------------------------------------------- /alps/src/pegasus/region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/region_file.cc -------------------------------------------------------------------------------- /alps/src/pegasus/region_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/region_file.hh -------------------------------------------------------------------------------- /alps/src/pegasus/region_file_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/region_file_factory.cc -------------------------------------------------------------------------------- /alps/src/pegasus/region_file_factory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/region_file_factory.hh -------------------------------------------------------------------------------- /alps/src/pegasus/rvma_region_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/rvma_region_file.hh -------------------------------------------------------------------------------- /alps/src/pegasus/segmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/segmap.cc -------------------------------------------------------------------------------- /alps/src/pegasus/tmpfs_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/tmpfs_options.cc -------------------------------------------------------------------------------- /alps/src/pegasus/tmpfs_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/tmpfs_region_file.cc -------------------------------------------------------------------------------- /alps/src/pegasus/tmpfs_region_file.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/tmpfs_region_file.hh -------------------------------------------------------------------------------- /alps/src/pegasus/tmpfs_topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/tmpfs_topology.cc -------------------------------------------------------------------------------- /alps/src/pegasus/tmpfs_topology.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/tmpfs_topology.hh -------------------------------------------------------------------------------- /alps/src/pegasus/topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/topology.cc -------------------------------------------------------------------------------- /alps/src/pegasus/topology.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/topology.hh -------------------------------------------------------------------------------- /alps/src/pegasus/topology_factory.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/topology_factory.hh -------------------------------------------------------------------------------- /alps/src/pegasus/vmarea.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/src/pegasus/vmarea.hh -------------------------------------------------------------------------------- /alps/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/integration/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/integration/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/roles.yml -------------------------------------------------------------------------------- /alps/test/integration/test_atomic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_atomic.cc -------------------------------------------------------------------------------- /alps/test/integration/test_atomic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_atomic.yml -------------------------------------------------------------------------------- /alps/test/integration/test_integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_integration.yml -------------------------------------------------------------------------------- /alps/test/integration/test_pegas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_pegas.cc -------------------------------------------------------------------------------- /alps/test/integration/test_pegas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_pegas.yml -------------------------------------------------------------------------------- /alps/test/integration/test_pointer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_pointer.cc -------------------------------------------------------------------------------- /alps/test/integration/test_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_pointer.yml -------------------------------------------------------------------------------- /alps/test/integration/test_suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_suite.yml -------------------------------------------------------------------------------- /alps/test/integration/test_topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_topology.cc -------------------------------------------------------------------------------- /alps/test/integration/test_topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/integration/test_topology.yml -------------------------------------------------------------------------------- /alps/test/test_common.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/test_common.hh -------------------------------------------------------------------------------- /alps/test/unit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/unit/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/common/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/unit/common/test_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/common/test_options.cc -------------------------------------------------------------------------------- /alps/test/unit/common/test_os.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/common/test_os.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_bitmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_bitmap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_extent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_extent.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_extentheap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_extentheap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_extentmap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_extentmap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_freespacemap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_freespacemap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_globalheap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_globalheap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_heap_fixture.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_heap_fixture.hh -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_memattrib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_memattrib.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_root.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_root.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_slab.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_slab.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_slab_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_slab_heap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_stress.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_stress.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_thread_slab_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_thread_slab_heap.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_zone.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_zone.cc -------------------------------------------------------------------------------- /alps/test/unit/globalheap/test_zone_heap.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/globalheap/test_zone_heap.cc -------------------------------------------------------------------------------- /alps/test/unit/helper_functions.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/helper_functions.hh -------------------------------------------------------------------------------- /alps/test/unit/l4tm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/l4tm/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/unit/l4tm/test_l4tm_lfs_alloc_policy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/l4tm/test_l4tm_lfs_alloc_policy.cc -------------------------------------------------------------------------------- /alps/test/unit/l4tm/test_l4tm_lfs_map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/l4tm/test_l4tm_lfs_map.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/CMakeLists.txt -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_inverted_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_inverted_table.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_multi_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_multi_region_file.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_pegas.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_pegas.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_pointer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_pointer.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_region_file.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_tmpfs_region_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_tmpfs_region_file.cc -------------------------------------------------------------------------------- /alps/test/unit/pegasus/test_topology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/pegasus/test_topology.cc -------------------------------------------------------------------------------- /alps/test/unit/test_unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/unit/test_unit.yml -------------------------------------------------------------------------------- /alps/test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/test/util.cc -------------------------------------------------------------------------------- /alps/third-party/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/.gitattributes -------------------------------------------------------------------------------- /alps/third-party/gflags/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/.gitignore -------------------------------------------------------------------------------- /alps/third-party/gflags/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/AUTHORS.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/COPYING.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/ChangeLog.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/INSTALL.md -------------------------------------------------------------------------------- /alps/third-party/gflags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/README.md -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/README_runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/README_runtime.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/config.cmake.in -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/execute_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/execute_test.cmake -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/package.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/package.cmake.in -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/utils.cmake -------------------------------------------------------------------------------- /alps/third-party/gflags/cmake/version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/cmake/version.cmake.in -------------------------------------------------------------------------------- /alps/third-party/gflags/doc/designstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/doc/designstyle.css -------------------------------------------------------------------------------- /alps/third-party/gflags/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/doc/index.html -------------------------------------------------------------------------------- /alps/third-party/gflags/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/config.h.in -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags.h.in -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_completions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_completions.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_completions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_completions.h.in -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_completions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_completions.sh -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_declare.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_declare.h.in -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_ns.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_ns.h.in -------------------------------------------------------------------------------- /alps/third-party/gflags/src/gflags_reporting.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/gflags_reporting.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/src/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/mutex.h -------------------------------------------------------------------------------- /alps/third-party/gflags/src/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/util.h -------------------------------------------------------------------------------- /alps/third-party/gflags/src/windows_port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/windows_port.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/src/windows_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/src/windows_port.h -------------------------------------------------------------------------------- /alps/third-party/gflags/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/test/config_for_unittests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/config_for_unittests.h -------------------------------------------------------------------------------- /alps/third-party/gflags/test/flagfile.1: -------------------------------------------------------------------------------- 1 | --version -------------------------------------------------------------------------------- /alps/third-party/gflags/test/flagfile.2: -------------------------------------------------------------------------------- 1 | --foo=bar 2 | --nounused_bool -------------------------------------------------------------------------------- /alps/third-party/gflags/test/flagfile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/flagfile.3 -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_declare_flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_declare_flags.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_declare_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_declare_test.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_nc.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_nc.py.in -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_strip_flags_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_strip_flags_test.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_strip_flags_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_strip_flags_test.cmake -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gflags/test/gflags_unittest_flagfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/gflags_unittest_flagfile -------------------------------------------------------------------------------- /alps/third-party/gflags/test/nc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/nc/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/gflags/test/nc/gflags_nc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gflags/test/nc/gflags_nc.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/CHANGES -------------------------------------------------------------------------------- /alps/third-party/gtest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /alps/third-party/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/LICENSE -------------------------------------------------------------------------------- /alps/third-party/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/Makefile.am -------------------------------------------------------------------------------- /alps/third-party/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/Makefile.in -------------------------------------------------------------------------------- /alps/third-party/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/README -------------------------------------------------------------------------------- /alps/third-party/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/aclocal.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/config.guess -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/config.h.in -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/config.sub -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/depcomp -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/install-sh -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/ltmain.sh -------------------------------------------------------------------------------- /alps/third-party/gtest/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/build-aux/missing -------------------------------------------------------------------------------- /alps/third-party/gtest/cmake/internal_utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/cmake/internal_utils.cmake -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest.cbproj -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest.groupproj -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest_all.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest_link.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest_link.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest_main.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest_main.cbproj -------------------------------------------------------------------------------- /alps/third-party/gtest/codegear/gtest_unittest.cbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/codegear/gtest_unittest.cbproj -------------------------------------------------------------------------------- /alps/third-party/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/configure -------------------------------------------------------------------------------- /alps/third-party/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/configure.ac -------------------------------------------------------------------------------- /alps/third-party/gtest/fused-src/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/fused-src/gtest/gtest-all.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/fused-src/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/fused-src/gtest/gtest.h -------------------------------------------------------------------------------- /alps/third-party/gtest/fused-src/gtest/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/fused-src/gtest/gtest_main.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /alps/third-party/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/acx_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/acx_pthread.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/gtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/gtest.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/libtool.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/ltoptions.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/ltsugar.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/ltversion.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /alps/third-party/gtest/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/make/Makefile -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest-md.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest-md.sln -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest-md.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest.sln -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_main-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_main-md.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_main.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_main.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_prod_test-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_prod_test-md.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_prod_test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_prod_test.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_unittest-md.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_unittest-md.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/msvc/gtest_unittest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/msvc/gtest_unittest.vcproj -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/prime_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/prime_tables.h -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample1.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample1.h -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample10_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample10_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample1_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample1_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample2.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample2.h -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample2_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample2_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample3-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample3-inl.h -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample3_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample3_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample4.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample4.h -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample4_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample4_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample5_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample5_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample6_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample6_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample7_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample7_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample8_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample8_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/samples/sample9_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/samples/sample9_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/scripts/fuse_gtest_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/scripts/fuse_gtest_files.py -------------------------------------------------------------------------------- /alps/third-party/gtest/scripts/gen_gtest_pred_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/scripts/gen_gtest_pred_impl.py -------------------------------------------------------------------------------- /alps/third-party/gtest/scripts/gtest-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/scripts/gtest-config.in -------------------------------------------------------------------------------- /alps/third-party/gtest/scripts/pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/scripts/pump.py -------------------------------------------------------------------------------- /alps/third-party/gtest/scripts/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/scripts/test/Makefile -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-death-test_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-death-test_ex_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-death-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-death-test_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-filepath_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-filepath_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-linked_ptr_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-linked_ptr_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-listener_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-listener_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-message_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-message_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-options_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-options_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-param-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-param-test2_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-param-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-param-test_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-param-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-param-test_test.h -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-port_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-port_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-printers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-printers_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-test-part_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-test-part_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-tuple_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-tuple_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-typed-test2_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-typed-test2_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-typed-test_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-typed-test_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-typed-test_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-typed-test_test.h -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest-unittest-api_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest-unittest-api_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_all_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_all_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_break_on_failure_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_break_on_failure_unittest.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_break_on_failure_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_break_on_failure_unittest_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_catch_exceptions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_catch_exceptions_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_catch_exceptions_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_catch_exceptions_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_color_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_color_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_color_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_color_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_env_var_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_env_var_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_env_var_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_env_var_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_environment_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_environment_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_filter_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_filter_unittest.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_filter_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_filter_unittest_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_help_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_help_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_help_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_help_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_list_tests_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_list_tests_unittest.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_list_tests_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_list_tests_unittest_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_main_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_main_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_no_test_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_no_test_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_output_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_output_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_output_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_output_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_output_test_golden_lin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_output_test_golden_lin.txt -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_pred_impl_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_pred_impl_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_premature_exit_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_premature_exit_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_prod_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_prod_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_repeat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_repeat_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_shuffle_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_shuffle_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_shuffle_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_shuffle_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_sole_header_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_sole_header_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_stress_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_stress_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_test_utils.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_throw_on_failure_ex_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_throw_on_failure_ex_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_throw_on_failure_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_throw_on_failure_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_throw_on_failure_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_throw_on_failure_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_uninitialized_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_uninitialized_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_uninitialized_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_uninitialized_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_unittest.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_outfile1_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_outfile1_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_outfile2_test_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_outfile2_test_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_outfiles_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_outfiles_test.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_output_unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_output_unittest.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_output_unittest_.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_output_unittest_.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/gtest_xml_test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/gtest_xml_test_utils.py -------------------------------------------------------------------------------- /alps/third-party/gtest/test/production.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/production.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/test/production.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/test/production.h -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/DebugProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/DebugProject.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/FrameworkTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/FrameworkTarget.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/General.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/General.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/ReleaseProject.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/ReleaseProject.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/StaticLibraryTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/StaticLibraryTarget.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Config/TestTarget.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Config/TestTarget.xcconfig -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Resources/Info.plist -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Samples/FrameworkSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Samples/FrameworkSample/Info.plist -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Samples/FrameworkSample/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Samples/FrameworkSample/runtests.sh -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Samples/FrameworkSample/widget.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Samples/FrameworkSample/widget.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Samples/FrameworkSample/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Samples/FrameworkSample/widget.h -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Samples/FrameworkSample/widget_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Samples/FrameworkSample/widget_test.cc -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Scripts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Scripts/runtests.sh -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/Scripts/versiongenerate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/Scripts/versiongenerate.py -------------------------------------------------------------------------------- /alps/third-party/gtest/xcode/gtest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/gtest/xcode/gtest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/.gitignore: -------------------------------------------------------------------------------- 1 | backtrace-supported.h 2 | config.h 3 | -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/ChangeLog -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/README -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/alloc.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/atomic.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/auxincl/dwarf2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/auxincl/dwarf2.h -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/auxincl/filenames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/auxincl/filenames.h -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/backtrace-supported.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/backtrace-supported.h.in -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/backtrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/backtrace.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/backtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/backtrace.h -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/btest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/btest.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/config.h.in.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/config.h.in.cmake -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/dwarf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/dwarf.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/elf.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/fileline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/fileline.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/internal.h -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/mmap.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/mmapio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/mmapio.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/nounwind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/nounwind.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/posix.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/print.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/read.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/simple.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/sort.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/state.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/stest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/stest.c -------------------------------------------------------------------------------- /alps/third-party/libbacktrace/unknown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/libbacktrace/unknown.c -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/.clang-format -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/.hgeol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/.hgeol -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/anchor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/anchor.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/binary.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/dll.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitfromevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitfromevents.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitter.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitterdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitterdef.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emittermanip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emittermanip.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitterstyle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/emitterstyle.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/eventhandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/eventhandler.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/exceptions.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/mark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/mark.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/convert.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/detail/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/detail/impl.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/detail/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/detail/node.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/emit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/emit.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/impl.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/iterator.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/node.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/parse.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/ptr.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/node/type.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/noncopyable.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/null.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/null.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/ostream_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/ostream_wrapper.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/parser.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/stlemitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/stlemitter.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/traits.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/include/yaml-cpp/yaml.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/install.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/license.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/binary.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/collectionstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/collectionstack.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilder.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilderadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilderadapter.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilderadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/contrib/graphbuilderadapter.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/convert.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/directives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/directives.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/directives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/directives.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emit.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitfromevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitfromevents.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitter.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitterstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitterstate.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitterstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitterstate.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitterutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitterutils.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/emitterutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/emitterutils.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/exp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/exp.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/exp.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/indentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/indentation.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/memory.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/node.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/node_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/node_data.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/nodebuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/nodebuilder.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/nodebuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/nodebuilder.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/nodeevents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/nodeevents.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/nodeevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/nodeevents.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/null.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/ostream_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/ostream_wrapper.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/parse.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/parser.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/ptr_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/ptr_stack.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/ptr_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/ptr_vector.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/regex_yaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/regex_yaml.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/regex_yaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/regex_yaml.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/regeximpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/regeximpl.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scanner.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scanner.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scanscalar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scanscalar.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scanscalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scanscalar.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scantag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scantag.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scantag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scantag.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/scantoken.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/scantoken.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/setting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/setting.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/simplekey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/simplekey.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/singledocparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/singledocparser.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/singledocparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/singledocparser.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/stream.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/stream.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/streamcharsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/streamcharsource.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/stringsource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/stringsource.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/tag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/tag.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/tag.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/src/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/src/token.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/create-emitter-tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/create-emitter-tests.py -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CHANGES -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/CONTRIBUTORS -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/LICENSE -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/Makefile.am -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/Makefile.in -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/README -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/aclocal.m4 -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/build-aux/depcomp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/build-aux/missing -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/configure -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/configure.ac -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/CHANGES -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/CONTRIBUTORS -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/LICENSE -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/Makefile.am -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/Makefile.in -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/README -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/aclocal.m4 -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/configure -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/gtest/configure.ac -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/make/Makefile -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/scripts/generator/cpp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/src/gmock-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/src/gmock-all.cc -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/src/gmock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/gmock-1.7.0/src/gmock.cc -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/handler_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/handler_test.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/integration/emitter_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/integration/emitter_test.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/integration/handler_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/integration/handler_test.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/main.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/mock_event_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/mock_event_handler.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/node/node_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/node/node_test.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/ostream_wrapper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/ostream_wrapper_test.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/test/specexamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/test/specexamples.h -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/util/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/util/CMakeLists.txt -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/util/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/util/api.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/util/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/util/parse.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/util/read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/util/read.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/util/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/util/sandbox.cpp -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/yaml-cpp-config-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/yaml-cpp-config-version.cmake.in -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/yaml-cpp-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/yaml-cpp-config.cmake.in -------------------------------------------------------------------------------- /alps/third-party/yaml-cpp-0.5.2/yaml-cpp.pc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/alps/third-party/yaml-cpp-0.5.2/yaml-cpp.pc.cmake -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/dependent-modules/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/README.txt -------------------------------------------------------------------------------- /deploy/dependent-modules/install-boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/install-boost.sh -------------------------------------------------------------------------------- /deploy/dependent-modules/install-pre-reqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/install-pre-reqs.sh -------------------------------------------------------------------------------- /deploy/dependent-modules/prereqs-install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/prereqs-install.yml -------------------------------------------------------------------------------- /deploy/dependent-modules/spark-inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/spark-inventory.yml -------------------------------------------------------------------------------- /deploy/dependent-modules/spark-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/dependent-modules/spark-vars.yml -------------------------------------------------------------------------------- /deploy/examples/spark-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/examples/spark-defaults.conf -------------------------------------------------------------------------------- /deploy/examples/spark-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/examples/spark-env.sh -------------------------------------------------------------------------------- /deploy/maven-install-spark-core-1.2.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/maven-install-spark-core-1.2.0.sh -------------------------------------------------------------------------------- /deploy/maven-install-spark-core-2.0.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/maven-install-spark-core-2.0.0.sh -------------------------------------------------------------------------------- /deploy/multi-copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/multi-copy.sh -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/alps-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/alps-config.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/ansible-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/ansible-test.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/install-spark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/install-spark.sh -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/inventory.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/inventory.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/multi-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/multi-core.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/pre-reqs-apt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/pre-reqs-apt.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/pre-reqs-yum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/pre-reqs-yum.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/root-dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/root-dir.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/run.sh -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/setup-alps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/setup-alps.sh -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/unpack_node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/unpack_node.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/unpack_worker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/unpack_worker.yml -------------------------------------------------------------------------------- /deploy/virtualnode/playbooks/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/playbooks/variables.yml -------------------------------------------------------------------------------- /deploy/virtualnode/scripts/workers-per-socket.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/scripts/workers-per-socket.pl -------------------------------------------------------------------------------- /deploy/virtualnode/templates/examples/test-pi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/examples/test-pi.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/conf/OLD_log4j.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/conf/OLD_log4j.props -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/conf/log4j.properties -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/conf/slaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/conf/slaves -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/conf/spark-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/conf/spark-defaults.conf -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/conf/spark-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/conf/spark-env.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/master/sbin/spark-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/master/sbin/spark-daemon.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/clean-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/clean-up.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/create_filesystems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/create_filesystems.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/delete_filesystems.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/delete_filesystems.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/killJava.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | kill $( jps | awk '/Master|Worker/ { print $1}' ) 4 | 5 | 6 | -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/start-one.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/start-one.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/start-spark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/start-spark.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/scripts/start-two.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/scripts/start-two.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/spark/spark-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/spark/spark-defaults.conf -------------------------------------------------------------------------------- /deploy/virtualnode/templates/spark/spark-env.sh: -------------------------------------------------------------------------------- 1 | 2 | ##HADOOP_CONF_DIR={{spark_home_dir}}/conf 3 | 4 | -------------------------------------------------------------------------------- /deploy/virtualnode/templates/worker0/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/worker0/conf/log4j.properties -------------------------------------------------------------------------------- /deploy/virtualnode/templates/worker0/conf/slaves: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/virtualnode/templates/worker0/conf/spark-defaults.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/worker0/conf/spark-defaults.conf -------------------------------------------------------------------------------- /deploy/virtualnode/templates/worker0/conf/spark-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/worker0/conf/spark-env.sh -------------------------------------------------------------------------------- /deploy/virtualnode/templates/worker0/sbin/spark-daemon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/deploy/virtualnode/templates/worker0/sbin/spark-daemon.sh -------------------------------------------------------------------------------- /docs/exampleapps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/docs/exampleapps.pdf -------------------------------------------------------------------------------- /docs/httpserver-fix.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/docs/httpserver-fix.pdf -------------------------------------------------------------------------------- /docs/userguide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/docs/userguide.pdf -------------------------------------------------------------------------------- /firesteel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/build-cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/build-cpp.sh -------------------------------------------------------------------------------- /firesteel/cmake/Findalps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/cmake/Findalps.cmake -------------------------------------------------------------------------------- /firesteel/cmake/Findgtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/cmake/Findgtest.cmake -------------------------------------------------------------------------------- /firesteel/cmake/Findjni.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/cmake/Findjni.cmake -------------------------------------------------------------------------------- /firesteel/cmake/Findtbb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/cmake/Findtbb.cmake -------------------------------------------------------------------------------- /firesteel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/pom.xml -------------------------------------------------------------------------------- /firesteel/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/README.md -------------------------------------------------------------------------------- /firesteel/src/main/cpp/combinedoffheapstore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/combinedoffheapstore/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/combinedoffheapstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/combinedoffheapstore/Makefile -------------------------------------------------------------------------------- /firesteel/src/main/cpp/combinedshuffle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/combinedshuffle/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/combinedshuffle/version.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/combinedshuffle/version.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/combinedshuffle/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/combinedshuffle/version.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnioffheapstore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnioffheapstore/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnioffheapstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnioffheapstore/Makefile -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnioffheapstore/OffHeapStoreInf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnioffheapstore/OffHeapStoreInf.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnishuffle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnishuffle/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnishuffle/shuffle_MapSHMShuffleStore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnishuffle/shuffle_MapSHMShuffleStore.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/jnishuffle/shuffle_ShuffleStoreManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/jnishuffle/shuffle_ShuffleStoreManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/AttributeHashTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/AttributeHashTable.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/AttributeHashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/AttributeHashTable.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/Makefile -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/OffHeapStoreConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/OffHeapStoreConstants.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/OffHeapStoreManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/OffHeapStoreManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/OffHeapStoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/OffHeapStoreManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/offheapstore/ShmAddress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/offheapstore/ShmAddress.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shmmanagement/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shmmanagement/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shmmanagement/SharedMemoryAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shmmanagement/SharedMemoryAllocator.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shmmanagement/SharedMemoryManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shmmanagement/SharedMemoryManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shmmanagement/SharedMemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shmmanagement/SharedMemoryManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ArrayBufferPool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ArrayBufferPool.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ArrayBufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ArrayBufferPool.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ByteBufferHolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ByteBufferHolder.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ByteBufferPool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ByteBufferPool.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ByteBufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ByteBufferPool.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/EnumKvTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/EnumKvTypes.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ExtensibleByteBuffers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ExtensibleByteBuffers.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ExtensibleByteBuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ExtensibleByteBuffers.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/GenericMapShuffleStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/GenericMapShuffleStore.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/GenericReduceChannel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/GenericReduceChannel.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/GenericReduceChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/GenericReduceChannel.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/GenericReduceShuffleStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/GenericReduceShuffleStore.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/HashMapKeyPositionTracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/HashMapKeyPositionTracker.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/HashMapKeyPositionTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/HashMapKeyPositionTracker.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/HashMapReduceChannelWithIntKeys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/HashMapReduceChannelWithIntKeys.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/HashMapReduceChannelWithIntKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/HashMapReduceChannelWithIntKeys.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MapShuffleStoreManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MapShuffleStoreManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MapShuffleStoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MapShuffleStoreManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MapShuffleStoreWithIntKeys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MapShuffleStoreWithIntKeys.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MapShuffleStoreWithIntKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MapShuffleStoreWithIntKeys.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MapStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MapStatus.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MergeSortChannelHelper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MergeSortChannelHelper.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/MergeSortChannelHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/MergeSortChannelHelper.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ReduceShuffleStoreManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ReduceShuffleStoreManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ReduceShuffleStoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ReduceShuffleStoreManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ReduceShuffleStoreWithIntKeys.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ReduceShuffleStoreWithIntKeys.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ReduceShuffleStoreWithIntKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ReduceShuffleStoreWithIntKeys.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleConstants.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryReader.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleDataSharedMemoryWriter.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleStoreManager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleStoreManager.cc -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/ShuffleStoreManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/ShuffleStoreManager.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/SimpleUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/SimpleUtils.h -------------------------------------------------------------------------------- /firesteel/src/main/cpp/shuffle/VariableLengthKeyComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/main/cpp/shuffle/VariableLengthKeyComparator.h -------------------------------------------------------------------------------- /firesteel/src/test/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/CMakeLists.txt -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/README -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/bytebufferpool_unitest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/bytebufferpool_unitest.cc -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/extensiblebytebuffers_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/extensiblebytebuffers_unittest.cc -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/load_ldpath.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/load_ldpath.sh -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/mapshufflestoremanager_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/mapshufflestoremanager_unittest.cc -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/multipartitionedheap_unititest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/multipartitionedheap_unititest.cc -------------------------------------------------------------------------------- /firesteel/src/test/cpp/shuffle/shufflestoremanager_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/cpp/shuffle/shufflestoremanager_unittest.cc -------------------------------------------------------------------------------- /firesteel/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /firesteel/src/test/scala/groupby/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/groupby/README -------------------------------------------------------------------------------- /firesteel/src/test/scala/groupby/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/groupby/log4j.properties -------------------------------------------------------------------------------- /firesteel/src/test/scala/groupby/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/groupby/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/groupby/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/groupby/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/groupby/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/groupby/runtests_all.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapoutputtracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapoutputtracker/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapoutputtracker/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapoutputtracker/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapoutputtracker/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapoutputtracker/runtests_all.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapstore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapstore/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapstore/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapstore/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/mapstore/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/mapstore/runtests_all.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/shufflemgr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shufflemgr/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/shufflemgr/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shufflemgr/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/shufflemgr/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shufflemgr/runtests_all.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/shuffleops/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shuffleops/README -------------------------------------------------------------------------------- /firesteel/src/test/scala/shuffleops/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shuffleops/log4j.properties -------------------------------------------------------------------------------- /firesteel/src/test/scala/shuffleops/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shuffleops/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/shuffleops/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shuffleops/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/shuffleops/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/shuffleops/runtests_all.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/sorts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/sorts/README -------------------------------------------------------------------------------- /firesteel/src/test/scala/sorts/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/sorts/log4j.properties -------------------------------------------------------------------------------- /firesteel/src/test/scala/sorts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/sorts/pom.xml -------------------------------------------------------------------------------- /firesteel/src/test/scala/sorts/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/sorts/runtests.sh -------------------------------------------------------------------------------- /firesteel/src/test/scala/sorts/runtests_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/firesteel/src/test/scala/sorts/runtests_all.sh -------------------------------------------------------------------------------- /tests/multinodes/BeliefPropagation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/BeliefPropagation/README.md -------------------------------------------------------------------------------- /tests/multinodes/BeliefPropagation/edgepartition-2.0.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/BeliefPropagation/edgepartition-2.0.0/pom.xml -------------------------------------------------------------------------------- /tests/multinodes/BeliefPropagation/offheapstore-bp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/BeliefPropagation/offheapstore-bp/pom.xml -------------------------------------------------------------------------------- /tests/multinodes/BeliefPropagation/runOffHeapStoreBP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/BeliefPropagation/runOffHeapStoreBP.sh -------------------------------------------------------------------------------- /tests/multinodes/GroupBy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/GroupBy/README.md -------------------------------------------------------------------------------- /tests/multinodes/GroupBy/groupby.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/GroupBy/groupby.sbt -------------------------------------------------------------------------------- /tests/multinodes/GroupBy/launch-groupbyperflong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/GroupBy/launch-groupbyperflong.sh -------------------------------------------------------------------------------- /tests/multinodes/Join/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/Join/README.md -------------------------------------------------------------------------------- /tests/multinodes/Join/join.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/Join/join.sbt -------------------------------------------------------------------------------- /tests/multinodes/Join/launch-joinperflong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/Join/launch-joinperflong.sh -------------------------------------------------------------------------------- /tests/multinodes/PageRank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PageRank/README.md -------------------------------------------------------------------------------- /tests/multinodes/PageRank/pagerank.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PageRank/pagerank.sbt -------------------------------------------------------------------------------- /tests/multinodes/PageRank/soc-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PageRank/soc-launch.sh -------------------------------------------------------------------------------- /tests/multinodes/PartitionBy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PartitionBy/README.md -------------------------------------------------------------------------------- /tests/multinodes/PartitionBy/launch-partitionbyperf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PartitionBy/launch-partitionbyperf.sh -------------------------------------------------------------------------------- /tests/multinodes/PartitionBy/launch-partitionbyperflong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PartitionBy/launch-partitionbyperflong.sh -------------------------------------------------------------------------------- /tests/multinodes/PartitionBy/partitionby.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/PartitionBy/partitionby.sbt -------------------------------------------------------------------------------- /tests/multinodes/ReduceBy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/ReduceBy/README.md -------------------------------------------------------------------------------- /tests/multinodes/ReduceBy/launch-reducebyperflong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/ReduceBy/launch-reducebyperflong.sh -------------------------------------------------------------------------------- /tests/multinodes/ReduceBy/reduceby.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/ReduceBy/reduceby.sbt -------------------------------------------------------------------------------- /tests/multinodes/SortBy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/SortBy/README.md -------------------------------------------------------------------------------- /tests/multinodes/SortBy/launch-sortbyperflong.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/SortBy/launch-sortbyperflong.sh -------------------------------------------------------------------------------- /tests/multinodes/SortBy/sample.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/multinodes/SortBy/sortby.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/SortBy/sortby.sbt -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/README.md -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/spark-terasort/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/spark-terasort/AUTHORS -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/spark-terasort/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/spark-terasort/LICENSE -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/spark-terasort/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/spark-terasort/README.md -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/spark-terasort/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/spark-terasort/pom.xml -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/spark-terasort/scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/spark-terasort/scalastyle-config.xml -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/teragen-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/teragen-launch.sh -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/terasort-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/terasort-launch.sh -------------------------------------------------------------------------------- /tests/multinodes/TeraSort/teravalidate-launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/multinodes/TeraSort/teravalidate-launch.sh -------------------------------------------------------------------------------- /tests/units/javashmshuffle/runtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/javashmshuffle/runtest/README.md -------------------------------------------------------------------------------- /tests/units/javashmshuffle/runtest/runAllTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/javashmshuffle/runtest/runAllTests.sh -------------------------------------------------------------------------------- /tests/units/javashmshuffle/runtest/runKryoSerializerTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/javashmshuffle/runtest/runKryoSerializerTest.sh -------------------------------------------------------------------------------- /tests/units/javashmshuffle/runtest/runShmStoreManagerTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/javashmshuffle/runtest/runShmStoreManagerTest.sh -------------------------------------------------------------------------------- /tests/units/javashmshuffle/runtest/runStoreTrackerTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/javashmshuffle/runtest/runStoreTrackerTest.sh -------------------------------------------------------------------------------- /tests/units/scalashmshuffle/runtest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/scalashmshuffle/runtest/README.md -------------------------------------------------------------------------------- /tests/units/scalashmshuffle/runtest/runShuffleManagerTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HewlettPackard/sparkle/HEAD/tests/units/scalashmshuffle/runtest/runShuffleManagerTest.sh --------------------------------------------------------------------------------