├── .gitignore ├── README.md ├── hbase ├── pom.xml ├── src │ └── main │ │ └── java │ │ └── com │ │ └── aliyun │ │ └── hbase │ │ └── HBaseDemo.java └── thrift2 │ ├── cpp │ ├── AliTHttpClient.cpp │ ├── AliTHttpClient.h │ ├── HbaseClient.cpp │ ├── README.md │ ├── gen-cpp │ │ ├── THBaseService.cpp │ │ ├── THBaseService.h │ │ ├── THBaseService_server.skeleton.cpp │ │ ├── hbase_constants.cpp │ │ ├── hbase_constants.h │ │ ├── hbase_types.cpp │ │ └── hbase_types.h │ └── hbase.thrift │ ├── go │ ├── README.md │ ├── gen-go │ │ └── hbase │ │ │ ├── GoUnusedProtection__.go │ │ │ ├── hbase-consts.go │ │ │ ├── hbase.go │ │ │ └── t_h_base_service-remote │ │ │ └── t_h_base_service-remote.go │ ├── hbase.thrift │ └── index.go │ ├── nodejs │ ├── README.md │ ├── gen-nodejs │ │ ├── THBaseService.js │ │ └── hbase_types.js │ ├── hbase.thrift │ ├── index.js │ ├── node_modules │ │ ├── .bin │ │ │ └── marked │ │ ├── async-limiter │ │ │ ├── .eslintignore │ │ │ ├── .nycrc │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── readme.md │ │ ├── marked │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── marked │ │ │ ├── lib │ │ │ │ └── marked.js │ │ │ ├── man │ │ │ │ ├── marked.1 │ │ │ │ └── marked.1.txt │ │ │ ├── marked.min.js │ │ │ └── package.json │ │ ├── node-int64 │ │ │ ├── .npmignore │ │ │ ├── Int64.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── q │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ ├── q.js │ │ │ └── queue.js │ │ ├── thrift │ │ │ ├── CHANGES │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── nodejs │ │ │ │ │ ├── README.md │ │ │ │ │ └── lib │ │ │ │ │ └── thrift │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── binary_protocol.js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── buffered_transport.js │ │ │ │ │ ├── compact_protocol.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── create_client.js │ │ │ │ │ ├── framed_transport.js │ │ │ │ │ ├── http_connection.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── input_buffer_underrun_error.js │ │ │ │ │ ├── int64_util.js │ │ │ │ │ ├── json_parse.js │ │ │ │ │ ├── json_protocol.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── multiplexed_processor.js │ │ │ │ │ ├── multiplexed_protocol.js │ │ │ │ │ ├── protocol.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── thrift.js │ │ │ │ │ ├── transport.js │ │ │ │ │ ├── web_server.js │ │ │ │ │ ├── ws_connection.js │ │ │ │ │ ├── ws_transport.js │ │ │ │ │ └── xhr_connection.js │ │ │ └── package.json │ │ ├── utf8 │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── utf8.js │ │ └── ws │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── buffer-util.js │ │ │ ├── constants.js │ │ │ ├── event-target.js │ │ │ ├── extension.js │ │ │ ├── permessage-deflate.js │ │ │ ├── receiver.js │ │ │ ├── sender.js │ │ │ ├── validation.js │ │ │ ├── websocket-server.js │ │ │ └── websocket.js │ │ │ └── package.json │ ├── package-lock.json │ └── package.json │ ├── php │ ├── 0.12.0.zip │ ├── README.md │ ├── gen-php │ │ ├── TAppend.php │ │ ├── TAuthorization.php │ │ ├── TBloomFilterType.php │ │ ├── TCellVisibility.php │ │ ├── TColumn.php │ │ ├── TColumnFamilyDescriptor.php │ │ ├── TColumnIncrement.php │ │ ├── TColumnValue.php │ │ ├── TCompareOp.php │ │ ├── TCompressionAlgorithm.php │ │ ├── TConsistency.php │ │ ├── TDataBlockEncoding.php │ │ ├── TDelete.php │ │ ├── TDeleteType.php │ │ ├── TDurability.php │ │ ├── TGet.php │ │ ├── THBaseServiceClient.php │ │ ├── THBaseServiceIf.php │ │ ├── THBaseService_addColumnFamily_args.php │ │ ├── THBaseService_addColumnFamily_result.php │ │ ├── THBaseService_append_args.php │ │ ├── THBaseService_append_result.php │ │ ├── THBaseService_checkAndDelete_args.php │ │ ├── THBaseService_checkAndDelete_result.php │ │ ├── THBaseService_checkAndMutate_args.php │ │ ├── THBaseService_checkAndMutate_result.php │ │ ├── THBaseService_checkAndPut_args.php │ │ ├── THBaseService_checkAndPut_result.php │ │ ├── THBaseService_closeScanner_args.php │ │ ├── THBaseService_closeScanner_result.php │ │ ├── THBaseService_createNamespace_args.php │ │ ├── THBaseService_createNamespace_result.php │ │ ├── THBaseService_createTable_args.php │ │ ├── THBaseService_createTable_result.php │ │ ├── THBaseService_deleteColumnFamily_args.php │ │ ├── THBaseService_deleteColumnFamily_result.php │ │ ├── THBaseService_deleteMultiple_args.php │ │ ├── THBaseService_deleteMultiple_result.php │ │ ├── THBaseService_deleteNamespace_args.php │ │ ├── THBaseService_deleteNamespace_result.php │ │ ├── THBaseService_deleteSingle_args.php │ │ ├── THBaseService_deleteSingle_result.php │ │ ├── THBaseService_deleteTable_args.php │ │ ├── THBaseService_deleteTable_result.php │ │ ├── THBaseService_disableTable_args.php │ │ ├── THBaseService_disableTable_result.php │ │ ├── THBaseService_enableTable_args.php │ │ ├── THBaseService_enableTable_result.php │ │ ├── THBaseService_existsAll_args.php │ │ ├── THBaseService_existsAll_result.php │ │ ├── THBaseService_exists_args.php │ │ ├── THBaseService_exists_result.php │ │ ├── THBaseService_getAllRegionLocations_args.php │ │ ├── THBaseService_getAllRegionLocations_result.php │ │ ├── THBaseService_getMultiple_args.php │ │ ├── THBaseService_getMultiple_result.php │ │ ├── THBaseService_getNamespaceDescriptor_args.php │ │ ├── THBaseService_getNamespaceDescriptor_result.php │ │ ├── THBaseService_getRegionLocation_args.php │ │ ├── THBaseService_getRegionLocation_result.php │ │ ├── THBaseService_getScannerResults_args.php │ │ ├── THBaseService_getScannerResults_result.php │ │ ├── THBaseService_getScannerRows_args.php │ │ ├── THBaseService_getScannerRows_result.php │ │ ├── THBaseService_getTableDescriptor_args.php │ │ ├── THBaseService_getTableDescriptor_result.php │ │ ├── THBaseService_getTableDescriptorsByNamespace_args.php │ │ ├── THBaseService_getTableDescriptorsByNamespace_result.php │ │ ├── THBaseService_getTableDescriptorsByPattern_args.php │ │ ├── THBaseService_getTableDescriptorsByPattern_result.php │ │ ├── THBaseService_getTableDescriptors_args.php │ │ ├── THBaseService_getTableDescriptors_result.php │ │ ├── THBaseService_getTableNamesByNamespace_args.php │ │ ├── THBaseService_getTableNamesByNamespace_result.php │ │ ├── THBaseService_getTableNamesByPattern_args.php │ │ ├── THBaseService_getTableNamesByPattern_result.php │ │ ├── THBaseService_get_args.php │ │ ├── THBaseService_get_result.php │ │ ├── THBaseService_increment_args.php │ │ ├── THBaseService_increment_result.php │ │ ├── THBaseService_isTableAvailableWithSplit_args.php │ │ ├── THBaseService_isTableAvailableWithSplit_result.php │ │ ├── THBaseService_isTableAvailable_args.php │ │ ├── THBaseService_isTableAvailable_result.php │ │ ├── THBaseService_isTableDisabled_args.php │ │ ├── THBaseService_isTableDisabled_result.php │ │ ├── THBaseService_isTableEnabled_args.php │ │ ├── THBaseService_isTableEnabled_result.php │ │ ├── THBaseService_listNamespaceDescriptors_args.php │ │ ├── THBaseService_listNamespaceDescriptors_result.php │ │ ├── THBaseService_modifyColumnFamily_args.php │ │ ├── THBaseService_modifyColumnFamily_result.php │ │ ├── THBaseService_modifyNamespace_args.php │ │ ├── THBaseService_modifyNamespace_result.php │ │ ├── THBaseService_modifyTable_args.php │ │ ├── THBaseService_modifyTable_result.php │ │ ├── THBaseService_mutateRow_args.php │ │ ├── THBaseService_mutateRow_result.php │ │ ├── THBaseService_openScanner_args.php │ │ ├── THBaseService_openScanner_result.php │ │ ├── THBaseService_putMultiple_args.php │ │ ├── THBaseService_putMultiple_result.php │ │ ├── THBaseService_put_args.php │ │ ├── THBaseService_put_result.php │ │ ├── THBaseService_tableExists_args.php │ │ ├── THBaseService_tableExists_result.php │ │ ├── THBaseService_truncateTable_args.php │ │ ├── THBaseService_truncateTable_result.php │ │ ├── THRegionInfo.php │ │ ├── THRegionLocation.php │ │ ├── TIOError.php │ │ ├── TIllegalArgument.php │ │ ├── TIncrement.php │ │ ├── TKeepDeletedCells.php │ │ ├── TMutation.php │ │ ├── TNamespaceDescriptor.php │ │ ├── TPut.php │ │ ├── TReadType.php │ │ ├── TResult.php │ │ ├── TRowMutations.php │ │ ├── TScan.php │ │ ├── TServerName.php │ │ ├── TTableDescriptor.php │ │ ├── TTableName.php │ │ └── TTimeRange.php │ ├── hbase.thrift │ ├── index.php │ └── thrift-0.12.0 │ │ ├── .clang-format │ │ ├── .dockerignore │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .gitattributes │ │ ├── .github │ │ └── stale.yml │ │ ├── .rustfmt.toml │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── CMakeLists.txt │ │ ├── CONTRIBUTING.md │ │ ├── LANGUAGES.md │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── NOTICE │ │ ├── README.md │ │ ├── Thrift-swift3.podspec │ │ ├── Thrift.podspec │ │ ├── aclocal │ │ ├── ac_prog_bison.m4 │ │ ├── ax_boost_base.m4 │ │ ├── ax_check_openssl.m4 │ │ ├── ax_compare_version.m4 │ │ ├── ax_cxx_compile_stdcxx.m4 │ │ ├── ax_cxx_compile_stdcxx_11.m4 │ │ ├── ax_dmd.m4 │ │ ├── ax_javac_and_java.m4 │ │ ├── ax_lib_event.m4 │ │ ├── ax_lib_zlib.m4 │ │ ├── ax_lua.m4 │ │ ├── ax_prog_dotnetcore_version.m4 │ │ ├── ax_prog_haxe_version.m4 │ │ ├── ax_prog_perl_modules.m4 │ │ ├── ax_signed_right_shift.m4 │ │ └── ax_thrift_internal.m4 │ │ ├── appveyor.yml │ │ ├── bootstrap.sh │ │ ├── bower.json │ │ ├── build │ │ ├── appveyor │ │ │ ├── CYGW-appveyor-build.bat │ │ │ ├── CYGW-appveyor-install.bat │ │ │ ├── CYGW-appveyor-test.bat │ │ │ ├── MING-appveyor-build.bat │ │ │ ├── MING-appveyor-install.bat │ │ │ ├── MING-appveyor-test.bat │ │ │ ├── MSVC-appveyor-build.bat │ │ │ ├── MSVC-appveyor-install.bat │ │ │ ├── MSVC-appveyor-test.bat │ │ │ ├── MSYS-appveyor-build.bat │ │ │ ├── MSYS-appveyor-install.bat │ │ │ ├── MSYS-appveyor-test.bat │ │ │ ├── README.md │ │ │ ├── build-libevent.bat │ │ │ ├── build-zlib.bat │ │ │ ├── cl_banner_apache_thrift.bat │ │ │ ├── cl_banner_build.bat │ │ │ ├── cl_banner_install.bat │ │ │ ├── cl_banner_test.bat │ │ │ ├── cl_setcompiler.bat │ │ │ ├── cl_setenv.bat │ │ │ ├── cl_setgenerator.bat │ │ │ ├── cl_showenv.bat │ │ │ └── simulate-appveyor.bat │ │ ├── cmake │ │ │ ├── CPackConfig.cmake │ │ │ ├── ConfigureChecks.cmake │ │ │ ├── DefineCMakeDefaults.cmake │ │ │ ├── DefineInstallationPaths.cmake │ │ │ ├── DefineOptions.cmake │ │ │ ├── DefinePlatformSpecifc.cmake │ │ │ ├── FindAnt.cmake │ │ │ ├── FindCabal.cmake │ │ │ ├── FindGHC.cmake │ │ │ ├── FindGLIB.cmake │ │ │ ├── FindGradle.cmake │ │ │ ├── FindGradlew.cmake │ │ │ ├── FindInttypes.cmake │ │ │ ├── FindLibevent.cmake │ │ │ ├── NewPlatformDebug.cmake │ │ │ ├── README-MSYS2.md │ │ │ ├── README.md │ │ │ ├── ThriftMacros.cmake │ │ │ ├── android-toolchain.cmake │ │ │ ├── config.h.in │ │ │ └── mingw32-toolchain.cmake │ │ ├── docker │ │ │ ├── README.md │ │ │ ├── old │ │ │ │ ├── Vagrantfile │ │ │ │ ├── centos-7.3 │ │ │ │ │ └── Dockerfile │ │ │ │ ├── debian-jessie │ │ │ │ │ └── Dockerfile │ │ │ │ ├── debian-stretch │ │ │ │ │ └── Dockerfile │ │ │ │ └── ubuntu-trusty │ │ │ │ │ └── Dockerfile │ │ │ ├── refresh.sh │ │ │ ├── run.sh │ │ │ ├── scripts │ │ │ │ ├── autotools.sh │ │ │ │ ├── cmake.sh │ │ │ │ ├── covscan.sh │ │ │ │ ├── cross-test.sh │ │ │ │ ├── dpkg.sh │ │ │ │ ├── make-dist.sh │ │ │ │ ├── sca.sh │ │ │ │ └── ubsan.sh │ │ │ ├── ubuntu-artful │ │ │ │ └── Dockerfile │ │ │ ├── ubuntu-bionic │ │ │ │ └── Dockerfile │ │ │ └── ubuntu-xenial │ │ │ │ └── Dockerfile │ │ ├── travis │ │ │ ├── installCXXDependencies.sh │ │ │ └── installDependencies.sh │ │ └── wincpp │ │ │ ├── README.md │ │ │ ├── build-thrift-compiler.bat │ │ │ ├── build-thrift.bat │ │ │ ├── scripts │ │ │ ├── cl_setarch.bat │ │ │ ├── cl_setcompiler.bat │ │ │ ├── cl_setgenerator.bat │ │ │ └── tpversions.bat │ │ │ └── thirdparty │ │ │ └── src │ │ │ ├── build-libevent.bat │ │ │ ├── build-openssl.bat │ │ │ └── build-zlib.bat │ │ ├── cleanup.sh │ │ ├── compiler │ │ └── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── compiler.sln │ │ │ ├── compiler.vcxproj │ │ │ ├── compiler.vcxproj.filters │ │ │ ├── src │ │ │ ├── Makefile.am │ │ │ └── thrift │ │ │ │ ├── audit │ │ │ │ ├── t_audit.cpp │ │ │ │ └── t_audit.h │ │ │ │ ├── common.cc │ │ │ │ ├── common.h │ │ │ │ ├── generate │ │ │ │ ├── t_as3_generator.cc │ │ │ │ ├── t_c_glib_generator.cc │ │ │ │ ├── t_cl_generator.cc │ │ │ │ ├── t_cocoa_generator.cc │ │ │ │ ├── t_cpp_generator.cc │ │ │ │ ├── t_csharp_generator.cc │ │ │ │ ├── t_d_generator.cc │ │ │ │ ├── t_dart_generator.cc │ │ │ │ ├── t_delphi_generator.cc │ │ │ │ ├── t_erl_generator.cc │ │ │ │ ├── t_generator.cc │ │ │ │ ├── t_generator.h │ │ │ │ ├── t_generator_registry.h │ │ │ │ ├── t_go_generator.cc │ │ │ │ ├── t_gv_generator.cc │ │ │ │ ├── t_haxe_generator.cc │ │ │ │ ├── t_hs_generator.cc │ │ │ │ ├── t_html_generator.cc │ │ │ │ ├── t_html_generator.h │ │ │ │ ├── t_java_generator.cc │ │ │ │ ├── t_javame_generator.cc │ │ │ │ ├── t_js_generator.cc │ │ │ │ ├── t_json_generator.cc │ │ │ │ ├── t_lua_generator.cc │ │ │ │ ├── t_netcore_generator.cc │ │ │ │ ├── t_netcore_generator.h │ │ │ │ ├── t_ocaml_generator.cc │ │ │ │ ├── t_oop_generator.h │ │ │ │ ├── t_perl_generator.cc │ │ │ │ ├── t_php_generator.cc │ │ │ │ ├── t_py_generator.cc │ │ │ │ ├── t_rb_generator.cc │ │ │ │ ├── t_rs_generator.cc │ │ │ │ ├── t_st_generator.cc │ │ │ │ ├── t_swift_generator.cc │ │ │ │ ├── t_xml_generator.cc │ │ │ │ ├── t_xsd_generator.cc │ │ │ │ └── thrift-t_php_generator.o-a60a38e9 │ │ │ │ ├── globals.h │ │ │ │ ├── logging.cc │ │ │ │ ├── logging.h │ │ │ │ ├── main.cc │ │ │ │ ├── main.h │ │ │ │ ├── parse │ │ │ │ ├── parse.cc │ │ │ │ ├── t_base_type.h │ │ │ │ ├── t_const.h │ │ │ │ ├── t_const_value.h │ │ │ │ ├── t_container.h │ │ │ │ ├── t_doc.h │ │ │ │ ├── t_enum.h │ │ │ │ ├── t_enum_value.h │ │ │ │ ├── t_field.h │ │ │ │ ├── t_function.h │ │ │ │ ├── t_list.h │ │ │ │ ├── t_map.h │ │ │ │ ├── t_program.h │ │ │ │ ├── t_scope.h │ │ │ │ ├── t_service.h │ │ │ │ ├── t_set.h │ │ │ │ ├── t_struct.h │ │ │ │ ├── t_type.h │ │ │ │ ├── t_typedef.cc │ │ │ │ └── t_typedef.h │ │ │ │ ├── platform.h │ │ │ │ ├── plugin │ │ │ │ ├── Makefile.am │ │ │ │ ├── plugin.cc │ │ │ │ ├── plugin.h │ │ │ │ ├── plugin.thrift │ │ │ │ ├── plugin_output.cc │ │ │ │ ├── plugin_output.h │ │ │ │ └── type_util.h │ │ │ │ ├── thriftl.ll │ │ │ │ ├── thrifty.yy │ │ │ │ ├── version.h.in │ │ │ │ └── windows │ │ │ │ └── config.h │ │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── bincat.sh │ │ │ ├── compiler │ │ │ │ ├── Included.thrift │ │ │ │ ├── Including.thrift │ │ │ │ ├── Single.thrift │ │ │ │ └── staleness_check.py │ │ │ ├── cpp_plugin_test.cmake │ │ │ ├── cpp_plugin_test.sh │ │ │ ├── keyword-samples │ │ │ │ ├── const1_return.thrift │ │ │ │ ├── enum1_return.thrift │ │ │ │ ├── enum2_return.thrift │ │ │ │ ├── exception1_return.thrift │ │ │ │ ├── exception2_return.thrift │ │ │ │ ├── service1_return.thrift │ │ │ │ ├── service2_return.thrift │ │ │ │ ├── service3_return.thrift │ │ │ │ ├── service4_return.thrift │ │ │ │ ├── struct1_return.thrift │ │ │ │ ├── struct2_return.thrift │ │ │ │ ├── typedef1_return.thrift │ │ │ │ ├── union1_return.thrift │ │ │ │ └── union2_return.thrift │ │ │ ├── plugin │ │ │ │ ├── conversion_test.cc │ │ │ │ └── cpp_plugin.cc │ │ │ └── plugin_stability_test.sh │ │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── catch │ │ │ └── catch.hpp │ │ │ ├── netcore │ │ │ ├── t_netcore_generator_functional_tests.cc │ │ │ ├── t_netcore_generator_functional_tests_helpers.cc │ │ │ ├── t_netcore_generator_functional_tests_helpers.h │ │ │ ├── t_netcore_generator_helpers_tests.cc │ │ │ └── t_netcore_generator_initialization_tests.cc │ │ │ └── tests_main.cc │ │ ├── composer.json │ │ ├── configure.ac │ │ ├── contrib │ │ ├── Rebus │ │ │ ├── App.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── README.md │ │ │ ├── RebusSample.csproj │ │ │ ├── RebusSample.sln │ │ │ ├── ServiceImpl │ │ │ │ ├── Both.cs │ │ │ │ ├── Client.cs │ │ │ │ └── Server.cs │ │ │ └── sample.thrift │ │ ├── Stomp │ │ │ ├── README.md │ │ │ └── Thrift.Transport.STOMP.pas │ │ ├── Vagrantfile │ │ ├── async-test │ │ │ ├── aggr.thrift │ │ │ ├── test-leaf.py │ │ │ └── test-server.cpp │ │ ├── fb303 │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── TClientInfo.cpp │ │ │ ├── TClientInfo.h │ │ │ ├── aclocal │ │ │ │ ├── ax_boost_base.m4 │ │ │ │ ├── ax_cxx_compile_stdcxx_11.m4 │ │ │ │ ├── ax_javac_and_java.m4 │ │ │ │ └── ax_thrift_internal.m4 │ │ │ ├── bootstrap.sh │ │ │ ├── configure.ac │ │ │ ├── cpp │ │ │ │ ├── FacebookBase.cpp │ │ │ │ ├── FacebookBase.h │ │ │ │ ├── Makefile.am │ │ │ │ ├── ServiceTracker.cpp │ │ │ │ └── ServiceTracker.h │ │ │ ├── global_footer.mk │ │ │ ├── global_header.mk │ │ │ ├── if │ │ │ │ └── fb303.thrift │ │ │ ├── java │ │ │ │ ├── build.properties │ │ │ │ ├── build.xml │ │ │ │ └── src │ │ │ │ │ └── FacebookBase.java │ │ │ ├── php │ │ │ │ └── FacebookBase.php │ │ │ └── py │ │ │ │ ├── Makefile.am │ │ │ │ ├── fb303 │ │ │ │ └── FacebookBase.py │ │ │ │ ├── fb303_scripts │ │ │ │ ├── __init__.py │ │ │ │ └── fb303_simple_mgmt.py │ │ │ │ └── setup.py │ │ ├── mingw-cross-compile.sh │ │ ├── parse_profiling.py │ │ ├── thrift-maven-plugin │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── thrift │ │ │ │ │ └── maven │ │ │ │ │ ├── AbstractThriftMojo.java │ │ │ │ │ ├── Thrift.java │ │ │ │ │ ├── ThriftCompileMojo.java │ │ │ │ │ └── ThriftTestCompileMojo.java │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── thrift │ │ │ │ │ └── maven │ │ │ │ │ ├── TestAbstractThriftMojo.java │ │ │ │ │ └── TestThrift.java │ │ │ │ └── resources │ │ │ │ └── idl │ │ │ │ ├── shared.thrift │ │ │ │ └── tutorial.thrift │ │ ├── thrift.el │ │ ├── thrift.spec │ │ ├── thrift.vim │ │ ├── thrift_dump.cpp │ │ ├── transport-sample │ │ │ ├── README.md │ │ │ ├── Sample.thrift │ │ │ ├── ThriftCommon.cpp │ │ │ ├── ThriftCommon.h │ │ │ ├── client │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── client.cpp │ │ │ │ ├── client.vcxproj │ │ │ │ ├── client.vcxproj.filters │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── config.h │ │ │ ├── server │ │ │ │ ├── ReadMe.txt │ │ │ │ ├── server.cpp │ │ │ │ ├── server.vcxproj │ │ │ │ ├── server.vcxproj.filters │ │ │ │ ├── stdafx.cpp │ │ │ │ ├── stdafx.h │ │ │ │ └── targetver.h │ │ │ ├── thriftme.bat │ │ │ ├── thriftme.sh │ │ │ └── transport-sample.sln │ │ ├── vagrant │ │ │ └── centos-6.5 │ │ │ │ ├── README.md │ │ │ │ └── Vagrantfile │ │ └── zeromq │ │ │ ├── README.md │ │ │ ├── TZmqClient.cpp │ │ │ ├── TZmqClient.h │ │ │ ├── TZmqClient.py │ │ │ ├── TZmqServer.cpp │ │ │ ├── TZmqServer.h │ │ │ ├── TZmqServer.py │ │ │ ├── csharp │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Main.cs │ │ │ ├── TZmqClient.cs │ │ │ ├── TZmqServer.cs │ │ │ ├── ThriftZMQ.csproj │ │ │ └── ThriftZMQ.sln │ │ │ ├── storage.thrift │ │ │ ├── test-client.cpp │ │ │ ├── test-client.py │ │ │ ├── test-receiver.cpp │ │ │ ├── test-sender.cpp │ │ │ ├── test-server.cpp │ │ │ └── test-server.py │ │ ├── debian │ │ ├── README.md │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── docs │ │ ├── libthrift-dev.install │ │ ├── libthrift0.install │ │ ├── php5-thrift.dirs │ │ ├── rules │ │ ├── substvars │ │ ├── thrift-doc.docs │ │ └── thrift-doc.install │ │ ├── doap.rdf │ │ ├── doc │ │ ├── coding_standards.md │ │ ├── committers.md │ │ ├── images │ │ │ ├── cgrn.png │ │ │ ├── cred.png │ │ │ ├── credfull.png │ │ │ ├── cyel.png │ │ │ └── thrift-layers.png │ │ ├── install │ │ │ ├── README.md │ │ │ ├── centos.md │ │ │ ├── debian.md │ │ │ ├── os_x.md │ │ │ └── windows.md │ │ ├── licenses │ │ │ ├── lgpl-2.1.txt │ │ │ └── otp-base-license.txt │ │ └── specs │ │ │ ├── HeaderFormat.md │ │ │ ├── idl.md │ │ │ ├── thrift-binary-protocol.md │ │ │ ├── thrift-compact-protocol.md │ │ │ ├── thrift-protocol-spec.md │ │ │ ├── thrift-rpc.md │ │ │ ├── thrift-sasl-spec.txt │ │ │ └── thrift.tex │ │ ├── dub.json │ │ ├── lib │ │ ├── Makefile.am │ │ ├── as3 │ │ │ ├── build.properties │ │ │ ├── build.xml │ │ │ ├── coding_standards.md │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── thrift │ │ │ │ ├── AbstractMethodError.as │ │ │ │ ├── Set.as │ │ │ │ ├── TApplicationError.as │ │ │ │ ├── TBase.as │ │ │ │ ├── TError.as │ │ │ │ ├── TFieldRequirementType.as │ │ │ │ ├── TProcessor.as │ │ │ │ ├── meta_data │ │ │ │ ├── FieldMetaData.as │ │ │ │ ├── FieldValueMetaData.as │ │ │ │ ├── ListMetaData.as │ │ │ │ ├── MapMetaData.as │ │ │ │ ├── SetMetaData.as │ │ │ │ └── StructMetaData.as │ │ │ │ ├── protocol │ │ │ │ ├── TBinaryProtocol.as │ │ │ │ ├── TField.as │ │ │ │ ├── TList.as │ │ │ │ ├── TMap.as │ │ │ │ ├── TMessage.as │ │ │ │ ├── TMessageType.as │ │ │ │ ├── TProtocol.as │ │ │ │ ├── TProtocolError.as │ │ │ │ ├── TProtocolFactory.as │ │ │ │ ├── TProtocolUtil.as │ │ │ │ ├── TSet.as │ │ │ │ ├── TStruct.as │ │ │ │ └── TType.as │ │ │ │ └── transport │ │ │ │ ├── TFullDuplexHttpClient.as │ │ │ │ ├── THttpClient.as │ │ │ │ ├── TSocket.as │ │ │ │ ├── TTransport.as │ │ │ │ └── TTransportError.as │ │ ├── c_glib │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── src │ │ │ │ └── thrift │ │ │ │ │ └── c_glib │ │ │ │ │ ├── processor │ │ │ │ │ ├── thrift_dispatch_processor.c │ │ │ │ │ ├── thrift_dispatch_processor.h │ │ │ │ │ ├── thrift_multiplexed_processor.c │ │ │ │ │ ├── thrift_multiplexed_processor.h │ │ │ │ │ ├── thrift_processor.c │ │ │ │ │ └── thrift_processor.h │ │ │ │ │ ├── protocol │ │ │ │ │ ├── thrift_binary_protocol.c │ │ │ │ │ ├── thrift_binary_protocol.h │ │ │ │ │ ├── thrift_binary_protocol_factory.c │ │ │ │ │ ├── thrift_binary_protocol_factory.h │ │ │ │ │ ├── thrift_compact_protocol.c │ │ │ │ │ ├── thrift_compact_protocol.h │ │ │ │ │ ├── thrift_compact_protocol_factory.c │ │ │ │ │ ├── thrift_compact_protocol_factory.h │ │ │ │ │ ├── thrift_multiplexed_protocol.c │ │ │ │ │ ├── thrift_multiplexed_protocol.h │ │ │ │ │ ├── thrift_protocol.c │ │ │ │ │ ├── thrift_protocol.h │ │ │ │ │ ├── thrift_protocol_decorator.c │ │ │ │ │ ├── thrift_protocol_decorator.h │ │ │ │ │ ├── thrift_protocol_factory.c │ │ │ │ │ ├── thrift_protocol_factory.h │ │ │ │ │ ├── thrift_stored_message_protocol.c │ │ │ │ │ └── thrift_stored_message_protocol.h │ │ │ │ │ ├── server │ │ │ │ │ ├── thrift_server.c │ │ │ │ │ ├── thrift_server.h │ │ │ │ │ ├── thrift_simple_server.c │ │ │ │ │ └── thrift_simple_server.h │ │ │ │ │ ├── thrift.c │ │ │ │ │ ├── thrift.h │ │ │ │ │ ├── thrift_application_exception.c │ │ │ │ │ ├── thrift_application_exception.h │ │ │ │ │ ├── thrift_struct.c │ │ │ │ │ ├── thrift_struct.h │ │ │ │ │ └── transport │ │ │ │ │ ├── thrift_buffered_transport.c │ │ │ │ │ ├── thrift_buffered_transport.h │ │ │ │ │ ├── thrift_buffered_transport_factory.c │ │ │ │ │ ├── thrift_buffered_transport_factory.h │ │ │ │ │ ├── thrift_fd_transport.c │ │ │ │ │ ├── thrift_fd_transport.h │ │ │ │ │ ├── thrift_framed_transport.c │ │ │ │ │ ├── thrift_framed_transport.h │ │ │ │ │ ├── thrift_framed_transport_factory.c │ │ │ │ │ ├── thrift_framed_transport_factory.h │ │ │ │ │ ├── thrift_memory_buffer.c │ │ │ │ │ ├── thrift_memory_buffer.h │ │ │ │ │ ├── thrift_platform_socket.h │ │ │ │ │ ├── thrift_server_socket.c │ │ │ │ │ ├── thrift_server_socket.h │ │ │ │ │ ├── thrift_server_transport.c │ │ │ │ │ ├── thrift_server_transport.h │ │ │ │ │ ├── thrift_socket.c │ │ │ │ │ ├── thrift_socket.h │ │ │ │ │ ├── thrift_ssl_socket.c │ │ │ │ │ ├── thrift_ssl_socket.h │ │ │ │ │ ├── thrift_transport.c │ │ │ │ │ ├── thrift_transport.h │ │ │ │ │ ├── thrift_transport_factory.c │ │ │ │ │ └── thrift_transport_factory.h │ │ │ ├── test │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ContainerTest.thrift │ │ │ │ ├── Makefile.am │ │ │ │ ├── glib.suppress │ │ │ │ ├── testapplicationexception.c │ │ │ │ ├── testbinaryprotocol.c │ │ │ │ ├── testbufferedtransport.c │ │ │ │ ├── testcompactprotocol.c │ │ │ │ ├── testcontainertest.c │ │ │ │ ├── testdebugproto.c │ │ │ │ ├── testfdtransport.c │ │ │ │ ├── testframedtransport.c │ │ │ │ ├── testmemorybuffer.c │ │ │ │ ├── testoptionalrequired.c │ │ │ │ ├── testserialization.c │ │ │ │ ├── testsimpleserver.c │ │ │ │ ├── teststruct.c │ │ │ │ ├── testthrifttest.c │ │ │ │ ├── testthrifttestclient.cpp │ │ │ │ ├── testtransportsocket.c │ │ │ │ └── testtransportsslsocket.c │ │ │ └── thrift_c_glib.pc.in │ │ ├── cl │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── READMES │ │ │ │ └── readme-cassandra.lisp │ │ │ ├── ensure-externals.sh │ │ │ ├── load-locally.lisp │ │ │ └── test │ │ │ │ └── make-test-binary.lisp │ │ ├── cocoa │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ └── src │ │ │ │ ├── TApplicationError.h │ │ │ │ ├── TApplicationError.m │ │ │ │ ├── TBaseClient.h │ │ │ │ ├── TBaseClient.m │ │ │ │ ├── TBinary.swift │ │ │ │ ├── TEnum.swift │ │ │ │ ├── TError.h │ │ │ │ ├── TError.m │ │ │ │ ├── TList.swift │ │ │ │ ├── TMap.swift │ │ │ │ ├── TProcessor.h │ │ │ │ ├── TProcessorFactory.h │ │ │ │ ├── TProtocol.swift │ │ │ │ ├── TSerializable.swift │ │ │ │ ├── TSet.swift │ │ │ │ ├── TSharedProcessorFactory.h │ │ │ │ ├── TSharedProcessorFactory.m │ │ │ │ ├── TStruct.swift │ │ │ │ ├── Thrift.h │ │ │ │ ├── protocol │ │ │ │ ├── TBase.h │ │ │ │ ├── TBinaryProtocol.h │ │ │ │ ├── TBinaryProtocol.m │ │ │ │ ├── TCompactProtocol.h │ │ │ │ ├── TCompactProtocol.m │ │ │ │ ├── TMultiplexedProtocol.h │ │ │ │ ├── TMultiplexedProtocol.m │ │ │ │ ├── TProtocol.h │ │ │ │ ├── TProtocolDecorator.h │ │ │ │ ├── TProtocolDecorator.m │ │ │ │ ├── TProtocolError.h │ │ │ │ ├── TProtocolError.m │ │ │ │ ├── TProtocolFactory.h │ │ │ │ ├── TProtocolUtil.h │ │ │ │ └── TProtocolUtil.m │ │ │ │ ├── server │ │ │ │ ├── TSocketServer.h │ │ │ │ └── TSocketServer.m │ │ │ │ └── transport │ │ │ │ ├── TAsyncTransport.h │ │ │ │ ├── TFramedTransport.h │ │ │ │ ├── TFramedTransport.m │ │ │ │ ├── THTTPSessionTransport.h │ │ │ │ ├── THTTPSessionTransport.m │ │ │ │ ├── THTTPTransport.h │ │ │ │ ├── THTTPTransport.m │ │ │ │ ├── TMemoryBuffer.h │ │ │ │ ├── TMemoryBuffer.m │ │ │ │ ├── TNSFileHandleTransport.h │ │ │ │ ├── TNSFileHandleTransport.m │ │ │ │ ├── TNSStreamTransport.h │ │ │ │ ├── TNSStreamTransport.m │ │ │ │ ├── TSSLSocketTransport.h │ │ │ │ ├── TSSLSocketTransport.m │ │ │ │ ├── TSSLSocketTransportError.h │ │ │ │ ├── TSSLSocketTransportError.m │ │ │ │ ├── TSocketTransport.h │ │ │ │ ├── TSocketTransport.m │ │ │ │ ├── TTransport.h │ │ │ │ ├── TTransportError.h │ │ │ │ └── TTransportError.m │ │ ├── cpp │ │ │ ├── 3rdparty.props │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── libthrift.vcxproj │ │ │ ├── libthrift.vcxproj.filters │ │ │ ├── libthriftnb.vcxproj │ │ │ ├── libthriftnb.vcxproj.filters │ │ │ ├── src │ │ │ │ └── thrift │ │ │ │ │ ├── TApplicationException.cpp │ │ │ │ │ ├── TApplicationException.h │ │ │ │ │ ├── TBase.h │ │ │ │ │ ├── TDispatchProcessor.h │ │ │ │ │ ├── TLogging.h │ │ │ │ │ ├── TOutput.cpp │ │ │ │ │ ├── TOutput.h │ │ │ │ │ ├── TProcessor.h │ │ │ │ │ ├── TToString.h │ │ │ │ │ ├── Thrift.h │ │ │ │ │ ├── VirtualProfiling.cpp │ │ │ │ │ ├── async │ │ │ │ │ ├── TAsyncBufferProcessor.h │ │ │ │ │ ├── TAsyncChannel.cpp │ │ │ │ │ ├── TAsyncChannel.h │ │ │ │ │ ├── TAsyncDispatchProcessor.h │ │ │ │ │ ├── TAsyncProcessor.h │ │ │ │ │ ├── TAsyncProtocolProcessor.cpp │ │ │ │ │ ├── TAsyncProtocolProcessor.h │ │ │ │ │ ├── TConcurrentClientSyncInfo.cpp │ │ │ │ │ ├── TConcurrentClientSyncInfo.h │ │ │ │ │ ├── TEvhttpClientChannel.cpp │ │ │ │ │ ├── TEvhttpClientChannel.h │ │ │ │ │ ├── TEvhttpServer.cpp │ │ │ │ │ └── TEvhttpServer.h │ │ │ │ │ ├── concurrency │ │ │ │ │ ├── BoostMonitor.cpp │ │ │ │ │ ├── BoostMutex.cpp │ │ │ │ │ ├── BoostThreadFactory.cpp │ │ │ │ │ ├── BoostThreadFactory.h │ │ │ │ │ ├── Exception.h │ │ │ │ │ ├── FunctionRunner.h │ │ │ │ │ ├── Monitor.cpp │ │ │ │ │ ├── Monitor.h │ │ │ │ │ ├── Mutex.cpp │ │ │ │ │ ├── Mutex.h │ │ │ │ │ ├── PlatformThreadFactory.h │ │ │ │ │ ├── PosixThreadFactory.cpp │ │ │ │ │ ├── PosixThreadFactory.h │ │ │ │ │ ├── StdMonitor.cpp │ │ │ │ │ ├── StdMutex.cpp │ │ │ │ │ ├── StdThreadFactory.cpp │ │ │ │ │ ├── StdThreadFactory.h │ │ │ │ │ ├── Thread.h │ │ │ │ │ ├── ThreadManager.cpp │ │ │ │ │ ├── ThreadManager.h │ │ │ │ │ ├── TimerManager.cpp │ │ │ │ │ ├── TimerManager.h │ │ │ │ │ ├── Util.cpp │ │ │ │ │ └── Util.h │ │ │ │ │ ├── processor │ │ │ │ │ ├── PeekProcessor.cpp │ │ │ │ │ ├── PeekProcessor.h │ │ │ │ │ ├── StatsProcessor.h │ │ │ │ │ └── TMultiplexedProcessor.h │ │ │ │ │ ├── protocol │ │ │ │ │ ├── TBase64Utils.cpp │ │ │ │ │ ├── TBase64Utils.h │ │ │ │ │ ├── TBinaryProtocol.h │ │ │ │ │ ├── TBinaryProtocol.tcc │ │ │ │ │ ├── TCompactProtocol.h │ │ │ │ │ ├── TCompactProtocol.tcc │ │ │ │ │ ├── TDebugProtocol.cpp │ │ │ │ │ ├── TDebugProtocol.h │ │ │ │ │ ├── THeaderProtocol.cpp │ │ │ │ │ ├── THeaderProtocol.h │ │ │ │ │ ├── TJSONProtocol.cpp │ │ │ │ │ ├── TJSONProtocol.h │ │ │ │ │ ├── TMultiplexedProtocol.cpp │ │ │ │ │ ├── TMultiplexedProtocol.h │ │ │ │ │ ├── TProtocol.cpp │ │ │ │ │ ├── TProtocol.h │ │ │ │ │ ├── TProtocolDecorator.h │ │ │ │ │ ├── TProtocolException.h │ │ │ │ │ ├── TProtocolTap.h │ │ │ │ │ ├── TProtocolTypes.h │ │ │ │ │ └── TVirtualProtocol.h │ │ │ │ │ ├── qt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── TQIODeviceTransport.cpp │ │ │ │ │ ├── TQIODeviceTransport.h │ │ │ │ │ ├── TQTcpServer.cpp │ │ │ │ │ └── TQTcpServer.h │ │ │ │ │ ├── server │ │ │ │ │ ├── TConnectedClient.cpp │ │ │ │ │ ├── TConnectedClient.h │ │ │ │ │ ├── TNonblockingServer.cpp │ │ │ │ │ ├── TNonblockingServer.h │ │ │ │ │ ├── TServer.cpp │ │ │ │ │ ├── TServer.h │ │ │ │ │ ├── TServerFramework.cpp │ │ │ │ │ ├── TServerFramework.h │ │ │ │ │ ├── TSimpleServer.cpp │ │ │ │ │ ├── TSimpleServer.h │ │ │ │ │ ├── TThreadPoolServer.cpp │ │ │ │ │ ├── TThreadPoolServer.h │ │ │ │ │ ├── TThreadedServer.cpp │ │ │ │ │ └── TThreadedServer.h │ │ │ │ │ ├── stdcxx.h │ │ │ │ │ ├── thrift-config.h │ │ │ │ │ ├── transport │ │ │ │ │ ├── PlatformSocket.h │ │ │ │ │ ├── TBufferTransports.cpp │ │ │ │ │ ├── TBufferTransports.h │ │ │ │ │ ├── TFDTransport.cpp │ │ │ │ │ ├── TFDTransport.h │ │ │ │ │ ├── TFileTransport.cpp │ │ │ │ │ ├── TFileTransport.h │ │ │ │ │ ├── THeaderTransport.cpp │ │ │ │ │ ├── THeaderTransport.h │ │ │ │ │ ├── THttpClient.cpp │ │ │ │ │ ├── THttpClient.h │ │ │ │ │ ├── THttpServer.cpp │ │ │ │ │ ├── THttpServer.h │ │ │ │ │ ├── THttpTransport.cpp │ │ │ │ │ ├── THttpTransport.h │ │ │ │ │ ├── TNonblockingSSLServerSocket.cpp │ │ │ │ │ ├── TNonblockingSSLServerSocket.h │ │ │ │ │ ├── TNonblockingServerSocket.cpp │ │ │ │ │ ├── TNonblockingServerSocket.h │ │ │ │ │ ├── TNonblockingServerTransport.h │ │ │ │ │ ├── TPipe.cpp │ │ │ │ │ ├── TPipe.h │ │ │ │ │ ├── TPipeServer.cpp │ │ │ │ │ ├── TPipeServer.h │ │ │ │ │ ├── TSSLServerSocket.cpp │ │ │ │ │ ├── TSSLServerSocket.h │ │ │ │ │ ├── TSSLSocket.cpp │ │ │ │ │ ├── TSSLSocket.h │ │ │ │ │ ├── TServerSocket.cpp │ │ │ │ │ ├── TServerSocket.h │ │ │ │ │ ├── TServerTransport.h │ │ │ │ │ ├── TShortReadTransport.h │ │ │ │ │ ├── TSimpleFileTransport.cpp │ │ │ │ │ ├── TSimpleFileTransport.h │ │ │ │ │ ├── TSocket.cpp │ │ │ │ │ ├── TSocket.h │ │ │ │ │ ├── TSocketPool.cpp │ │ │ │ │ ├── TSocketPool.h │ │ │ │ │ ├── TTransport.h │ │ │ │ │ ├── TTransportException.cpp │ │ │ │ │ ├── TTransportException.h │ │ │ │ │ ├── TTransportUtils.cpp │ │ │ │ │ ├── TTransportUtils.h │ │ │ │ │ ├── TVirtualTransport.h │ │ │ │ │ ├── TZlibTransport.cpp │ │ │ │ │ └── TZlibTransport.h │ │ │ │ │ └── windows │ │ │ │ │ ├── GetTimeOfDay.cpp │ │ │ │ │ ├── GetTimeOfDay.h │ │ │ │ │ ├── Operators.h │ │ │ │ │ ├── OverlappedSubmissionThread.cpp │ │ │ │ │ ├── OverlappedSubmissionThread.h │ │ │ │ │ ├── SocketPair.cpp │ │ │ │ │ ├── SocketPair.h │ │ │ │ │ ├── Sync.h │ │ │ │ │ ├── TWinsockSingleton.cpp │ │ │ │ │ ├── TWinsockSingleton.h │ │ │ │ │ ├── WinFcntl.cpp │ │ │ │ │ ├── WinFcntl.h │ │ │ │ │ └── config.h │ │ │ ├── test │ │ │ │ ├── AllProtocolTests.cpp │ │ │ │ ├── AllProtocolTests.tcc │ │ │ │ ├── AnnotationTest.cpp │ │ │ │ ├── Base64Test.cpp │ │ │ │ ├── Benchmark.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── DebugProtoTest.cpp │ │ │ │ ├── DebugProtoTest_extras.cpp │ │ │ │ ├── EnumTest.cpp │ │ │ │ ├── GenericHelpers.h │ │ │ │ ├── JSONProtoTest.cpp │ │ │ │ ├── Makefile.am │ │ │ │ ├── OneWayHTTPTest.cpp │ │ │ │ ├── OneWayTest.thrift │ │ │ │ ├── OpenSSLManualInitTest.cpp │ │ │ │ ├── OptionalRequiredTest.cpp │ │ │ │ ├── RecursiveTest.cpp │ │ │ │ ├── RenderedDoubleConstantsTest.cpp │ │ │ │ ├── SecurityTest.cpp │ │ │ │ ├── SpecializationTest.cpp │ │ │ │ ├── TBufferBaseTest.cpp │ │ │ │ ├── TFDTransportTest.cpp │ │ │ │ ├── TFileTransportTest.cpp │ │ │ │ ├── TMemoryBufferTest.cpp │ │ │ │ ├── TNonblockingSSLServerTest.cpp │ │ │ │ ├── TNonblockingServerTest.cpp │ │ │ │ ├── TPipeInterruptTest.cpp │ │ │ │ ├── TPipedTransportTest.cpp │ │ │ │ ├── TSSLSocketInterruptTest.cpp │ │ │ │ ├── TServerIntegrationTest.cpp │ │ │ │ ├── TServerSocketTest.cpp │ │ │ │ ├── TServerTransportTest.cpp │ │ │ │ ├── TSocketInterruptTest.cpp │ │ │ │ ├── TTransportCheckThrow.h │ │ │ │ ├── ThriftTest_extras.cpp │ │ │ │ ├── ToStringTest.cpp │ │ │ │ ├── TransportTest.cpp │ │ │ │ ├── TypedefTest.cpp │ │ │ │ ├── UnitTestMain.cpp │ │ │ │ ├── ZlibTest.cpp │ │ │ │ ├── concurrency │ │ │ │ │ ├── MutexTest.cpp │ │ │ │ │ ├── RWMutexStarveTest.cpp │ │ │ │ │ ├── Tests.cpp │ │ │ │ │ ├── ThreadFactoryTests.h │ │ │ │ │ ├── ThreadManagerTests.h │ │ │ │ │ └── TimerManagerTests.h │ │ │ │ ├── link │ │ │ │ │ ├── LinkTest.cpp │ │ │ │ │ ├── TemplatedService1.cpp │ │ │ │ │ └── TemplatedService2.cpp │ │ │ │ ├── processor │ │ │ │ │ ├── EventLog.cpp │ │ │ │ │ ├── EventLog.h │ │ │ │ │ ├── Handlers.h │ │ │ │ │ ├── ProcessorTest.cpp │ │ │ │ │ ├── ServerThread.cpp │ │ │ │ │ ├── ServerThread.h │ │ │ │ │ └── proc.thrift │ │ │ │ └── qt │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── TQTcpServerTest.cpp │ │ │ ├── thrift-nb.pc.in │ │ │ ├── thrift-qt.pc.in │ │ │ ├── thrift-qt5.pc.in │ │ │ ├── thrift-z.pc.in │ │ │ ├── thrift.pc.in │ │ │ └── thrift.sln │ │ ├── csharp │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── ThriftMSBuildTask │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ThriftBuild.cs │ │ │ │ └── ThriftMSBuildTask.csproj │ │ │ ├── coding_standards.md │ │ │ ├── src │ │ │ │ ├── Collections │ │ │ │ │ ├── TCollections.cs │ │ │ │ │ └── THashSet.cs │ │ │ │ ├── Net35 │ │ │ │ │ └── ExtensionsNet35.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Protocol │ │ │ │ │ ├── TAbstractBase.cs │ │ │ │ │ ├── TBase.cs │ │ │ │ │ ├── TBase64Utils.cs │ │ │ │ │ ├── TBinaryProtocol.cs │ │ │ │ │ ├── TCompactProtocol.cs │ │ │ │ │ ├── TField.cs │ │ │ │ │ ├── TJSONProtocol.cs │ │ │ │ │ ├── TList.cs │ │ │ │ │ ├── TMap.cs │ │ │ │ │ ├── TMessage.cs │ │ │ │ │ ├── TMessageType.cs │ │ │ │ │ ├── TMultiplexedProcessor.cs │ │ │ │ │ ├── TMultiplexedProtocol.cs │ │ │ │ │ ├── TProtocol.cs │ │ │ │ │ ├── TProtocolDecorator.cs │ │ │ │ │ ├── TProtocolException.cs │ │ │ │ │ ├── TProtocolFactory.cs │ │ │ │ │ ├── TProtocolUtil.cs │ │ │ │ │ ├── TSet.cs │ │ │ │ │ ├── TStruct.cs │ │ │ │ │ └── TType.cs │ │ │ │ ├── Server │ │ │ │ │ ├── TServer.cs │ │ │ │ │ ├── TServerEventHandler.cs │ │ │ │ │ ├── TSimpleServer.cs │ │ │ │ │ ├── TThreadPoolServer.cs │ │ │ │ │ └── TThreadedServer.cs │ │ │ │ ├── TApplicationException.cs │ │ │ │ ├── TAsyncProcessor.cs │ │ │ │ ├── TControllingHandler.cs │ │ │ │ ├── TException.cs │ │ │ │ ├── TProcessor.cs │ │ │ │ ├── TProcessorFactory.cs │ │ │ │ ├── TPrototypeProcessorFactory.cs │ │ │ │ ├── TSingletonProcessorFactory.cs │ │ │ │ ├── Thrift.45.csproj │ │ │ │ ├── Thrift.csproj │ │ │ │ ├── Thrift.sln │ │ │ │ └── Transport │ │ │ │ │ ├── TBufferedTransport.cs │ │ │ │ │ ├── TFramedTransport.cs │ │ │ │ │ ├── THttpClient.cs │ │ │ │ │ ├── THttpHandler.cs │ │ │ │ │ ├── THttpTaskAsyncHandler.cs │ │ │ │ │ ├── TMemoryBuffer.cs │ │ │ │ │ ├── TNamedPipeClientTransport.cs │ │ │ │ │ ├── TNamedPipeServerTransport.cs │ │ │ │ │ ├── TServerSocket.cs │ │ │ │ │ ├── TServerTransport.cs │ │ │ │ │ ├── TSilverlightSocket.cs │ │ │ │ │ ├── TSocket.cs │ │ │ │ │ ├── TSocketVersionizer.cs │ │ │ │ │ ├── TStreamTransport.cs │ │ │ │ │ ├── TTLSServerSocket.cs │ │ │ │ │ ├── TTLSSocket.cs │ │ │ │ │ ├── TTransport.cs │ │ │ │ │ ├── TTransportException.cs │ │ │ │ │ └── TTransportFactory.cs │ │ │ └── test │ │ │ │ ├── JSON │ │ │ │ ├── JSONTest.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── app.config │ │ │ │ ├── Multiplex │ │ │ │ ├── Client │ │ │ │ │ ├── Multiplex.Test.Client.cs │ │ │ │ │ ├── MultiplexClient.csproj │ │ │ │ │ └── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Makefile.am │ │ │ │ ├── Multiplex.Test.Common.cs │ │ │ │ └── Server │ │ │ │ │ ├── Multiplex.Test.Server.cs │ │ │ │ │ ├── MultiplexServer.csproj │ │ │ │ │ └── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── ThriftMVCTest │ │ │ │ ├── App_Start │ │ │ │ ├── FilterConfig.cs │ │ │ │ └── RouteConfig.cs │ │ │ │ ├── AsyncHttpHandler.cs │ │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ │ ├── Global.asax │ │ │ │ ├── Global.asax.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── SecondServiceImpl.cs │ │ │ │ ├── SyncHttpHandler.cs │ │ │ │ ├── ThriftMVCTest.csproj │ │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ │ │ ├── Web.Debug.config │ │ │ │ ├── Web.Release.config │ │ │ │ ├── Web.config │ │ │ │ ├── favicon.ico │ │ │ │ └── packages.config │ │ ├── d │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── src │ │ │ │ └── thrift │ │ │ │ │ ├── async │ │ │ │ │ ├── base.d │ │ │ │ │ ├── libevent.d │ │ │ │ │ ├── socket.d │ │ │ │ │ └── ssl.d │ │ │ │ │ ├── base.d │ │ │ │ │ ├── codegen │ │ │ │ │ ├── async_client.d │ │ │ │ │ ├── async_client_pool.d │ │ │ │ │ ├── base.d │ │ │ │ │ ├── client.d │ │ │ │ │ ├── client_pool.d │ │ │ │ │ ├── idlgen.d │ │ │ │ │ └── processor.d │ │ │ │ │ ├── index.d │ │ │ │ │ ├── internal │ │ │ │ │ ├── algorithm.d │ │ │ │ │ ├── codegen.d │ │ │ │ │ ├── ctfe.d │ │ │ │ │ ├── endian.d │ │ │ │ │ ├── resource_pool.d │ │ │ │ │ ├── socket.d │ │ │ │ │ ├── ssl.d │ │ │ │ │ ├── ssl_bio.d │ │ │ │ │ ├── test │ │ │ │ │ │ ├── protocol.d │ │ │ │ │ │ └── server.d │ │ │ │ │ └── traits.d │ │ │ │ │ ├── protocol │ │ │ │ │ ├── base.d │ │ │ │ │ ├── binary.d │ │ │ │ │ ├── compact.d │ │ │ │ │ ├── json.d │ │ │ │ │ └── processor.d │ │ │ │ │ ├── server │ │ │ │ │ ├── base.d │ │ │ │ │ ├── nonblocking.d │ │ │ │ │ ├── simple.d │ │ │ │ │ ├── taskpool.d │ │ │ │ │ ├── threaded.d │ │ │ │ │ └── transport │ │ │ │ │ │ ├── base.d │ │ │ │ │ │ ├── socket.d │ │ │ │ │ │ └── ssl.d │ │ │ │ │ ├── transport │ │ │ │ │ ├── base.d │ │ │ │ │ ├── buffered.d │ │ │ │ │ ├── file.d │ │ │ │ │ ├── framed.d │ │ │ │ │ ├── http.d │ │ │ │ │ ├── memory.d │ │ │ │ │ ├── piped.d │ │ │ │ │ ├── range.d │ │ │ │ │ ├── socket.d │ │ │ │ │ ├── ssl.d │ │ │ │ │ └── zlib.d │ │ │ │ │ └── util │ │ │ │ │ ├── awaitable.d │ │ │ │ │ ├── cancellation.d │ │ │ │ │ ├── future.d │ │ │ │ │ └── hashset.d │ │ │ └── test │ │ │ │ ├── Makefile.am │ │ │ │ ├── async_test.d │ │ │ │ ├── async_test_runner.sh │ │ │ │ ├── client_pool_test.d │ │ │ │ ├── openssl.test.cnf │ │ │ │ ├── serialization_benchmark.d │ │ │ │ ├── stress_test_server.d │ │ │ │ ├── test_utils.d │ │ │ │ ├── thrift_test_client.d │ │ │ │ ├── thrift_test_common.d │ │ │ │ ├── thrift_test_runner.sh │ │ │ │ ├── thrift_test_server.d │ │ │ │ └── transport_test.d │ │ ├── dart │ │ │ ├── .analysis_options │ │ │ ├── LICENSE_HEADER │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── lib │ │ │ │ ├── src │ │ │ │ │ ├── browser │ │ │ │ │ │ └── t_web_socket.dart │ │ │ │ │ ├── console │ │ │ │ │ │ ├── t_tcp_socket.dart │ │ │ │ │ │ └── t_web_socket.dart │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── t_binary_protocol.dart │ │ │ │ │ │ ├── t_compact_protocol.dart │ │ │ │ │ │ ├── t_field.dart │ │ │ │ │ │ ├── t_json_protocol.dart │ │ │ │ │ │ ├── t_list.dart │ │ │ │ │ │ ├── t_map.dart │ │ │ │ │ │ ├── t_message.dart │ │ │ │ │ │ ├── t_multiplexed_protocol.dart │ │ │ │ │ │ ├── t_protocol.dart │ │ │ │ │ │ ├── t_protocol_decorator.dart │ │ │ │ │ │ ├── t_protocol_error.dart │ │ │ │ │ │ ├── t_protocol_factory.dart │ │ │ │ │ │ ├── t_protocol_util.dart │ │ │ │ │ │ ├── t_set.dart │ │ │ │ │ │ ├── t_struct.dart │ │ │ │ │ │ └── t_type.dart │ │ │ │ │ ├── serializer │ │ │ │ │ │ ├── t_deserializer.dart │ │ │ │ │ │ └── t_serializer.dart │ │ │ │ │ ├── t_application_error.dart │ │ │ │ │ ├── t_base.dart │ │ │ │ │ ├── t_error.dart │ │ │ │ │ ├── t_processor.dart │ │ │ │ │ └── transport │ │ │ │ │ │ ├── t_buffered_transport.dart │ │ │ │ │ │ ├── t_framed_transport.dart │ │ │ │ │ │ ├── t_http_transport.dart │ │ │ │ │ │ ├── t_message_reader.dart │ │ │ │ │ │ ├── t_socket.dart │ │ │ │ │ │ ├── t_socket_transport.dart │ │ │ │ │ │ ├── t_transport.dart │ │ │ │ │ │ ├── t_transport_error.dart │ │ │ │ │ │ └── t_transport_factory.dart │ │ │ │ ├── thrift.dart │ │ │ │ ├── thrift_browser.dart │ │ │ │ └── thrift_console.dart │ │ │ ├── pubspec.yaml │ │ │ ├── test │ │ │ │ ├── protocol │ │ │ │ │ └── t_protocol_test.dart │ │ │ │ ├── serializer │ │ │ │ │ ├── serializer_test.dart │ │ │ │ │ └── serializer_test_data.dart │ │ │ │ ├── t_application_error_test.dart │ │ │ │ └── transport │ │ │ │ │ ├── t_framed_transport_test.dart │ │ │ │ │ ├── t_http_transport_test.dart │ │ │ │ │ ├── t_socket_transport_test.dart │ │ │ │ │ └── t_transport_test.dart │ │ │ └── tool │ │ │ │ └── dev.dart │ │ ├── delphi │ │ │ ├── DelphiThrift.groupproj │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── src │ │ │ │ ├── Thrift.Collections.pas │ │ │ │ ├── Thrift.Defines.inc │ │ │ │ ├── Thrift.Exception.pas │ │ │ │ ├── Thrift.Processor.Multiplex.pas │ │ │ │ ├── Thrift.Protocol.Compact.pas │ │ │ │ ├── Thrift.Protocol.JSON.pas │ │ │ │ ├── Thrift.Protocol.Multiplex.pas │ │ │ │ ├── Thrift.Protocol.pas │ │ │ │ ├── Thrift.Serializer.pas │ │ │ │ ├── Thrift.Server.pas │ │ │ │ ├── Thrift.Socket.pas │ │ │ │ ├── Thrift.Stream.pas │ │ │ │ ├── Thrift.Transport.Pipes.pas │ │ │ │ ├── Thrift.Transport.pas │ │ │ │ ├── Thrift.TypeRegistry.pas │ │ │ │ ├── Thrift.Utils.pas │ │ │ │ └── Thrift.pas │ │ │ └── test │ │ │ │ ├── ConsoleHelper.pas │ │ │ │ ├── TestClient.pas │ │ │ │ ├── TestConstants.pas │ │ │ │ ├── TestServer.pas │ │ │ │ ├── TestServerEvents.pas │ │ │ │ ├── client.dpr │ │ │ │ ├── codegen │ │ │ │ ├── README.md │ │ │ │ └── run-Pascal-Codegen-Tests.bat.tmpl │ │ │ │ ├── keywords │ │ │ │ ├── ReservedIncluded.thrift │ │ │ │ ├── ReservedKeywords.dpr │ │ │ │ └── ReservedKeywords.thrift │ │ │ │ ├── maketest.sh │ │ │ │ ├── multiplexed │ │ │ │ ├── Multiplex.Client.Main.pas │ │ │ │ ├── Multiplex.Server.Main.pas │ │ │ │ ├── Multiplex.Test.Client.dpr │ │ │ │ ├── Multiplex.Test.Common.pas │ │ │ │ └── Multiplex.Test.Server.dpr │ │ │ │ ├── serializer │ │ │ │ ├── TestSerializer.Data.pas │ │ │ │ └── TestSerializer.dpr │ │ │ │ ├── server.dpr │ │ │ │ ├── skip │ │ │ │ ├── README.md │ │ │ │ ├── idl │ │ │ │ │ ├── skiptest_version_1.thrift │ │ │ │ │ └── skiptest_version_2.thrift │ │ │ │ ├── skiptest_version1.dpr │ │ │ │ └── skiptest_version2.dpr │ │ │ │ └── typeregistry │ │ │ │ └── TestTypeRegistry.dpr │ │ ├── erl │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── include │ │ │ │ ├── thrift_constants.hrl │ │ │ │ ├── thrift_protocol.hrl │ │ │ │ ├── thrift_protocol_behaviour.hrl │ │ │ │ └── thrift_transport_behaviour.hrl │ │ │ ├── rebar.config │ │ │ ├── rebar.config.script │ │ │ ├── rebar.test.config │ │ │ ├── src │ │ │ │ ├── thrift_base64_transport.erl │ │ │ │ ├── thrift_binary_protocol.erl │ │ │ │ ├── thrift_buffered_transport.erl │ │ │ │ ├── thrift_client.erl │ │ │ │ ├── thrift_client_util.erl │ │ │ │ ├── thrift_compact_protocol.erl │ │ │ │ ├── thrift_disk_log_transport.erl │ │ │ │ ├── thrift_file_transport.erl │ │ │ │ ├── thrift_framed_transport.erl │ │ │ │ ├── thrift_http_transport.erl │ │ │ │ ├── thrift_json_parser.erl │ │ │ │ ├── thrift_json_protocol.erl │ │ │ │ ├── thrift_membuffer_transport.erl │ │ │ │ ├── thrift_memory_buffer.erl │ │ │ │ ├── thrift_multiplexed_map_wrapper.erl │ │ │ │ ├── thrift_multiplexed_protocol.erl │ │ │ │ ├── thrift_processor.erl │ │ │ │ ├── thrift_protocol.erl │ │ │ │ ├── thrift_reconnecting_client.erl │ │ │ │ ├── thrift_server.erl │ │ │ │ ├── thrift_service.erl │ │ │ │ ├── thrift_socket_server.erl │ │ │ │ ├── thrift_socket_transport.erl │ │ │ │ ├── thrift_sslsocket_transport.erl │ │ │ │ ├── thrift_transport.erl │ │ │ │ └── thrift_transport_state_test.erl │ │ │ └── test │ │ │ │ ├── Thrift1151.thrift │ │ │ │ ├── Thrift1475.thrift │ │ │ │ ├── Thrift_omit_with.thrift │ │ │ │ ├── flags │ │ │ │ ├── LegacyNames.thrift │ │ │ │ └── Thrift3214.thrift │ │ │ │ ├── legacy_names_test.erl │ │ │ │ ├── multiplexing.thrift │ │ │ │ ├── multiplexing_test.erl │ │ │ │ ├── name_conflict_test.erl │ │ │ │ ├── stress_server.erl │ │ │ │ ├── test_const.erl │ │ │ │ ├── test_disklog.erl │ │ │ │ ├── test_omit.erl │ │ │ │ ├── test_rendered_double_constants.erl │ │ │ │ ├── test_thrift_1151.erl │ │ │ │ ├── test_thrift_3214.erl │ │ │ │ ├── test_thrift_buffered_transport.erl │ │ │ │ ├── test_thrift_compact_protocol.erl │ │ │ │ ├── test_thrift_file_transport.erl │ │ │ │ ├── test_thrift_framed_transport.erl │ │ │ │ ├── test_thrift_membuffer_transport.erl │ │ │ │ ├── test_thrift_socket_transport.erl │ │ │ │ ├── thrift_socket_server_test.erl │ │ │ │ └── thrift_test_test.erl │ │ ├── go │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── test │ │ │ │ ├── BinaryKeyTest.thrift │ │ │ │ ├── DontExportRWTest.thrift │ │ │ │ ├── ErrorTest.thrift │ │ │ │ ├── GoTagTest.thrift │ │ │ │ ├── IgnoreInitialismsTest.thrift │ │ │ │ ├── IncludesTest.thrift │ │ │ │ ├── InitialismsTest.thrift │ │ │ │ ├── Makefile.am │ │ │ │ ├── MultiplexedProtocolTest.thrift │ │ │ │ ├── NamesTest.thrift │ │ │ │ ├── NamespacedTest.thrift │ │ │ │ ├── OnewayTest.thrift │ │ │ │ ├── OptionalFieldsTest.thrift │ │ │ │ ├── RefAnnotationFieldsTest.thrift │ │ │ │ ├── RequiredFieldTest.thrift │ │ │ │ ├── ServicesTest.thrift │ │ │ │ ├── TypedefFieldTest.thrift │ │ │ │ ├── UnionBinaryTest.thrift │ │ │ │ ├── UnionDefaultValueTest.thrift │ │ │ │ ├── dontexportrwtest │ │ │ │ │ └── compile_test.go │ │ │ │ └── tests │ │ │ │ │ ├── binary_key_test.go │ │ │ │ │ ├── client_error_test.go │ │ │ │ │ ├── context.go │ │ │ │ │ ├── encoding_json_test.go │ │ │ │ │ ├── gotag_test.go │ │ │ │ │ ├── ignoreinitialisms_test.go │ │ │ │ │ ├── initialisms_test.go │ │ │ │ │ ├── multiplexed_protocol_test.go │ │ │ │ │ ├── names_test.go │ │ │ │ │ ├── one_way_test.go │ │ │ │ │ ├── optional_fields_test.go │ │ │ │ │ ├── protocol_mock.go │ │ │ │ │ ├── protocols_test.go │ │ │ │ │ ├── required_fields_test.go │ │ │ │ │ ├── struct_args_rets_test.go │ │ │ │ │ ├── thrifttest_driver.go │ │ │ │ │ ├── thrifttest_handler.go │ │ │ │ │ ├── union_binary_test.go │ │ │ │ │ └── union_default_value_test.go │ │ │ └── thrift │ │ │ │ ├── application_exception.go │ │ │ │ ├── application_exception_test.go │ │ │ │ ├── binary_protocol.go │ │ │ │ ├── binary_protocol_test.go │ │ │ │ ├── buffered_transport.go │ │ │ │ ├── buffered_transport_test.go │ │ │ │ ├── client.go │ │ │ │ ├── common_test.go │ │ │ │ ├── compact_protocol.go │ │ │ │ ├── compact_protocol_test.go │ │ │ │ ├── context.go │ │ │ │ ├── debug_protocol.go │ │ │ │ ├── deserializer.go │ │ │ │ ├── exception.go │ │ │ │ ├── exception_test.go │ │ │ │ ├── field.go │ │ │ │ ├── framed_transport.go │ │ │ │ ├── framed_transport_test.go │ │ │ │ ├── http_client.go │ │ │ │ ├── http_client_test.go │ │ │ │ ├── http_transport.go │ │ │ │ ├── iostream_transport.go │ │ │ │ ├── iostream_transport_test.go │ │ │ │ ├── json_protocol.go │ │ │ │ ├── json_protocol_test.go │ │ │ │ ├── lowlevel_benchmarks_test.go │ │ │ │ ├── memory_buffer.go │ │ │ │ ├── memory_buffer_test.go │ │ │ │ ├── messagetype.go │ │ │ │ ├── multiplexed_protocol.go │ │ │ │ ├── numeric.go │ │ │ │ ├── pointerize.go │ │ │ │ ├── processor_factory.go │ │ │ │ ├── protocol.go │ │ │ │ ├── protocol_exception.go │ │ │ │ ├── protocol_factory.go │ │ │ │ ├── protocol_test.go │ │ │ │ ├── rich_transport.go │ │ │ │ ├── rich_transport_test.go │ │ │ │ ├── serializer.go │ │ │ │ ├── serializer_test.go │ │ │ │ ├── serializer_types_test.go │ │ │ │ ├── server.go │ │ │ │ ├── server_socket.go │ │ │ │ ├── server_socket_test.go │ │ │ │ ├── server_test.go │ │ │ │ ├── server_transport.go │ │ │ │ ├── simple_json_protocol.go │ │ │ │ ├── simple_json_protocol_test.go │ │ │ │ ├── simple_server.go │ │ │ │ ├── simple_server_test.go │ │ │ │ ├── socket.go │ │ │ │ ├── ssl_server_socket.go │ │ │ │ ├── ssl_socket.go │ │ │ │ ├── transport.go │ │ │ │ ├── transport_exception.go │ │ │ │ ├── transport_exception_test.go │ │ │ │ ├── transport_factory.go │ │ │ │ ├── transport_test.go │ │ │ │ ├── type.go │ │ │ │ ├── zlib_transport.go │ │ │ │ └── zlib_transport_test.go │ │ ├── haxe │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── haxelib.json │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── thrift │ │ │ │ │ ├── AbstractMethodError.hx │ │ │ │ │ ├── ArgumentError.hx │ │ │ │ │ ├── Limits.hx │ │ │ │ │ ├── TApplicationException.hx │ │ │ │ │ ├── TBase.hx │ │ │ │ │ ├── TException.hx │ │ │ │ │ ├── TFieldRequirementType.hx │ │ │ │ │ ├── TProcessor.hx │ │ │ │ │ ├── helper │ │ │ │ │ ├── BitConverter.hx │ │ │ │ │ ├── Int64Map.hx │ │ │ │ │ ├── IntSet.hx │ │ │ │ │ ├── ObjectSet.hx │ │ │ │ │ ├── StringSet.hx │ │ │ │ │ └── ZigZag.hx │ │ │ │ │ ├── meta_data │ │ │ │ │ ├── FieldMetaData.hx │ │ │ │ │ ├── FieldValueMetaData.hx │ │ │ │ │ ├── ListMetaData.hx │ │ │ │ │ ├── MapMetaData.hx │ │ │ │ │ ├── SetMetaData.hx │ │ │ │ │ └── StructMetaData.hx │ │ │ │ │ ├── protocol │ │ │ │ │ ├── TBinaryProtocol.hx │ │ │ │ │ ├── TBinaryProtocolFactory.hx │ │ │ │ │ ├── TCompactProtocol.hx │ │ │ │ │ ├── TCompactProtocolFactory.hx │ │ │ │ │ ├── TCompactTypes.hx │ │ │ │ │ ├── TField.hx │ │ │ │ │ ├── TJSONProtocol.hx │ │ │ │ │ ├── TJSONProtocolFactory.hx │ │ │ │ │ ├── TList.hx │ │ │ │ │ ├── TMap.hx │ │ │ │ │ ├── TMessage.hx │ │ │ │ │ ├── TMessageType.hx │ │ │ │ │ ├── TMultiplexedProcessor.hx │ │ │ │ │ ├── TMultiplexedProtocol.hx │ │ │ │ │ ├── TProtocol.hx │ │ │ │ │ ├── TProtocolDecorator.hx │ │ │ │ │ ├── TProtocolException.hx │ │ │ │ │ ├── TProtocolFactory.hx │ │ │ │ │ ├── TProtocolUtil.hx │ │ │ │ │ ├── TRecursionTracker.hx │ │ │ │ │ ├── TSet.hx │ │ │ │ │ ├── TStruct.hx │ │ │ │ │ └── TType.hx │ │ │ │ │ ├── server │ │ │ │ │ ├── TServer.hx │ │ │ │ │ ├── TServerEventHandler.hx │ │ │ │ │ └── TSimpleServer.hx │ │ │ │ │ └── transport │ │ │ │ │ ├── TBufferedTransport.hx │ │ │ │ │ ├── TBufferedTransportFactory.hx │ │ │ │ │ ├── TFileStream.hx │ │ │ │ │ ├── TFramedTransport.hx │ │ │ │ │ ├── TFramedTransportFactory.hx │ │ │ │ │ ├── TFullDuplexHttpClient.hx │ │ │ │ │ ├── THttpClient.hx │ │ │ │ │ ├── TServerSocket.hx │ │ │ │ │ ├── TServerTransport.hx │ │ │ │ │ ├── TSocket.hx │ │ │ │ │ ├── TStream.hx │ │ │ │ │ ├── TStreamTransport.hx │ │ │ │ │ ├── TTransport.hx │ │ │ │ │ ├── TTransportException.hx │ │ │ │ │ ├── TTransportFactory.hx │ │ │ │ │ └── TWrappingServerTransport.hx │ │ │ └── test │ │ │ │ ├── HaxeTests.hxproj │ │ │ │ ├── Makefile.am │ │ │ │ ├── cpp.hxml │ │ │ │ ├── csharp.hxml │ │ │ │ ├── flash.hxml │ │ │ │ ├── java.hxml │ │ │ │ ├── javascript.hxml │ │ │ │ ├── make_all.bat │ │ │ │ ├── make_all.sh │ │ │ │ ├── neko.hxml │ │ │ │ ├── php.hxml │ │ │ │ ├── project.hide │ │ │ │ ├── python.hxml │ │ │ │ └── src │ │ │ │ ├── Main.hx │ │ │ │ ├── MultiplexTest.hx │ │ │ │ ├── StreamTest.hx │ │ │ │ └── TestBase.hx │ │ ├── hs │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── Setup.lhs │ │ │ ├── TODO │ │ │ ├── coding_standards.md │ │ │ ├── src │ │ │ │ ├── Thrift.hs │ │ │ │ └── Thrift │ │ │ │ │ ├── Arbitraries.hs │ │ │ │ │ ├── Protocol.hs │ │ │ │ │ ├── Protocol │ │ │ │ │ ├── Binary.hs │ │ │ │ │ ├── Compact.hs │ │ │ │ │ ├── Header.hs │ │ │ │ │ └── JSON.hs │ │ │ │ │ ├── Server.hs │ │ │ │ │ ├── Transport.hs │ │ │ │ │ ├── Transport │ │ │ │ │ ├── Empty.hs │ │ │ │ │ ├── Framed.hs │ │ │ │ │ ├── Handle.hs │ │ │ │ │ ├── Header.hs │ │ │ │ │ ├── HttpClient.hs │ │ │ │ │ ├── IOBuffer.hs │ │ │ │ │ └── Memory.hs │ │ │ │ │ └── Types.hs │ │ │ ├── test │ │ │ │ ├── BinarySpec.hs │ │ │ │ ├── CompactSpec.hs │ │ │ │ ├── JSONSpec.hs │ │ │ │ └── Spec.hs │ │ │ └── thrift.cabal │ │ ├── java │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── android │ │ │ │ ├── build.gradle │ │ │ │ ├── settings.gradle │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── build.gradle │ │ │ ├── code_quality_tools │ │ │ │ └── findbugs-filter.xml │ │ │ ├── coding_standards.md │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ ├── additionalArtifacts.gradle │ │ │ │ ├── cloverCoverage.gradle │ │ │ │ ├── codeQualityChecks.gradle │ │ │ │ ├── environment.gradle │ │ │ │ ├── functionalTests.gradle │ │ │ │ ├── generateTestThrift.gradle │ │ │ │ ├── publishing.gradle │ │ │ │ ├── sourceConfiguration.gradle │ │ │ │ ├── unitTests.gradle │ │ │ │ └── wrapper │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── settings.gradle │ │ │ ├── src │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── thrift │ │ │ │ │ ├── AsyncProcessFunction.java │ │ │ │ │ ├── EncodingUtils.java │ │ │ │ │ ├── Option.java │ │ │ │ │ ├── ProcessFunction.java │ │ │ │ │ ├── ShortStack.java │ │ │ │ │ ├── TApplicationException.java │ │ │ │ │ ├── TAsyncProcessor.java │ │ │ │ │ ├── TBase.java │ │ │ │ │ ├── TBaseAsyncProcessor.java │ │ │ │ │ ├── TBaseHelper.java │ │ │ │ │ ├── TBaseProcessor.java │ │ │ │ │ ├── TByteArrayOutputStream.java │ │ │ │ │ ├── TDeserializer.java │ │ │ │ │ ├── TEnum.java │ │ │ │ │ ├── TEnumHelper.java │ │ │ │ │ ├── TException.java │ │ │ │ │ ├── TFieldIdEnum.java │ │ │ │ │ ├── TFieldRequirementType.java │ │ │ │ │ ├── TMultiplexedProcessor.java │ │ │ │ │ ├── TNonblockingMultiFetchClient.java │ │ │ │ │ ├── TNonblockingMultiFetchStats.java │ │ │ │ │ ├── TProcessor.java │ │ │ │ │ ├── TProcessorFactory.java │ │ │ │ │ ├── TSerializable.java │ │ │ │ │ ├── TSerializer.java │ │ │ │ │ ├── TServiceClient.java │ │ │ │ │ ├── TServiceClientFactory.java │ │ │ │ │ ├── TUnion.java │ │ │ │ │ ├── annotation │ │ │ │ │ └── Nullable.java │ │ │ │ │ ├── async │ │ │ │ │ ├── AsyncMethodCallback.java │ │ │ │ │ ├── TAsyncClient.java │ │ │ │ │ ├── TAsyncClientFactory.java │ │ │ │ │ ├── TAsyncClientManager.java │ │ │ │ │ └── TAsyncMethodCall.java │ │ │ │ │ ├── meta_data │ │ │ │ │ ├── EnumMetaData.java │ │ │ │ │ ├── FieldMetaData.java │ │ │ │ │ ├── FieldValueMetaData.java │ │ │ │ │ ├── ListMetaData.java │ │ │ │ │ ├── MapMetaData.java │ │ │ │ │ ├── SetMetaData.java │ │ │ │ │ └── StructMetaData.java │ │ │ │ │ ├── protocol │ │ │ │ │ ├── TBase64Utils.java │ │ │ │ │ ├── TBinaryProtocol.java │ │ │ │ │ ├── TCompactProtocol.java │ │ │ │ │ ├── TField.java │ │ │ │ │ ├── TJSONProtocol.java │ │ │ │ │ ├── TList.java │ │ │ │ │ ├── TMap.java │ │ │ │ │ ├── TMessage.java │ │ │ │ │ ├── TMessageType.java │ │ │ │ │ ├── TMultiplexedProtocol.java │ │ │ │ │ ├── TProtocol.java │ │ │ │ │ ├── TProtocolDecorator.java │ │ │ │ │ ├── TProtocolException.java │ │ │ │ │ ├── TProtocolFactory.java │ │ │ │ │ ├── TProtocolUtil.java │ │ │ │ │ ├── TSet.java │ │ │ │ │ ├── TSimpleJSONProtocol.java │ │ │ │ │ ├── TStruct.java │ │ │ │ │ ├── TTupleProtocol.java │ │ │ │ │ └── TType.java │ │ │ │ │ ├── scheme │ │ │ │ │ ├── IScheme.java │ │ │ │ │ ├── SchemeFactory.java │ │ │ │ │ ├── StandardScheme.java │ │ │ │ │ └── TupleScheme.java │ │ │ │ │ ├── server │ │ │ │ │ ├── AbstractNonblockingServer.java │ │ │ │ │ ├── Invocation.java │ │ │ │ │ ├── ServerContext.java │ │ │ │ │ ├── TExtensibleServlet.java │ │ │ │ │ ├── THsHaServer.java │ │ │ │ │ ├── TNonblockingServer.java │ │ │ │ │ ├── TServer.java │ │ │ │ │ ├── TServerEventHandler.java │ │ │ │ │ ├── TServlet.java │ │ │ │ │ ├── TSimpleServer.java │ │ │ │ │ ├── TThreadPoolServer.java │ │ │ │ │ └── TThreadedSelectorServer.java │ │ │ │ │ └── transport │ │ │ │ │ ├── AutoExpandingBuffer.java │ │ │ │ │ ├── AutoExpandingBufferReadTransport.java │ │ │ │ │ ├── AutoExpandingBufferWriteTransport.java │ │ │ │ │ ├── TByteBuffer.java │ │ │ │ │ ├── TFastFramedTransport.java │ │ │ │ │ ├── TFileProcessor.java │ │ │ │ │ ├── TFileTransport.java │ │ │ │ │ ├── TFramedTransport.java │ │ │ │ │ ├── THttpClient.java │ │ │ │ │ ├── TIOStreamTransport.java │ │ │ │ │ ├── TMemoryBuffer.java │ │ │ │ │ ├── TMemoryInputTransport.java │ │ │ │ │ ├── TNonblockingServerSocket.java │ │ │ │ │ ├── TNonblockingServerTransport.java │ │ │ │ │ ├── TNonblockingSocket.java │ │ │ │ │ ├── TNonblockingTransport.java │ │ │ │ │ ├── TSSLTransportFactory.java │ │ │ │ │ ├── TSaslClientTransport.java │ │ │ │ │ ├── TSaslServerTransport.java │ │ │ │ │ ├── TSaslTransport.java │ │ │ │ │ ├── TSaslTransportException.java │ │ │ │ │ ├── TSeekableFile.java │ │ │ │ │ ├── TServerSocket.java │ │ │ │ │ ├── TServerTransport.java │ │ │ │ │ ├── TSimpleFileTransport.java │ │ │ │ │ ├── TSocket.java │ │ │ │ │ ├── TStandardFile.java │ │ │ │ │ ├── TTransport.java │ │ │ │ │ ├── TTransportException.java │ │ │ │ │ ├── TTransportFactory.java │ │ │ │ │ └── TZlibTransport.java │ │ │ └── test │ │ │ │ ├── .keystore │ │ │ │ ├── .truststore │ │ │ │ ├── log4j.properties │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── thrift │ │ │ │ ├── Fixtures.java │ │ │ │ ├── TestDeepCopy.java │ │ │ │ ├── TestEnumContainers.java │ │ │ │ ├── TestFullCamel.java │ │ │ │ ├── TestMultiplexedProcessor.java │ │ │ │ ├── TestOptionType.java │ │ │ │ ├── TestOptionals.java │ │ │ │ ├── TestRenderedDoubleConstants.java │ │ │ │ ├── TestReuse.java │ │ │ │ ├── TestShortStack.java │ │ │ │ ├── TestStruct.java │ │ │ │ ├── TestTBaseHelper.java │ │ │ │ ├── TestTDeserializer.java │ │ │ │ ├── TestTEnumHelper.java │ │ │ │ ├── TestTUnion.java │ │ │ │ ├── TestUnsafeBinaries.java │ │ │ │ ├── async │ │ │ │ ├── TestTAsyncClient.java │ │ │ │ └── TestTAsyncClientManager.java │ │ │ │ ├── protocol │ │ │ │ ├── BenchmarkProtocols.java │ │ │ │ ├── ProtocolTestBase.java │ │ │ │ ├── TestTCompactProtocol.java │ │ │ │ ├── TestTJSONProtocol.java │ │ │ │ ├── TestTProtocolUtil.java │ │ │ │ ├── TestTSimpleJSONProtocol.java │ │ │ │ └── TestTTupleProtocol.java │ │ │ │ ├── scheme │ │ │ │ └── TestStandardScheme.java │ │ │ │ ├── server │ │ │ │ ├── ServerTestBase.java │ │ │ │ ├── TestAsyncServer.java │ │ │ │ ├── TestHsHaServer.java │ │ │ │ ├── TestNonblockingServer.java │ │ │ │ └── TestThreadedSelectorServer.java │ │ │ │ ├── test │ │ │ │ ├── EqualityTest.java │ │ │ │ ├── JavaBeansTest.java │ │ │ │ ├── ReadStruct.java │ │ │ │ ├── SerializationBenchmark.java │ │ │ │ ├── TestClient.java │ │ │ │ ├── TestNonblockingServer.java │ │ │ │ ├── TestServer.java │ │ │ │ └── WriteStruct.java │ │ │ │ └── transport │ │ │ │ ├── ReadCountingTransport.java │ │ │ │ ├── TestAutoExpandingBuffer.java │ │ │ │ ├── TestAutoExpandingBufferReadTransport.java │ │ │ │ ├── TestAutoExpandingBufferWriteTransport.java │ │ │ │ ├── TestTByteBuffer.java │ │ │ │ ├── TestTFastFramedTransport.java │ │ │ │ ├── TestTFramedTransport.java │ │ │ │ ├── TestTMemoryInputTransport.java │ │ │ │ ├── TestTSSLTransportFactory.java │ │ │ │ ├── TestTSSLTransportFactoryCustomClient1.java │ │ │ │ ├── TestTSSLTransportFactoryCustomClient2.java │ │ │ │ ├── TestTSSLTransportFactoryStreamedStore.java │ │ │ │ ├── TestTSaslTransports.java │ │ │ │ ├── TestTSimpleFileTransport.java │ │ │ │ ├── TestTZlibTransport.java │ │ │ │ └── WriteCountingTransport.java │ │ ├── javame │ │ │ ├── coding_standards.md │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── thrift │ │ │ │ ├── TApplicationException.java │ │ │ │ ├── TBase.java │ │ │ │ ├── TBaseHelper.java │ │ │ │ ├── TByteArrayOutputStream.java │ │ │ │ ├── TDeserializer.java │ │ │ │ ├── TEnum.java │ │ │ │ ├── TException.java │ │ │ │ ├── TFieldRequirementType.java │ │ │ │ ├── TProcessor.java │ │ │ │ ├── TProcessorFactory.java │ │ │ │ ├── TSerializer.java │ │ │ │ ├── TServiceClient.java │ │ │ │ ├── meta_data │ │ │ │ ├── FieldMetaData.java │ │ │ │ ├── FieldValueMetaData.java │ │ │ │ ├── ListMetaData.java │ │ │ │ ├── MapMetaData.java │ │ │ │ ├── SetMetaData.java │ │ │ │ └── StructMetaData.java │ │ │ │ ├── protocol │ │ │ │ ├── TBase64Utils.java │ │ │ │ ├── TBinaryProtocol.java │ │ │ │ ├── TField.java │ │ │ │ ├── TJSONProtocol.java │ │ │ │ ├── TList.java │ │ │ │ ├── TMap.java │ │ │ │ ├── TMessage.java │ │ │ │ ├── TMessageType.java │ │ │ │ ├── TProtocol.java │ │ │ │ ├── TProtocolException.java │ │ │ │ ├── TProtocolFactory.java │ │ │ │ ├── TProtocolUtil.java │ │ │ │ ├── TSet.java │ │ │ │ ├── TStruct.java │ │ │ │ └── TType.java │ │ │ │ └── transport │ │ │ │ ├── TFramedTransport.java │ │ │ │ ├── THttpClient.java │ │ │ │ ├── TIOStreamTransport.java │ │ │ │ ├── TMemoryBuffer.java │ │ │ │ ├── TTransport.java │ │ │ │ ├── TTransportException.java │ │ │ │ └── TTransportFactory.java │ │ ├── js │ │ │ ├── Gruntfile.js │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ └── thrift.js │ │ │ └── test │ │ │ │ ├── Makefile.am │ │ │ │ ├── README.md │ │ │ │ ├── build.properties │ │ │ │ ├── build.xml │ │ │ │ ├── deep-constructor.test.js │ │ │ │ ├── jsTestDriver.conf │ │ │ │ ├── phantom-client.js │ │ │ │ ├── phantomjs-qunit.js │ │ │ │ ├── server_http.js │ │ │ │ ├── server_https.js │ │ │ │ ├── src │ │ │ │ └── test │ │ │ │ │ └── Httpd.java │ │ │ │ ├── test-async.js │ │ │ │ ├── test-deep-constructor.html │ │ │ │ ├── test-double-rendering.html │ │ │ │ ├── test-double-rendering.js │ │ │ │ ├── test-es6.html │ │ │ │ ├── test-es6.js │ │ │ │ ├── test-jq.js │ │ │ │ ├── test-nojq.html │ │ │ │ ├── test-nojq.js │ │ │ │ ├── test.html │ │ │ │ ├── test.js │ │ │ │ ├── test_handler.js │ │ │ │ └── testws.html │ │ ├── json │ │ │ ├── Makefile.am │ │ │ ├── schema.json │ │ │ └── test │ │ │ │ ├── Makefile.am │ │ │ │ ├── build.properties │ │ │ │ └── build.xml │ │ ├── lua │ │ │ ├── Makefile.am │ │ │ ├── TBinaryProtocol.lua │ │ │ ├── TBufferedTransport.lua │ │ │ ├── TCompactProtocol.lua │ │ │ ├── TFramedTransport.lua │ │ │ ├── THttpTransport.lua │ │ │ ├── TJsonProtocol.lua │ │ │ ├── TMemoryBuffer.lua │ │ │ ├── TProtocol.lua │ │ │ ├── TServer.lua │ │ │ ├── TSocket.lua │ │ │ ├── TTransport.lua │ │ │ ├── Thrift.lua │ │ │ ├── coding_standards.md │ │ │ └── src │ │ │ │ ├── longnumberutils.c │ │ │ │ ├── luabitwise.c │ │ │ │ ├── luabpack.c │ │ │ │ ├── lualongnumber.c │ │ │ │ ├── luasocket.c │ │ │ │ ├── socket.h │ │ │ │ └── usocket.c │ │ ├── netcore │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── Tests │ │ │ │ ├── Thrift.IntegrationTests │ │ │ │ │ ├── Protocols │ │ │ │ │ │ └── ProtocolsOperationsTests.cs │ │ │ │ │ └── Thrift.IntegrationTests.csproj │ │ │ │ ├── Thrift.PublicInterfaces.Compile.Tests │ │ │ │ │ ├── CassandraTest.thrift │ │ │ │ │ ├── Properties │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ └── Thrift.PublicInterfaces.Compile.Tests.csproj │ │ │ │ └── Thrift.Tests │ │ │ │ │ ├── Collections │ │ │ │ │ ├── TCollectionsTests.cs │ │ │ │ │ └── THashSetTests.cs │ │ │ │ │ ├── Protocols │ │ │ │ │ ├── TJsonProtocolHelperTests.cs │ │ │ │ │ └── TJsonProtocolTests.cs │ │ │ │ │ └── Thrift.Tests.csproj │ │ │ ├── Thrift.sln │ │ │ ├── Thrift │ │ │ │ ├── Collections │ │ │ │ │ ├── TCollections.cs │ │ │ │ │ └── THashSet.cs │ │ │ │ ├── ITAsyncProcessor.cs │ │ │ │ ├── ITProcessorFactory.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Protocols │ │ │ │ │ ├── Entities │ │ │ │ │ │ ├── TField.cs │ │ │ │ │ │ ├── TList.cs │ │ │ │ │ │ ├── TMap.cs │ │ │ │ │ │ ├── TMessage.cs │ │ │ │ │ │ ├── TMessageType.cs │ │ │ │ │ │ ├── TSet.cs │ │ │ │ │ │ ├── TStruct.cs │ │ │ │ │ │ └── TType.cs │ │ │ │ │ ├── ITProtocolFactory.cs │ │ │ │ │ ├── TAbstractBase.cs │ │ │ │ │ ├── TBase.cs │ │ │ │ │ ├── TBinaryProtocol.cs │ │ │ │ │ ├── TCompactProtocol.cs │ │ │ │ │ ├── TJSONProtocol.cs │ │ │ │ │ ├── TMultiplexedProtocol.cs │ │ │ │ │ ├── TProtocol.cs │ │ │ │ │ ├── TProtocolDecorator.cs │ │ │ │ │ ├── TProtocolException.cs │ │ │ │ │ └── Utilities │ │ │ │ │ │ ├── TBase64Helper.cs │ │ │ │ │ │ ├── TBase64Utils.cs │ │ │ │ │ │ ├── TJsonProtocolConstants.cs │ │ │ │ │ │ ├── TJsonProtocolHelper.cs │ │ │ │ │ │ └── TProtocolUtil.cs │ │ │ │ ├── Server │ │ │ │ │ ├── AsyncBaseServer.cs │ │ │ │ │ ├── TBaseServer.cs │ │ │ │ │ └── TServerEventHandler.cs │ │ │ │ ├── SingletonTProcessorFactory.cs │ │ │ │ ├── TApplicationException.cs │ │ │ │ ├── TBaseClient.cs │ │ │ │ ├── TException.cs │ │ │ │ ├── TMultiplexedProcessor.cs │ │ │ │ ├── Thrift.csproj │ │ │ │ └── Transports │ │ │ │ │ ├── Client │ │ │ │ │ ├── TBufferedClientTransport.cs │ │ │ │ │ ├── TFramedClientTransport.cs │ │ │ │ │ ├── THttpClientTransport.cs │ │ │ │ │ ├── TMemoryBufferClientTransport.cs │ │ │ │ │ ├── TNamedPipeClientTransport.cs │ │ │ │ │ ├── TSocketClientTransport.cs │ │ │ │ │ ├── TStreamClientTransport.cs │ │ │ │ │ └── TTlsSocketClientTransport.cs │ │ │ │ │ ├── Server │ │ │ │ │ ├── THttpServerTransport.cs │ │ │ │ │ ├── TNamedPipeServerTransport.cs │ │ │ │ │ ├── TServerFramedTransport.cs │ │ │ │ │ ├── TServerSocketTransport.cs │ │ │ │ │ └── TTlsServerSocketTransport.cs │ │ │ │ │ ├── TClientTransport.cs │ │ │ │ │ ├── TServerTransport.cs │ │ │ │ │ ├── TTransportException.cs │ │ │ │ │ └── TTransportFactory.cs │ │ │ ├── build.cmd │ │ │ ├── build.sh │ │ │ ├── runtests.cmd │ │ │ └── runtests.sh │ │ ├── nodejs │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── examples │ │ │ │ ├── README.md │ │ │ │ ├── client.js │ │ │ │ ├── client_multitransport.js │ │ │ │ ├── hello.html │ │ │ │ ├── hello.js │ │ │ │ ├── hello.thrift │ │ │ │ ├── httpClient.js │ │ │ │ ├── httpServer.js │ │ │ │ ├── httpServer.py │ │ │ │ ├── parse.js │ │ │ │ ├── server.js │ │ │ │ ├── server_http.js │ │ │ │ ├── server_multitransport.js │ │ │ │ └── user.thrift │ │ │ ├── lib │ │ │ │ └── thrift │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── binary_protocol.js │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── buffered_transport.js │ │ │ │ │ ├── compact_protocol.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── create_client.js │ │ │ │ │ ├── framed_transport.js │ │ │ │ │ ├── http_connection.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── input_buffer_underrun_error.js │ │ │ │ │ ├── int64_util.js │ │ │ │ │ ├── json_parse.js │ │ │ │ │ ├── json_protocol.js │ │ │ │ │ ├── log.js │ │ │ │ │ ├── multiplexed_processor.js │ │ │ │ │ ├── multiplexed_protocol.js │ │ │ │ │ ├── protocol.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── thrift.js │ │ │ │ │ ├── transport.js │ │ │ │ │ ├── web_server.js │ │ │ │ │ ├── ws_connection.js │ │ │ │ │ ├── ws_transport.js │ │ │ │ │ └── xhr_connection.js │ │ │ └── test │ │ │ │ ├── binary.test.js │ │ │ │ ├── certificates.README │ │ │ │ ├── client.js │ │ │ │ ├── deep-constructor.test.js │ │ │ │ ├── exceptions.js │ │ │ │ ├── helpers.js │ │ │ │ ├── server.crt │ │ │ │ ├── server.js │ │ │ │ ├── server.key │ │ │ │ ├── test-cases.js │ │ │ │ ├── testAll.sh │ │ │ │ ├── test_driver.js │ │ │ │ └── test_handler.js │ │ ├── nodets │ │ │ ├── Makefile.am │ │ │ ├── coding_standards.md │ │ │ └── test │ │ │ │ ├── client.ts │ │ │ │ ├── runClient.sh │ │ │ │ ├── runServer.sh │ │ │ │ ├── server.ts │ │ │ │ ├── test-cases.ts │ │ │ │ ├── testAll.sh │ │ │ │ ├── test_driver.ts │ │ │ │ ├── test_handler.ts │ │ │ │ └── tsconfig.json │ │ ├── ocaml │ │ │ ├── DEVELOPMENT │ │ │ ├── README.md │ │ │ ├── TODO │ │ │ ├── _oasis │ │ │ ├── coding_standards.md │ │ │ ├── descr │ │ │ ├── opam │ │ │ ├── src │ │ │ │ ├── TBinaryProtocol.ml │ │ │ │ ├── TChannelTransport.ml │ │ │ │ ├── TFramedTransport.ml │ │ │ │ ├── TServer.ml │ │ │ │ ├── TServerSocket.ml │ │ │ │ ├── TSimpleServer.ml │ │ │ │ ├── TSocket.ml │ │ │ │ ├── TThreadedServer.ml │ │ │ │ └── Thrift.ml │ │ │ └── url │ │ ├── perl │ │ │ ├── MANIFEST.SKIP │ │ │ ├── Makefile.PL │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── build-cpan-dist.sh │ │ │ ├── coding_standards.md │ │ │ ├── lib │ │ │ │ ├── Thrift.pm │ │ │ │ └── Thrift │ │ │ │ │ ├── BinaryProtocol.pm │ │ │ │ │ ├── BufferedTransport.pm │ │ │ │ │ ├── Exception.pm │ │ │ │ │ ├── FramedTransport.pm │ │ │ │ │ ├── HttpClient.pm │ │ │ │ │ ├── MemoryBuffer.pm │ │ │ │ │ ├── MessageType.pm │ │ │ │ │ ├── MultiplexedProcessor.pm │ │ │ │ │ ├── MultiplexedProtocol.pm │ │ │ │ │ ├── Protocol.pm │ │ │ │ │ ├── ProtocolDecorator.pm │ │ │ │ │ ├── SSLServerSocket.pm │ │ │ │ │ ├── SSLSocket.pm │ │ │ │ │ ├── Server.pm │ │ │ │ │ ├── ServerSocket.pm │ │ │ │ │ ├── Socket.pm │ │ │ │ │ ├── Transport.pm │ │ │ │ │ ├── Type.pm │ │ │ │ │ ├── UnixServerSocket.pm │ │ │ │ │ └── UnixSocket.pm │ │ │ ├── test.pl │ │ │ ├── test │ │ │ │ ├── Makefile.am │ │ │ │ ├── memory_buffer.t │ │ │ │ ├── multiplex.t │ │ │ │ └── processor.t │ │ │ └── tools │ │ │ │ └── FixupDist.pl │ │ ├── php │ │ │ ├── Makefile.am │ │ │ ├── README.apache.md │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── lib │ │ │ │ ├── Base │ │ │ │ │ └── TBase.php │ │ │ │ ├── ClassLoader │ │ │ │ │ └── ThriftClassLoader.php │ │ │ │ ├── Exception │ │ │ │ │ ├── TApplicationException.php │ │ │ │ │ ├── TException.php │ │ │ │ │ ├── TProtocolException.php │ │ │ │ │ └── TTransportException.php │ │ │ │ ├── Factory │ │ │ │ │ ├── TBinaryProtocolFactory.php │ │ │ │ │ ├── TCompactProtocolFactory.php │ │ │ │ │ ├── TJSONProtocolFactory.php │ │ │ │ │ ├── TProtocolFactory.php │ │ │ │ │ ├── TStringFuncFactory.php │ │ │ │ │ └── TTransportFactory.php │ │ │ │ ├── Protocol │ │ │ │ │ ├── JSON │ │ │ │ │ │ ├── BaseContext.php │ │ │ │ │ │ ├── ListContext.php │ │ │ │ │ │ ├── LookaheadReader.php │ │ │ │ │ │ └── PairContext.php │ │ │ │ │ ├── SimpleJSON │ │ │ │ │ │ ├── CollectionMapKeyException.php │ │ │ │ │ │ ├── Context.php │ │ │ │ │ │ ├── ListContext.php │ │ │ │ │ │ ├── MapContext.php │ │ │ │ │ │ └── StructContext.php │ │ │ │ │ ├── TBinaryProtocol.php │ │ │ │ │ ├── TBinaryProtocolAccelerated.php │ │ │ │ │ ├── TCompactProtocol.php │ │ │ │ │ ├── TJSONProtocol.php │ │ │ │ │ ├── TMultiplexedProtocol.php │ │ │ │ │ ├── TProtocol.php │ │ │ │ │ ├── TProtocolDecorator.php │ │ │ │ │ └── TSimpleJSONProtocol.php │ │ │ │ ├── Serializer │ │ │ │ │ └── TBinarySerializer.php │ │ │ │ ├── Server │ │ │ │ │ ├── TForkingServer.php │ │ │ │ │ ├── TSSLServerSocket.php │ │ │ │ │ ├── TServer.php │ │ │ │ │ ├── TServerSocket.php │ │ │ │ │ ├── TServerTransport.php │ │ │ │ │ └── TSimpleServer.php │ │ │ │ ├── StoredMessageProtocol.php │ │ │ │ ├── StringFunc │ │ │ │ │ ├── Core.php │ │ │ │ │ ├── Mbstring.php │ │ │ │ │ └── TStringFunc.php │ │ │ │ ├── TMultiplexedProcessor.php │ │ │ │ ├── Transport │ │ │ │ │ ├── TBufferedTransport.php │ │ │ │ │ ├── TCurlClient.php │ │ │ │ │ ├── TFramedTransport.php │ │ │ │ │ ├── THttpClient.php │ │ │ │ │ ├── TMemoryBuffer.php │ │ │ │ │ ├── TNullTransport.php │ │ │ │ │ ├── TPhpStream.php │ │ │ │ │ ├── TSSLSocket.php │ │ │ │ │ ├── TSocket.php │ │ │ │ │ ├── TSocketPool.php │ │ │ │ │ └── TTransport.php │ │ │ │ └── Type │ │ │ │ │ ├── TConstant.php │ │ │ │ │ ├── TMessageType.php │ │ │ │ │ └── TType.php │ │ │ ├── src │ │ │ │ ├── TStringUtils.php │ │ │ │ ├── Thrift.php │ │ │ │ ├── autoload.php │ │ │ │ └── ext │ │ │ │ │ └── thrift_protocol │ │ │ │ │ ├── php_thrift_protocol.cpp │ │ │ │ │ └── php_thrift_protocol.h │ │ │ ├── test │ │ │ │ ├── Fixtures.php │ │ │ │ ├── JsonSerialize │ │ │ │ │ └── JsonSerializeTest.php │ │ │ │ ├── Makefile.am │ │ │ │ ├── Protocol │ │ │ │ │ ├── BinarySerializerTest.php │ │ │ │ │ ├── TJSONProtocolFixtures.php │ │ │ │ │ ├── TJSONProtocolTest.php │ │ │ │ │ ├── TSimpleJSONProtocolFixtures.php │ │ │ │ │ └── TSimpleJSONProtocolTest.php │ │ │ │ ├── TestValidators.thrift │ │ │ │ └── Validator │ │ │ │ │ ├── BaseValidatorTest.php │ │ │ │ │ ├── ValidatorTest.php │ │ │ │ │ └── ValidatorTestOop.php │ │ │ └── thrift_protocol.ini │ │ ├── py │ │ │ ├── CMakeLists.txt │ │ │ ├── MANIFEST.in │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── compat │ │ │ │ └── win32 │ │ │ │ │ └── stdint.h │ │ │ ├── setup.cfg │ │ │ ├── setup.py │ │ │ ├── src │ │ │ │ ├── TMultiplexedProcessor.py │ │ │ │ ├── TRecursive.py │ │ │ │ ├── TSCons.py │ │ │ │ ├── TSerialization.py │ │ │ │ ├── TTornado.py │ │ │ │ ├── Thrift.py │ │ │ │ ├── __init__.py │ │ │ │ ├── compat.py │ │ │ │ ├── ext │ │ │ │ │ ├── binary.cpp │ │ │ │ │ ├── binary.h │ │ │ │ │ ├── compact.cpp │ │ │ │ │ ├── compact.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── module.cpp │ │ │ │ │ ├── protocol.h │ │ │ │ │ ├── protocol.tcc │ │ │ │ │ ├── types.cpp │ │ │ │ │ └── types.h │ │ │ │ ├── protocol │ │ │ │ │ ├── TBase.py │ │ │ │ │ ├── TBinaryProtocol.py │ │ │ │ │ ├── TCompactProtocol.py │ │ │ │ │ ├── THeaderProtocol.py │ │ │ │ │ ├── TJSONProtocol.py │ │ │ │ │ ├── TMultiplexedProtocol.py │ │ │ │ │ ├── TProtocol.py │ │ │ │ │ ├── TProtocolDecorator.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── server │ │ │ │ │ ├── THttpServer.py │ │ │ │ │ ├── TNonblockingServer.py │ │ │ │ │ ├── TProcessPoolServer.py │ │ │ │ │ ├── TServer.py │ │ │ │ │ └── __init__.py │ │ │ │ └── transport │ │ │ │ │ ├── THeaderTransport.py │ │ │ │ │ ├── THttpClient.py │ │ │ │ │ ├── TSSLSocket.py │ │ │ │ │ ├── TSocket.py │ │ │ │ │ ├── TTransport.py │ │ │ │ │ ├── TTwisted.py │ │ │ │ │ ├── TZlibTransport.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── sslcompat.py │ │ │ └── test │ │ │ │ ├── _import_local_thrift.py │ │ │ │ ├── test_sslsocket.py │ │ │ │ └── thrift_json.py │ │ ├── rb │ │ │ ├── Gemfile │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── Rakefile │ │ │ ├── benchmark │ │ │ │ ├── Benchmark.thrift │ │ │ │ ├── benchmark.rb │ │ │ │ ├── client.rb │ │ │ │ ├── server.rb │ │ │ │ └── thin_server.rb │ │ │ ├── coding_standards.md │ │ │ ├── ext │ │ │ │ ├── binary_protocol_accelerated.c │ │ │ │ ├── binary_protocol_accelerated.h │ │ │ │ ├── bytes.c │ │ │ │ ├── bytes.h │ │ │ │ ├── compact_protocol.c │ │ │ │ ├── compact_protocol.h │ │ │ │ ├── constants.h │ │ │ │ ├── extconf.rb │ │ │ │ ├── macros.h │ │ │ │ ├── memory_buffer.c │ │ │ │ ├── memory_buffer.h │ │ │ │ ├── protocol.c │ │ │ │ ├── protocol.h │ │ │ │ ├── strlcpy.c │ │ │ │ ├── strlcpy.h │ │ │ │ ├── struct.c │ │ │ │ ├── struct.h │ │ │ │ └── thrift_native.c │ │ │ ├── lib │ │ │ │ ├── thrift.rb │ │ │ │ └── thrift │ │ │ │ │ ├── bytes.rb │ │ │ │ │ ├── client.rb │ │ │ │ │ ├── core_ext.rb │ │ │ │ │ ├── core_ext │ │ │ │ │ └── fixnum.rb │ │ │ │ │ ├── exceptions.rb │ │ │ │ │ ├── multiplexed_processor.rb │ │ │ │ │ ├── processor.rb │ │ │ │ │ ├── protocol │ │ │ │ │ ├── base_protocol.rb │ │ │ │ │ ├── binary_protocol.rb │ │ │ │ │ ├── binary_protocol_accelerated.rb │ │ │ │ │ ├── compact_protocol.rb │ │ │ │ │ ├── json_protocol.rb │ │ │ │ │ ├── multiplexed_protocol.rb │ │ │ │ │ └── protocol_decorator.rb │ │ │ │ │ ├── serializer │ │ │ │ │ ├── deserializer.rb │ │ │ │ │ └── serializer.rb │ │ │ │ │ ├── server │ │ │ │ │ ├── base_server.rb │ │ │ │ │ ├── mongrel_http_server.rb │ │ │ │ │ ├── nonblocking_server.rb │ │ │ │ │ ├── simple_server.rb │ │ │ │ │ ├── thin_http_server.rb │ │ │ │ │ ├── thread_pool_server.rb │ │ │ │ │ └── threaded_server.rb │ │ │ │ │ ├── struct.rb │ │ │ │ │ ├── struct_union.rb │ │ │ │ │ ├── thrift_native.rb │ │ │ │ │ ├── transport │ │ │ │ │ ├── base_server_transport.rb │ │ │ │ │ ├── base_transport.rb │ │ │ │ │ ├── buffered_transport.rb │ │ │ │ │ ├── framed_transport.rb │ │ │ │ │ ├── http_client_transport.rb │ │ │ │ │ ├── io_stream_transport.rb │ │ │ │ │ ├── memory_buffer_transport.rb │ │ │ │ │ ├── server_socket.rb │ │ │ │ │ ├── socket.rb │ │ │ │ │ ├── ssl_server_socket.rb │ │ │ │ │ ├── ssl_socket.rb │ │ │ │ │ ├── unix_server_socket.rb │ │ │ │ │ └── unix_socket.rb │ │ │ │ │ ├── types.rb │ │ │ │ │ └── union.rb │ │ │ ├── script │ │ │ │ ├── proto_benchmark.rb │ │ │ │ ├── read_struct.rb │ │ │ │ └── write_struct.rb │ │ │ ├── spec │ │ │ │ ├── BaseService.thrift │ │ │ │ ├── ExtendedService.thrift │ │ │ │ ├── Referenced.thrift │ │ │ │ ├── ThriftNamespacedSpec.thrift │ │ │ │ ├── ThriftSpec.thrift │ │ │ │ ├── base_protocol_spec.rb │ │ │ │ ├── base_transport_spec.rb │ │ │ │ ├── binary_protocol_accelerated_spec.rb │ │ │ │ ├── binary_protocol_spec.rb │ │ │ │ ├── binary_protocol_spec_shared.rb │ │ │ │ ├── bytes_spec.rb │ │ │ │ ├── client_spec.rb │ │ │ │ ├── compact_protocol_spec.rb │ │ │ │ ├── exception_spec.rb │ │ │ │ ├── flat_spec.rb │ │ │ │ ├── http_client_spec.rb │ │ │ │ ├── json_protocol_spec.rb │ │ │ │ ├── namespaced_spec.rb │ │ │ │ ├── nonblocking_server_spec.rb │ │ │ │ ├── processor_spec.rb │ │ │ │ ├── serializer_spec.rb │ │ │ │ ├── server_socket_spec.rb │ │ │ │ ├── server_spec.rb │ │ │ │ ├── socket_spec.rb │ │ │ │ ├── socket_spec_shared.rb │ │ │ │ ├── spec_helper.rb │ │ │ │ ├── ssl_server_socket_spec.rb │ │ │ │ ├── ssl_socket_spec.rb │ │ │ │ ├── struct_nested_containers_spec.rb │ │ │ │ ├── struct_spec.rb │ │ │ │ ├── thin_http_server_spec.rb │ │ │ │ ├── types_spec.rb │ │ │ │ ├── union_spec.rb │ │ │ │ └── unix_socket_spec.rb │ │ │ └── thrift.gemspec │ │ ├── rs │ │ │ ├── Cargo.toml │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── src │ │ │ │ ├── autogen.rs │ │ │ │ ├── errors.rs │ │ │ │ ├── lib.rs │ │ │ │ ├── protocol │ │ │ │ │ ├── binary.rs │ │ │ │ │ ├── compact.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── multiplexed.rs │ │ │ │ │ └── stored.rs │ │ │ │ ├── server │ │ │ │ │ ├── mod.rs │ │ │ │ │ ├── multiplexed.rs │ │ │ │ │ └── threaded.rs │ │ │ │ └── transport │ │ │ │ │ ├── buffered.rs │ │ │ │ │ ├── framed.rs │ │ │ │ │ ├── mem.rs │ │ │ │ │ ├── mod.rs │ │ │ │ │ └── socket.rs │ │ │ └── test │ │ │ │ ├── Cargo.toml │ │ │ │ ├── Makefile.am │ │ │ │ ├── src │ │ │ │ ├── bin │ │ │ │ │ ├── kitchen_sink_client.rs │ │ │ │ │ └── kitchen_sink_server.rs │ │ │ │ └── lib.rs │ │ │ │ └── thrifts │ │ │ │ ├── Base_One.thrift │ │ │ │ ├── Base_Two.thrift │ │ │ │ ├── Midlayer.thrift │ │ │ │ └── Ultimate.thrift │ │ ├── st │ │ │ ├── README.md │ │ │ ├── coding_standards.md │ │ │ ├── package.xml │ │ │ └── thrift.st │ │ ├── swift │ │ │ ├── Package.swift │ │ │ ├── README.md │ │ │ ├── Sources │ │ │ │ ├── LinuxHelper.swift │ │ │ │ ├── TApplicationError.swift │ │ │ │ ├── TBinary.swift │ │ │ │ ├── TBinaryProtocol.swift │ │ │ │ ├── TClient.swift │ │ │ │ ├── TCompactProtocol.swift │ │ │ │ ├── TEnum.swift │ │ │ │ ├── TError.swift │ │ │ │ ├── TFileHandleTransport.swift │ │ │ │ ├── TFileTransport.swift │ │ │ │ ├── TFramedTransport.swift │ │ │ │ ├── THTTPSessionTransport.swift │ │ │ │ ├── TList.swift │ │ │ │ ├── TMap.swift │ │ │ │ ├── TMemoryBufferTransport.swift │ │ │ │ ├── TMultiplexedProtocol.swift │ │ │ │ ├── TProcessor.swift │ │ │ │ ├── TProtocol.swift │ │ │ │ ├── TProtocolError.swift │ │ │ │ ├── TSSLSocketTransport.swift │ │ │ │ ├── TSSLSocketTransportError.swift │ │ │ │ ├── TSerializable.swift │ │ │ │ ├── TSet.swift │ │ │ │ ├── TSocketServer.swift │ │ │ │ ├── TSocketTransport.swift │ │ │ │ ├── TStreamTransport.swift │ │ │ │ ├── TStruct.swift │ │ │ │ ├── TTransport.swift │ │ │ │ ├── TTransportError.swift │ │ │ │ ├── TWrappedProtocol.swift │ │ │ │ └── Thrift.swift │ │ │ └── Tests │ │ │ │ ├── LinuxMain.swift │ │ │ │ └── ThriftTests │ │ │ │ ├── TBinaryProtocolTests.swift │ │ │ │ ├── TCompactProtocolTests.swift │ │ │ │ └── ThriftTests.swift │ │ ├── ts │ │ │ ├── coding_standards.md │ │ │ └── thrift.d.ts │ │ └── xml │ │ │ ├── Makefile.am │ │ │ ├── test │ │ │ ├── Makefile.am │ │ │ └── build.xml │ │ │ └── thrift-idl.xsd │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── phpcs.xml.dist │ │ ├── pull_request_template.md │ │ ├── sonar-project.properties │ │ ├── test │ │ ├── AnnotationTest.thrift │ │ ├── BrokenConstants.thrift │ │ ├── ConstantsDemo.thrift │ │ ├── DebugProtoTest.thrift │ │ ├── DenseLinkingTest.thrift │ │ ├── DocTest.thrift │ │ ├── DoubleConstantsTest.thrift │ │ ├── EnumContainersTest.thrift │ │ ├── EnumTest.thrift │ │ ├── FullCamelTest.thrift │ │ ├── Include.thrift │ │ ├── JavaBeansTest.thrift │ │ ├── JavaDeepCopyTest.thrift │ │ ├── JavaTypes.thrift │ │ ├── JsDeepConstructorTest.thrift │ │ ├── Makefile.am │ │ ├── ManyOptionals.thrift │ │ ├── ManyTypedefs.thrift │ │ ├── NameConflictTest.thrift │ │ ├── OptionalRequiredTest.thrift │ │ ├── README.md │ │ ├── Recursive.thrift │ │ ├── ReuseObjects.thrift │ │ ├── SmallTest.thrift │ │ ├── StressTest.thrift │ │ ├── ThriftTest.thrift │ │ ├── TypedefTest.thrift │ │ ├── UnsafeTypes.thrift │ │ ├── audit │ │ │ ├── README.md │ │ │ ├── break1.thrift │ │ │ ├── break10.thrift │ │ │ ├── break11.thrift │ │ │ ├── break12.thrift │ │ │ ├── break13.thrift │ │ │ ├── break14.thrift │ │ │ ├── break15.thrift │ │ │ ├── break16.thrift │ │ │ ├── break17.thrift │ │ │ ├── break18.thrift │ │ │ ├── break19.thrift │ │ │ ├── break2.thrift │ │ │ ├── break20.thrift │ │ │ ├── break21.thrift │ │ │ ├── break22.thrift │ │ │ ├── break23.thrift │ │ │ ├── break24.thrift │ │ │ ├── break25.thrift │ │ │ ├── break26.thrift │ │ │ ├── break27.thrift │ │ │ ├── break28.thrift │ │ │ ├── break29.thrift │ │ │ ├── break3.thrift │ │ │ ├── break30.thrift │ │ │ ├── break31.thrift │ │ │ ├── break32.thrift │ │ │ ├── break33.thrift │ │ │ ├── break34.thrift │ │ │ ├── break4.thrift │ │ │ ├── break5.thrift │ │ │ ├── break6.thrift │ │ │ ├── break7.thrift │ │ │ ├── break8.thrift │ │ │ ├── break9.thrift │ │ │ ├── test.thrift │ │ │ ├── thrift_audit_test.pl │ │ │ └── warning.thrift │ │ ├── c_glib │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── test_client.c │ │ │ │ ├── test_server.c │ │ │ │ ├── thrift_second_service_handler.c │ │ │ │ ├── thrift_second_service_handler.h │ │ │ │ ├── thrift_test_handler.c │ │ │ │ └── thrift_test_handler.h │ │ ├── cl │ │ │ ├── Makefile.am │ │ │ ├── implementation.lisp │ │ │ ├── make-test-client.lisp │ │ │ ├── make-test-server.lisp │ │ │ └── tests.lisp │ │ ├── cpp │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── StressTest.cpp │ │ │ │ ├── StressTestNonBlocking.cpp │ │ │ │ ├── TestClient.cpp │ │ │ │ ├── TestServer.cpp │ │ │ │ └── ThriftTest_extras.cpp │ │ ├── crossrunner │ │ │ ├── __init__.py │ │ │ ├── collect.py │ │ │ ├── compat.py │ │ │ ├── report.py │ │ │ ├── run.py │ │ │ ├── setup.cfg │ │ │ ├── test.py │ │ │ └── util.py │ │ ├── csharp │ │ │ ├── Makefile.am │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── TestClient.cs │ │ │ ├── TestServer.cs │ │ │ ├── ThriftTest.csproj │ │ │ └── ThriftTest.sln │ │ ├── dart │ │ │ ├── Makefile.am │ │ │ └── test_client │ │ │ │ ├── .analysis_options │ │ │ │ ├── bin │ │ │ │ └── main.dart │ │ │ │ └── pubspec.yaml │ │ ├── erl │ │ │ ├── Makefile.am │ │ │ ├── rebar.config │ │ │ └── src │ │ │ │ ├── test_client.erl │ │ │ │ ├── test_thrift_server.erl │ │ │ │ └── thrift_test.app.src │ │ ├── features │ │ │ ├── Makefile.am │ │ │ ├── container_limit.py │ │ │ ├── index.html │ │ │ ├── known_failures_Linux.json │ │ │ ├── local_thrift │ │ │ │ └── __init__.py │ │ │ ├── nosslv3.sh │ │ │ ├── setup.cfg │ │ │ ├── string_limit.py │ │ │ ├── tests.json │ │ │ ├── theader_binary.py │ │ │ ├── tls.sh │ │ │ └── util.py │ │ ├── go │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── bin │ │ │ │ ├── stress │ │ │ │ │ └── main.go │ │ │ │ ├── testclient │ │ │ │ │ └── main.go │ │ │ │ └── testserver │ │ │ │ │ └── main.go │ │ │ │ └── common │ │ │ │ ├── client.go │ │ │ │ ├── clientserver_test.go │ │ │ │ ├── context_test.go │ │ │ │ ├── printing_handler.go │ │ │ │ ├── server.go │ │ │ │ └── simple_handler.go │ │ ├── haxe │ │ │ ├── Makefile.am │ │ │ ├── TestClientServer.hxproj │ │ │ ├── cpp.hxml │ │ │ ├── csharp.hxml │ │ │ ├── flash.hxml │ │ │ ├── java.hxml │ │ │ ├── javascript.hxml │ │ │ ├── make_all.bat │ │ │ ├── make_all.sh │ │ │ ├── neko.hxml │ │ │ ├── php-web-server.hxml │ │ │ ├── php.hxml │ │ │ ├── project.hide │ │ │ ├── python.hxml │ │ │ ├── router.php │ │ │ └── src │ │ │ │ ├── Arguments.hx │ │ │ │ ├── Main.hx │ │ │ │ ├── TestClient.hx │ │ │ │ ├── TestMacro.hx │ │ │ │ ├── TestServer.hx │ │ │ │ ├── TestServerEventHandler.hx │ │ │ │ └── TestServerHandler.hx │ │ ├── hs │ │ │ ├── CMakeLists.txt │ │ │ ├── ConstantsDemo_Main.hs │ │ │ ├── DebugProtoTest_Main.hs │ │ │ ├── Include_Main.hs │ │ │ ├── Makefile.am │ │ │ ├── TestClient.hs │ │ │ ├── TestServer.hs │ │ │ ├── ThriftTestUtils.hs │ │ │ ├── ThriftTest_Main.hs │ │ │ └── run-test.sh │ │ ├── index.html │ │ ├── keys │ │ │ ├── CA.pem │ │ │ ├── README.md │ │ │ ├── client.crt │ │ │ ├── client.key │ │ │ ├── client.p12 │ │ │ ├── client.pem │ │ │ ├── client_v3.crt │ │ │ ├── client_v3.key │ │ │ ├── server.crt │ │ │ ├── server.key │ │ │ ├── server.p12 │ │ │ └── server.pem │ │ ├── known_failures_Linux.json │ │ ├── lua │ │ │ ├── Makefile.am │ │ │ ├── test_basic_client.lua │ │ │ └── test_basic_server.lua │ │ ├── netcore │ │ │ ├── Client │ │ │ │ ├── Client.csproj │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── TestClient.cs │ │ │ ├── Makefile.am │ │ │ ├── README.md │ │ │ ├── Server │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Server.csproj │ │ │ │ └── TestServer.cs │ │ │ ├── ThriftTest.sln │ │ │ ├── build.cmd │ │ │ └── build.sh │ │ ├── ocaml │ │ │ ├── client │ │ │ │ └── TestClient.ml │ │ │ └── server │ │ │ │ └── TestServer.ml │ │ ├── perl │ │ │ ├── Makefile.am │ │ │ ├── TestClient.pl │ │ │ └── TestServer.pl │ │ ├── php │ │ │ ├── Makefile.am │ │ │ ├── TestClassmap.php │ │ │ ├── TestClient.php │ │ │ ├── TestInline.php │ │ │ └── test_php.ini │ │ ├── py.tornado │ │ │ ├── Makefile.am │ │ │ ├── setup.cfg │ │ │ └── test_suite.py │ │ ├── py.twisted │ │ │ ├── Makefile.am │ │ │ ├── setup.cfg │ │ │ └── test_suite.py │ │ ├── py │ │ │ ├── CMakeLists.txt │ │ │ ├── FastbinaryTest.py │ │ │ ├── Makefile.am │ │ │ ├── RunClientServer.py │ │ │ ├── SerializationTest.py │ │ │ ├── TSimpleJSONProtocolTest.py │ │ │ ├── TestClient.py │ │ │ ├── TestEof.py │ │ │ ├── TestFrozen.py │ │ │ ├── TestRenderedDoubleConstants.py │ │ │ ├── TestServer.py │ │ │ ├── TestSocket.py │ │ │ ├── TestSyntax.py │ │ │ ├── explicit_module │ │ │ │ ├── runtest.sh │ │ │ │ ├── test1.thrift │ │ │ │ ├── test2.thrift │ │ │ │ └── test3.thrift │ │ │ ├── generate.cmake │ │ │ ├── setup.cfg │ │ │ └── util.py │ │ ├── rb │ │ │ ├── Gemfile │ │ │ ├── Makefile.am │ │ │ ├── benchmarks │ │ │ │ └── protocol_benchmark.rb │ │ │ ├── core │ │ │ │ ├── test_backwards_compatability.rb │ │ │ │ ├── test_exceptions.rb │ │ │ │ └── transport │ │ │ │ │ └── test_transport.rb │ │ │ ├── fixtures │ │ │ │ └── structs.rb │ │ │ ├── generation │ │ │ │ ├── test_enum.rb │ │ │ │ ├── test_recursive.rb │ │ │ │ └── test_struct.rb │ │ │ ├── integration │ │ │ │ ├── TestClient.rb │ │ │ │ └── TestServer.rb │ │ │ ├── test_helper.rb │ │ │ └── test_suite.rb │ │ ├── rebuild_known_failures.sh │ │ ├── result.js │ │ ├── rs │ │ │ ├── Cargo.toml │ │ │ ├── Makefile.am │ │ │ └── src │ │ │ │ ├── bin │ │ │ │ ├── test_client.rs │ │ │ │ └── test_server.rs │ │ │ │ └── lib.rs │ │ ├── test.py │ │ ├── tests.json │ │ ├── threads │ │ │ ├── ThreadsClient.cpp │ │ │ ├── ThreadsServer.cpp │ │ │ └── ThreadsTest.thrift │ │ └── valgrind.suppress │ │ └── tutorial │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── as3 │ │ ├── build.xml │ │ └── src │ │ │ └── CalculatorUI.as │ │ ├── c_glib │ │ ├── Makefile.am │ │ ├── c_glib_client.c │ │ └── c_glib_server.c │ │ ├── cl │ │ ├── Makefile.am │ │ ├── ensure-externals.sh │ │ ├── load-locally.lisp │ │ ├── make-tutorial-client.lisp │ │ ├── make-tutorial-server.lisp │ │ ├── shared-implementation.lisp │ │ ├── thrift-tutorial.asd │ │ └── tutorial-implementation.lisp │ │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── CppClient.cpp │ │ ├── CppServer.cpp │ │ └── Makefile.am │ │ ├── csharp │ │ ├── CsharpClient │ │ │ ├── CsharpClient.cs │ │ │ ├── CsharpClient.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── CsharpServer │ │ │ ├── CsharpServer.cs │ │ │ ├── CsharpServer.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── tutorial.sln │ │ ├── d │ │ ├── Makefile.am │ │ ├── async_client.d │ │ ├── client.d │ │ └── server.d │ │ ├── dart │ │ ├── Makefile.am │ │ ├── build.sh │ │ ├── client │ │ │ ├── .analysis_options │ │ │ ├── pubspec.yaml │ │ │ └── web │ │ │ │ ├── client.dart │ │ │ │ ├── index.html │ │ │ │ └── styles.css │ │ ├── console_client │ │ │ ├── .analysis_options │ │ │ ├── bin │ │ │ │ └── main.dart │ │ │ └── pubspec.yaml │ │ └── server │ │ │ ├── .analysis_options │ │ │ ├── bin │ │ │ └── main.dart │ │ │ └── pubspec.yaml │ │ ├── delphi │ │ ├── DelphiClient │ │ │ ├── DelphiClient.dpr │ │ │ └── DelphiClient.dproj │ │ ├── DelphiServer │ │ │ ├── DelphiServer.dpr │ │ │ └── DelphiServer.dproj │ │ └── Tutorial.groupproj │ │ ├── erl │ │ ├── README.md │ │ ├── client.erl │ │ ├── client.sh │ │ ├── json_client.erl │ │ ├── server.erl │ │ └── server.sh │ │ ├── go │ │ ├── Makefile.am │ │ ├── server.crt │ │ ├── server.key │ │ └── src │ │ │ ├── client.go │ │ │ ├── handler.go │ │ │ ├── main.go │ │ │ └── server.go │ │ ├── haxe │ │ ├── Makefile.am │ │ ├── Tutorial.hxproj │ │ ├── cpp.hxml │ │ ├── csharp.hxml │ │ ├── flash.hxml │ │ ├── java.hxml │ │ ├── javascript.hxml │ │ ├── make_all.bat │ │ ├── make_all.sh │ │ ├── neko.hxml │ │ ├── php-web-server.hxml │ │ ├── php.hxml │ │ ├── project.hide │ │ ├── python.hxml │ │ ├── router.php │ │ └── src │ │ │ ├── CalculatorHandler.hx │ │ │ └── Main.hx │ │ ├── hs │ │ ├── HaskellClient.hs │ │ ├── HaskellServer.hs │ │ ├── LICENSE │ │ ├── Makefile.am │ │ ├── Setup.lhs │ │ └── ThriftTutorial.cabal │ │ ├── java │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── build.xml │ │ └── src │ │ │ ├── CalculatorHandler.java │ │ │ ├── JavaClient.java │ │ │ └── JavaServer.java │ │ ├── js │ │ ├── Makefile.am │ │ ├── build.xml │ │ ├── src │ │ │ └── Httpd.java │ │ └── tutorial.html │ │ ├── netcore │ │ ├── Client │ │ │ ├── Client.csproj │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── launchSettings.json │ │ │ └── ThriftTest.pfx │ │ ├── Interfaces │ │ │ ├── Interfaces.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Makefile.am │ │ ├── README.md │ │ ├── Server │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── launchSettings.json │ │ │ ├── Server.csproj │ │ │ └── ThriftTest.pfx │ │ ├── Tutorial.sln │ │ ├── build.cmd │ │ └── build.sh │ │ ├── nodejs │ │ ├── Makefile.am │ │ ├── NodeClient.js │ │ ├── NodeClientPromise.js │ │ ├── NodeServer.js │ │ └── NodeServerPromise.js │ │ ├── ocaml │ │ ├── CalcClient.ml │ │ ├── CalcServer.ml │ │ ├── README.md │ │ └── _oasis │ │ ├── perl │ │ ├── PerlClient.pl │ │ └── PerlServer.pl │ │ ├── php │ │ ├── PhpClient.php │ │ ├── PhpServer.php │ │ └── runserver.py │ │ ├── py.tornado │ │ ├── Makefile.am │ │ ├── PythonClient.py │ │ └── PythonServer.py │ │ ├── py.twisted │ │ ├── Makefile.am │ │ ├── PythonClient.py │ │ ├── PythonServer.py │ │ └── PythonServer.tac │ │ ├── py │ │ ├── Makefile.am │ │ ├── PythonClient.py │ │ ├── PythonServer.py │ │ └── setup.cfg │ │ ├── rb │ │ ├── Makefile.am │ │ ├── RubyClient.rb │ │ └── RubyServer.rb │ │ ├── rs │ │ ├── Cargo.toml │ │ ├── Makefile.am │ │ ├── README.md │ │ └── src │ │ │ ├── bin │ │ │ ├── tutorial_client.rs │ │ │ └── tutorial_server.rs │ │ │ └── lib.rs │ │ ├── shared.thrift │ │ └── tutorial.thrift │ ├── python │ ├── README.md │ ├── gen-py │ │ └── __init__.py │ ├── hbase.thrift │ ├── hbase │ │ ├── THBaseService-remote │ │ ├── THBaseService.py │ │ ├── __init__.py │ │ ├── constants.py │ │ └── ttypes.py │ └── index.py │ └── python3 │ ├── README.md │ ├── gen-py │ └── __init__.py │ ├── hbase.thrift │ ├── hbase │ ├── THBaseService-remote │ ├── THBaseService.py │ ├── __init__.py │ ├── constants.py │ └── ttypes.py │ └── index.py ├── lindorm-stream ├── flink-udf │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── alibaba │ │ └── lindorm │ │ └── stream │ │ └── udf │ │ └── MD5HexFunction.java ├── udf-examples │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── alibaba │ │ └── lindorm │ │ └── stream │ │ └── engine │ │ └── function │ │ ├── udf │ │ └── Md5Udf.java │ │ └── udtf │ │ └── StringSplitUdtf.java └── udf │ ├── pom.xml │ └── src │ ├── main │ └── java │ │ └── com │ │ └── alibaba │ │ └── lindorm │ │ └── stream │ │ └── engine │ │ └── function │ │ ├── UdfFunction.java │ │ ├── UdfUtils.java │ │ ├── udaf │ │ └── UdafAnnotation.java │ │ ├── udf │ │ ├── Kudf.java │ │ └── UdfAnnotation.java │ │ └── udtf │ │ └── UdtfAnnotation.java │ └── test │ └── java │ └── com │ └── alibaba │ └── lindorm │ └── stream │ └── egine │ └── function │ ├── TestUdfAnnotation.java │ └── TestUdfUtils.java ├── lindormsql-druid ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── aliyun │ │ └── lindorm │ │ └── sql │ │ └── demo │ │ └── DruidPoolDemo.java │ └── resources │ ├── druid.properties │ └── logback.xml ├── lindormsql-go ├── demo │ └── demo.go ├── go.mod ├── go.sum ├── mapper_demo │ └── mapper_demo.go ├── prepare_demo │ └── prepare_demo.go └── util │ └── errutil.go ├── lindormsql-hibernate ├── pom.xml └── src │ ├── main │ ├── java │ │ ├── com │ │ │ └── aliyun │ │ │ │ └── lindorm │ │ │ │ └── LindormDialect.java │ │ └── entity │ │ │ └── UserEntity.java │ └── resources │ │ └── hibernate.cfg.xml │ └── test │ └── java │ └── test.java ├── lindormsql-java ├── pom.xml └── src │ └── main │ ├── java │ ├── Demo.java │ └── com │ │ └── aliyun │ │ └── lindorm │ │ └── sql │ │ └── demo │ │ ├── LindormSQLPoolDemo.java │ │ └── LindormSQLPoolDemo2.java │ └── resources │ └── pool.properties ├── lindormsql-mybatis ├── pom.xml └── src │ └── main │ ├── java │ ├── Cursor.java │ ├── CursorDemo.java │ ├── CursorMapper.java │ ├── Demo.java │ ├── User.java │ └── UserMapper.java │ └── resources │ ├── mybatis-config-cursor.xml │ └── mybatis-config.xml ├── lindormsql-python └── demo.py ├── lindormsql-spring ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ ├── aliyun │ │ └── lindorm │ │ │ └── LindormDialect.java │ │ └── example │ │ └── lindormsql_spring │ │ ├── LindormsqlSpringApplication.java │ │ ├── User.java │ │ ├── UserController.java │ │ ├── UserDao.java │ │ ├── UserService.java │ │ └── UserServiceImpl.java │ └── resources │ └── application.yml ├── lindormsql-spring2 ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── test_spring │ │ │ ├── TestSpringApplication.java │ │ │ ├── User.java │ │ │ ├── UserController.java │ │ │ ├── UserMapper.java │ │ │ ├── UserService.java │ │ │ └── UserServiceImpl.java │ └── resources │ │ └── application.yml │ └── test │ └── java │ └── com │ └── example │ └── test_spring │ └── TestSpringApplicationTests.java ├── phoenix ├── phoenix-4.x │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── aliyun │ │ └── phoenix │ │ └── TestPhoenixJDBC.java ├── phoenix-5.x │ ├── docs │ │ └── Phoenix-5.x-user-guide.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── go │ │ └── TestPhoenix.go │ │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ └── phoenix │ │ │ ├── PhoenixDataGeneratorTool.java │ │ │ ├── PhoenixThinClientUtil.java │ │ │ ├── TestPhoenix.java │ │ │ └── TestPhoenixPageQuery.java │ │ └── python │ │ └── TestPhoenix.py └── phoenix-mybatis │ ├── docs │ └── Phoenix-5.x-Mybatis-user-guide.md │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ └── phoenix │ │ │ └── mybatis │ │ │ ├── Application.java │ │ │ ├── PhoenixForMybatisConfiguration.java │ │ │ ├── bean │ │ │ └── UsPopulationDO.java │ │ │ └── mapper │ │ │ └── UsPopulationMapper.java │ └── resources │ │ ├── application.properties │ │ ├── log4j.xml │ │ └── sqlmapper │ │ └── UsPopulationMapper.xml │ └── test │ └── java │ └── com │ └── aliyun │ └── phoenix │ └── mybatis │ └── UsPopulationMapperTest.java ├── plugin ├── grafana-lindorm-datasource │ ├── README.md │ ├── img │ │ ├── aliyun.svg │ │ ├── temp_query.PNG │ │ └── temp_table.PNG │ ├── lindorm_lql_datasource_darwin_amd64 │ ├── lindorm_lql_datasource_linux_amd64 │ ├── module.js │ ├── module.js.LICENSE.txt │ ├── module.js.map │ └── plugin.json └── redash-lindorm-datasource │ ├── Lindorm.png │ ├── README.md │ ├── img │ ├── usage_hint_1.PNG │ └── usage_hint_2.PNG │ └── lindorm.py ├── pom.xml ├── solr ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── aliyun │ └── solr │ ├── SolrAddDocumentDemo.java │ └── SolrQueryDemo.java ├── spark ├── airflow │ ├── contrib │ │ └── operators │ │ │ └── livy_spark_operator.py │ └── example_dags │ │ └── example_livy_operator.py ├── common-test │ ├── pom.xml │ ├── resources │ │ ├── kafka.properties │ │ └── kafka_client_jaas.conf │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ ├── datahub │ │ │ └── DatahubWrite_java.java │ │ │ └── kafka │ │ │ ├── JavaKafkaConfigurer.java │ │ │ ├── KafkaProducerDemoForPublicNet_java.java │ │ │ ├── KafkaProducerDemoForTableData_java.java │ │ │ └── KafkaProducerDemo_java.java │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── adb │ │ └── CreateSampleTable.scala ├── docs │ ├── Airflow_User_Manual.pdf │ └── Zeppelin_User_Manual.pdf ├── example-dependency │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── spark │ │ └── AddFunction.scala ├── libs │ └── spark-tensorflow-connector_2.11-1.10.0.jar ├── python │ ├── hbase │ │ ├── PythonSparkOnHBaseJDBC.py │ │ └── SparkOnHBaseSparkSession.py │ ├── maxcompute │ │ ├── SparkOnMaxcomputeSparkSession.py │ │ └── odps.py │ ├── phoenix │ │ ├── PythonSparkOnPhoenixJDBC.py │ │ └── SparkOnPhoenixSparkSession.py │ ├── polardb │ │ └── SparkOnPolardbSparkSession.py │ ├── sparkstreaming │ │ ├── KafkaWordCount.py │ │ ├── SparkstreamingOnKafkaWriteToParquet.py │ │ └── SparkstreamingOnLogHub.py │ └── structstreaming │ │ └── FromKafkaToKafka.py ├── spark-examples │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ └── spark │ │ │ ├── JavaSparkPi.java │ │ │ ├── hbase │ │ │ └── JavaSparkOnHBaseSparkSession.java │ │ │ ├── phoenix │ │ │ ├── JavaSparkOnPhoenix4xSparkSession.java │ │ │ └── JavaSparkOnPhoenix5xSparkSession.java │ │ │ └── tablestore │ │ │ └── JavaSparkOnTableStore.java │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── spark │ │ ├── SparkPi.scala │ │ ├── adb │ │ ├── SparkOnADBMySQLSparkSession.scala │ │ └── SparkOnADBPostgreSQLSparkSession.scala │ │ ├── drds │ │ └── SparkOnDRDSSparkSession.scala │ │ ├── hbase │ │ └── SparkOnHBaseSparkSession.scala │ │ ├── maxcompute │ │ ├── MaxComputeDataSourcePartitionSample.scala │ │ └── MaxComputeDataSourceSample.scala │ │ ├── mongodb │ │ └── SparkOnMongoDBSparkSession.scala │ │ ├── oss │ │ └── SparkOnOSSSparkSession.scala │ │ ├── phoenix │ │ ├── SparkOnPhoenix4xSparkSession.scala │ │ └── SparkOnPhoenix5xSparkSession.scala │ │ ├── polardb │ │ ├── SparkOnPOLARDBSparkSession.scala │ │ ├── SparkOnPolarDBArchive.scala │ │ ├── SparkOnPolarDBArchiveByPartition.scala │ │ └── SparkOnPolarDBIncrement.scala │ │ ├── rds │ │ ├── SparkOnRDSMySQLSparkSession.scala │ │ ├── SparkOnRDSPostgreSQLSparkSession.scala │ │ └── SparkOnRDSSqlServerSparkSession.scala │ │ ├── redis │ │ └── SparkOnRedisSparkSession.scala │ │ └── sparksql │ │ └── SparkSqlSparkSession.scala ├── spark-jdbc │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ └── spark │ │ │ ├── JavaSparkOnHBaseJDBC.java │ │ │ └── JavaSparkOnPhoenixJDBC.java │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── spark │ │ ├── SparkOnHBaseJDBC.scala │ │ └── SparkOnPhoenixJDBC.scala ├── sparkstreaming │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── aliyun │ │ │ └── spark │ │ │ ├── JavaSparkStreamingOnKafka010.java │ │ │ ├── JavaSparkStreamingOnKafka010ToHBase.java │ │ │ └── Message.java │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── spark │ │ ├── BroadCastHBaseConnection.scala │ │ ├── SparkStreamingOnDataHub.scala │ │ ├── SparkStreamingOnKafka010.scala │ │ ├── SparkStreamingOnKafka010ToHBase.scala │ │ ├── SparkStreamingOnKafka010ToHBasePerformance.scala │ │ ├── SparkStreamingOnKafka010ToPhoenix4x.scala │ │ ├── SparkStreamingOnKafka010ToPhoenix5x.scala │ │ ├── SparkStreamingOnKafka010_RDDToDF.scala │ │ ├── SparkStreamingOnLogHub.scala │ │ ├── SparkStreamingOnLogHubToHBasePerformance.scala │ │ ├── SparkStreamingOnLogHubToPhoenix4x.scala │ │ ├── common │ │ └── Phoenix5xConnectionPool.scala │ │ ├── manageroffset │ │ └── SparkWriteKafkaOffsetBackToKafka.scala │ │ └── streamingjoin │ │ ├── SparkStreamingJoinTwoStreams.scala │ │ └── SparkStreamingJoinTwoStreamsSql.scala ├── structuredstreaming │ ├── pom.xml │ └── src │ │ └── main │ │ └── scala │ │ └── com │ │ └── aliyun │ │ └── spark │ │ ├── kafka │ │ └── StructredStreamingToKafkaWithPublicNet.scala │ │ ├── redis │ │ ├── ClickForeachWriter.scala │ │ └── StructuredStremingWithRedisStream.scala │ │ └── sink │ │ └── PostgreSqlSink.scala └── zeppelin-notebooks-for-debug │ ├── zeppelin_dependency_jars_case.scala │ ├── zeppelin_normal_pyspark_case.py │ ├── zeppelin_normal_scala_case.scala │ ├── zeppelin_pysparkonphoenix_case.py │ ├── zeppelin_sparkonhbase_scala_case.scala │ └── zeppelin_sparkonphoenix_scala_case.scala └── unified-file-service ├── pom.xml └── src └── main ├── java └── cn │ └── alibaba │ └── mob │ ├── TMobApplication.java │ ├── common │ ├── ResultSet.java │ ├── ResultSetCode.java │ ├── TimeUtil.java │ ├── TmobUtil.java │ └── dto │ │ ├── TmobBucket.java │ │ ├── TmobObject.java │ │ ├── TmobObjectMeta.java │ │ ├── TmobRegion.java │ │ └── TmobType.java │ ├── controller │ ├── BucketController.java │ └── ObjectController.java │ ├── filter │ └── PostDataDumperFilter.java │ └── service │ ├── BucketService.java │ ├── HbaseBucketServiceImpl.java │ ├── HbaseObjectServiceImpl.java │ ├── HbaseService.java │ ├── HdfsService.java │ └── ObjectService.java └── resources ├── application-dev.properties ├── application.properties ├── application.yml └── log4j.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/README.md -------------------------------------------------------------------------------- /hbase/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/pom.xml -------------------------------------------------------------------------------- /hbase/src/main/java/com/aliyun/hbase/HBaseDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/src/main/java/com/aliyun/hbase/HBaseDemo.java -------------------------------------------------------------------------------- /hbase/thrift2/cpp/AliTHttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/AliTHttpClient.cpp -------------------------------------------------------------------------------- /hbase/thrift2/cpp/AliTHttpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/AliTHttpClient.h -------------------------------------------------------------------------------- /hbase/thrift2/cpp/HbaseClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/HbaseClient.cpp -------------------------------------------------------------------------------- /hbase/thrift2/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/THBaseService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/THBaseService.cpp -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/THBaseService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/THBaseService.h -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/hbase_constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/hbase_constants.cpp -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/hbase_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/hbase_constants.h -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/hbase_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/hbase_types.cpp -------------------------------------------------------------------------------- /hbase/thrift2/cpp/gen-cpp/hbase_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/gen-cpp/hbase_types.h -------------------------------------------------------------------------------- /hbase/thrift2/cpp/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/cpp/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/README.md -------------------------------------------------------------------------------- /hbase/thrift2/go/gen-go/hbase/GoUnusedProtection__.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/gen-go/hbase/GoUnusedProtection__.go -------------------------------------------------------------------------------- /hbase/thrift2/go/gen-go/hbase/hbase-consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/gen-go/hbase/hbase-consts.go -------------------------------------------------------------------------------- /hbase/thrift2/go/gen-go/hbase/hbase.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/gen-go/hbase/hbase.go -------------------------------------------------------------------------------- /hbase/thrift2/go/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/go/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/go/index.go -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/gen-nodejs/THBaseService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/gen-nodejs/THBaseService.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/gen-nodejs/hbase_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/gen-nodejs/hbase_types.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/index.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/.bin/marked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/.bin/marked -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/async-limiter/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | .nyc_output -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/async-limiter/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/async-limiter/.nycrc -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/async-limiter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/async-limiter/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/async-limiter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/async-limiter/index.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/async-limiter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/async-limiter/readme.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/LICENSE.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/bin/marked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/bin/marked -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/lib/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/lib/marked.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/man/marked.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/man/marked.1 -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/man/marked.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/man/marked.1.txt -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/marked.min.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/marked/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/marked/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/Int64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/node-int64/Int64.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/node-int64/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/node-int64/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/node-int64/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/node-int64/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/node-int64/test.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/CHANGES.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/q.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/q/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/q/queue.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/thrift/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/thrift/CHANGES -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/thrift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/thrift/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/thrift/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/thrift/NOTICE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/thrift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/thrift/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/thrift/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/thrift/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/utf8/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/utf8/LICENSE-MIT.txt -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/utf8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/utf8/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/utf8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/utf8/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/utf8/utf8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/utf8/utf8.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/README.md -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/index.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/buffer-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/buffer-util.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/constants.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/event-target.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/event-target.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/extension.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/receiver.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/sender.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/validation.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/lib/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/lib/websocket.js -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/node_modules/ws/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/node_modules/ws/package.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/package-lock.json -------------------------------------------------------------------------------- /hbase/thrift2/nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/nodejs/package.json -------------------------------------------------------------------------------- /hbase/thrift2/php/0.12.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/0.12.0.zip -------------------------------------------------------------------------------- /hbase/thrift2/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TAppend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TAppend.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TAuthorization.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TBloomFilterType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TBloomFilterType.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TCellVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TCellVisibility.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TColumn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TColumn.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TColumnFamilyDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TColumnFamilyDescriptor.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TColumnIncrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TColumnIncrement.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TColumnValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TColumnValue.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TCompareOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TCompareOp.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TCompressionAlgorithm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TCompressionAlgorithm.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TConsistency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TConsistency.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TDataBlockEncoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TDataBlockEncoding.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TDelete.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TDeleteType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TDeleteType.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TDurability.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TDurability.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TGet.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseServiceClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseServiceClient.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseServiceIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseServiceIf.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_append_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_append_args.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_append_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_append_result.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_exists_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_exists_args.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_exists_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_exists_result.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_get_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_get_args.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_get_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_get_result.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_put_args.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_put_args.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THBaseService_put_result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THBaseService_put_result.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THRegionInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THRegionInfo.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/THRegionLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/THRegionLocation.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TIOError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TIOError.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TIllegalArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TIllegalArgument.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TIncrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TIncrement.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TKeepDeletedCells.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TKeepDeletedCells.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TMutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TMutation.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TNamespaceDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TNamespaceDescriptor.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TPut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TPut.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TReadType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TReadType.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TResult.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TRowMutations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TRowMutations.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TScan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TScan.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TServerName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TServerName.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TTableDescriptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TTableDescriptor.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TTableName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TTableName.php -------------------------------------------------------------------------------- /hbase/thrift2/php/gen-php/TTimeRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/gen-php/TTimeRange.php -------------------------------------------------------------------------------- /hbase/thrift2/php/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/index.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.clang-format -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.editorconfig -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.eslintignore -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.eslintrc.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.github/stale.yml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.rustfmt.toml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/.travis.yml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/CHANGES -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/CONTRIBUTING.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/LANGUAGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/LANGUAGES.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/NOTICE -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/Thrift-swift3.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/Thrift-swift3.podspec -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/Thrift.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/Thrift.podspec -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ac_prog_bison.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ac_prog_bison.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ax_boost_base.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ax_boost_base.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ax_dmd.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ax_dmd.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lib_event.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lib_event.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lib_zlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lib_zlib.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lua.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/aclocal/ax_lua.m4 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/appveyor.yml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/bootstrap.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/bower.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/appveyor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/appveyor/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/cmake/FindAnt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/cmake/FindAnt.cmake -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/cmake/FindGHC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/cmake/FindGHC.cmake -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/cmake/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/cmake/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/cmake/config.h.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/docker/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/docker/refresh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/docker/refresh.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/docker/run.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/docker/scripts/autotools.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -ev 3 | 4 | ./bootstrap.sh 5 | ./configure $* 6 | make check -j3 7 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/build/wincpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/build/wincpp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/cleanup.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/compiler/cpp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/compiler/cpp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/compiler.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/compiler/cpp/compiler.sln -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/src/thrift/generate/thrift-t_php_generator.o-a60a38e9: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/compiler/Single.thrift: -------------------------------------------------------------------------------- 1 | const string foo = "bar" 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/const1_return.thrift: -------------------------------------------------------------------------------- 1 | const bool return = 0 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/enum1_return.thrift: -------------------------------------------------------------------------------- 1 | enum return { 2 | } 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/enum2_return.thrift: -------------------------------------------------------------------------------- 1 | enum enum_name { 2 | return 3 | } 4 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/exception1_return.thrift: -------------------------------------------------------------------------------- 1 | exception return {} 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/service1_return.thrift: -------------------------------------------------------------------------------- 1 | service return {} 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/struct1_return.thrift: -------------------------------------------------------------------------------- 1 | struct return {} 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/typedef1_return.thrift: -------------------------------------------------------------------------------- 1 | typedef bool return 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/compiler/cpp/test/keyword-samples/union1_return.thrift: -------------------------------------------------------------------------------- 1 | union return {} 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/composer.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/configure.ac -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/App.config -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/Program.cs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/Rebus/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/Stomp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/Stomp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/Vagrantfile -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/fb303/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/fb303/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/fb303/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/fb303/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/fb303/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/fb303/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/fb303/py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/fb303/py/setup.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/thrift.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/thrift.el -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/thrift.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/thrift.spec -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/thrift.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/thrift.vim -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/thrift_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/thrift_dump.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/contrib/zeromq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/contrib/zeromq/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/changelog -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/control -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/copyright -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/dirs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/libthrift0.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/libthrift0.install -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/php5-thrift.dirs: -------------------------------------------------------------------------------- 1 | etc/php5/conf.d 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/rules -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/substvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/debian/substvars -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/thrift-doc.docs: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/debian/thrift-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doap.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doap.rdf -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/coding_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/coding_standards.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/committers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/committers.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/images/cgrn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/images/cgrn.png -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/images/cred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/images/cred.png -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/images/credfull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/images/credfull.png -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/images/cyel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/images/cyel.png -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/install/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/install/centos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/install/centos.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/install/debian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/install/debian.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/install/os_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/install/os_x.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/install/windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/install/windows.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/licenses/lgpl-2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/licenses/lgpl-2.1.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/specs/HeaderFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/specs/HeaderFormat.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/specs/idl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/specs/idl.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/specs/thrift-rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/specs/thrift-rpc.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/doc/specs/thrift.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/doc/specs/thrift.tex -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/dub.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/as3/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/as3/build.properties -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/as3/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/as3/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/c_glib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/c_glib/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/c_glib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/c_glib/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/c_glib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/c_glib/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cl/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cl/load-locally.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cl/load-locally.lisp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TEnum.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TEnum.swift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TError.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TError.m -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TList.swift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TMap.swift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/TSet.swift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/Thrift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cocoa/src/Thrift.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/3rdparty.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/3rdparty.props -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/libthrift.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/libthrift.vcxproj -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/EnumTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/EnumTest.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/ZlibTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/test/ZlibTest.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-nb.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-nb.pc.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-qt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-qt.pc.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-qt5.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-qt5.pc.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-z.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift-z.pc.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift.pc.in -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/cpp/thrift.sln -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/csharp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/csharp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/csharp/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/csharp/src/Thrift.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/csharp/src/Thrift.sln -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/coding_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/coding_standards.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/src/thrift/base.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/src/thrift/base.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/src/thrift/index.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/src/thrift/index.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/test/async_test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/test/async_test.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/d/test/test_utils.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/d/test/test_utils.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/LICENSE_HEADER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/LICENSE_HEADER -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/lib/thrift.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/lib/thrift.dart -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/pubspec.yaml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/dart/tool/dev.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/dart/tool/dev.dart -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/delphi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/delphi/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/delphi/src/Thrift.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/delphi/src/Thrift.pas -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/erl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/erl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/erl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/erl/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/erl/rebar.config: -------------------------------------------------------------------------------- 1 | {erl_opts, [{platform_define, "^R.*", otp16_or_less}, debug_info]}. 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/erl/rebar.test.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/erl/rebar.test.config -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/client.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/context.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/field.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/numeric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/numeric.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/protocol.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/server.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/socket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/socket.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/go/thrift/type.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/haxelib.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/cpp.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/csharp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/csharp.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/flash.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/flash.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/java.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/java.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/make_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/make_all.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/neko.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/neko.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/php.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/php.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/python.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/python.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/haxe/test/src/Main.hx -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/Setup.lhs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/TODO -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/src/Thrift.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/src/Thrift.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/test/BinarySpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/test/BinarySpec.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/test/JSONSpec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/test/JSONSpec.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/test/Spec.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/hs/thrift.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/hs/thrift.cabal -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='thrift' 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/build.gradle -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/gradlew -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/gradlew.bat -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/settings.gradle -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/test/.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/test/.keystore -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/java/test/.truststore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/java/test/.truststore -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/Gruntfile.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/package-lock.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/package.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/src/thrift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/src/thrift.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-async.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-es6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-es6.html -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-es6.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-jq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-jq.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-nojq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test-nojq.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test.html -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/test.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/js/test/testws.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/js/test/testws.html -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/json/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/json/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/json/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/json/schema.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/json/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/json/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/json/test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/json/test/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TJsonProtocol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TJsonProtocol.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TMemoryBuffer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TMemoryBuffer.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TProtocol.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TProtocol.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TServer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TServer.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TSocket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TSocket.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/TTransport.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/TTransport.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/Thrift.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/Thrift.lua -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luabitwise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luabitwise.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luabpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luabpack.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luasocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/src/luasocket.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/src/socket.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/lua/src/usocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/lua/src/usocket.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/Thrift.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/Thrift.sln -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/build.cmd -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/build.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/runtests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/runtests.cmd -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/netcore/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/netcore/runtests.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodejs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodejs/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodejs/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodejs/test/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodejs/test/client.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodejs/test/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodejs/test/server.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodets/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodets/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodets/test/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodets/test/client.ts -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/nodets/test/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/nodets/test/server.ts -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/DEVELOPMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/DEVELOPMENT -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/TODO -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/_oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/_oasis -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/descr: -------------------------------------------------------------------------------- 1 | OCaml bindings for the Apache Thrift RPC system 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/opam -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/TServer.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/TServer.ml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/TSocket.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/TSocket.ml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/Thrift.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/src/Thrift.ml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ocaml/url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ocaml/url -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/MANIFEST.SKIP -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/Makefile.PL -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/lib/Thrift.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/lib/Thrift.pm -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/test.pl -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/test/multiplex.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/test/multiplex.t -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/perl/test/processor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/perl/test/processor.t -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/README.apache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/README.apache.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/src/Thrift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/src/Thrift.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/src/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/src/autoload.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/test/Fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/test/Fixtures.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/php/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/php/thrift_protocol.ini: -------------------------------------------------------------------------------- 1 | extension=thrift_protocol.so 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include src/ext/* 2 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/setup.cfg -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/setup.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/TRecursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/TRecursive.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/TSCons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/TSCons.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/TTornado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/TTornado.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/Thrift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/Thrift.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/__init__.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/compat.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/binary.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/binary.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/compact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/compact.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/endian.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/module.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/protocol.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/types.cpp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/py/src/ext/types.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/Gemfile -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/Rakefile -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/bytes.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/bytes.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/constants.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/extconf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/extconf.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/macros.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/protocol.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/protocol.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/strlcpy.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/strlcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/strlcpy.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/struct.c -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/ext/struct.h -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/lib/thrift.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/lib/thrift.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/bytes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/bytes_spec.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/flat_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/flat_spec.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/types_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/types_spec.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/union_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/spec/union_spec.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rb/thrift.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rb/thrift.gemspec -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/Cargo.toml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/src/autogen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/src/autogen.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/src/errors.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/src/lib.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/src/server/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/src/server/mod.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/test/Cargo.toml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/rs/test/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/rs/test/src/lib.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/st/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/st/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/st/package.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/st/thrift.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/st/thrift.st -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/swift/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/swift/Package.swift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/swift/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/swift/Sources/Thrift.swift: -------------------------------------------------------------------------------- 1 | class Thrift { 2 | let version = "1.1.0" 3 | } 4 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/ts/thrift.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/ts/thrift.d.ts -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/xml/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/xml/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/xml/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/xml/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/xml/test/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/xml/test/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/lib/xml/thrift-idl.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/lib/xml/thrift-idl.xsd -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/package-lock.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/package.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/phpcs.xml.dist -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/pull_request_template.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/sonar-project.properties -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/ConstantsDemo.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/ConstantsDemo.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/DocTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/DocTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/EnumTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/EnumTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/FullCamelTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/FullCamelTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/Include.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/Include.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/JavaBeansTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/JavaBeansTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/JavaTypes.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/JavaTypes.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/ManyOptionals.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/ManyOptionals.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/ManyTypedefs.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/ManyTypedefs.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/Recursive.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/Recursive.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/ReuseObjects.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/ReuseObjects.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/SmallTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/SmallTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/StressTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/StressTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/ThriftTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/ThriftTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/TypedefTest.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/TypedefTest.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/UnsafeTypes.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/UnsafeTypes.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break1.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break1.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break10.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break10.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break11.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break11.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break12.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break12.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break13.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break13.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break14.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break14.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break15.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break15.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break16.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break16.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break17.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break17.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break18.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break18.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break19.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break19.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break2.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break2.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break20.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break20.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break21.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break21.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break22.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break22.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break23.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break23.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break24.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break24.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break25.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break25.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break26.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break26.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break27.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break27.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break28.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break28.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break29.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break29.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break3.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break3.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break30.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break30.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break31.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break31.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break32.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break32.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break33.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break33.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break34.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break34.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break4.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break4.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break5.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break5.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break6.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break6.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break7.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break7.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break8.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break8.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/break9.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/break9.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/test.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/test.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/audit/warning.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/audit/warning.thrift -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/c_glib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/c_glib/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/cl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/cl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/cl/tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/cl/tests.lisp -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/cpp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/crossrunner/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/crossrunner/run.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/crossrunner/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/crossrunner/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/crossrunner/test.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/crossrunner/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/crossrunner/util.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/csharp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/csharp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/csharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/csharp/Program.cs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/csharp/TestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/csharp/TestClient.cs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/csharp/TestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/csharp/TestServer.cs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/dart/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/dart/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/dart/test_client/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/erl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/erl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/erl/rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/erl/rebar.config -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/index.html -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/nosslv3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/nosslv3.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/tests.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/tls.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/features/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/features/util.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/go/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/go/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/cpp.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/csharp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/csharp.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/flash.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/flash.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/java.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/java.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/javascript.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/javascript.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/make_all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/make_all.bat -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/make_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/make_all.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/neko.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/neko.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/php.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/php.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/project.hide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/project.hide -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/python.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/python.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/router.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/haxe/src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/haxe/src/Main.hx -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/Include_Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/Include_Main.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/TestClient.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/TestClient.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/TestServer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/TestServer.hs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/hs/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/hs/run-test.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/index.html -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/CA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/CA.pem -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client.crt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client.key -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client.p12 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client.pem -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client_v3.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client_v3.crt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/client_v3.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/client_v3.key -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/server.crt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/server.key -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/server.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/server.p12 -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/keys/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/keys/server.pem -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/lua/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/lua/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/netcore/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/netcore/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/netcore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/netcore/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/netcore/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/netcore/build.cmd -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/netcore/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/netcore/build.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/perl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/perl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/perl/TestClient.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/perl/TestClient.pl -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/perl/TestServer.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/perl/TestServer.pl -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/php/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/php/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/php/TestClassmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/php/TestClassmap.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/php/TestClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/php/TestClient.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/php/TestInline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/php/TestInline.php -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/php/test_php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/php/test_php.ini -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py.tornado/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E402 3 | max-line-length = 100 4 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py.twisted/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E402 3 | max-line-length = 100 4 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/CMakeLists.txt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/FastbinaryTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/FastbinaryTest.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestClient.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestEof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestEof.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestFrozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestFrozen.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestServer.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestSocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestSocket.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/TestSyntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/TestSyntax.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/generate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/generate.cmake -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 100 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/py/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/py/util.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rb/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rb/Gemfile -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rb/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rb/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rb/test_helper.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rb/test_suite.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rb/test_suite.rb -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/result.js -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rs/Cargo.toml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rs/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/rs/src/lib.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/test.py -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/tests.json -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/test/valgrind.suppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/test/valgrind.suppress -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/as3/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/as3/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/cl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/cl/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/cpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/cpp/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/d/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/d/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/d/async_client.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/d/async_client.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/d/client.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/d/client.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/d/server.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/d/server.d -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/dart/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/dart/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/dart/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/dart/build.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/dart/client/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/dart/console_client/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/dart/server/.analysis_options: -------------------------------------------------------------------------------- 1 | analyzer: 2 | strong-mode: true 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/erl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/erl/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/erl/client.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/erl/client.erl -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/erl/client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/erl/client.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/erl/server.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/erl/server.erl -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/erl/server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/erl/server.sh -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/go/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/go/Makefile.am -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/go/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/go/server.crt -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/go/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/go/server.key -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/go/src/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/go/src/client.go -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/haxe/cpp.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/haxe/cpp.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/haxe/php.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/haxe/php.hxml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/hs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/hs/LICENSE -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/hs/Setup.lhs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/hs/Setup.lhs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/js/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/js/build.xml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/ocaml/_oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/ocaml/_oasis -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/py/setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | ignore = E402 3 | -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/rs/Cargo.toml -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/rs/README.md -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/rs/src/lib.rs -------------------------------------------------------------------------------- /hbase/thrift2/php/thrift-0.12.0/tutorial/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/php/thrift-0.12.0/tutorial/shared.thrift -------------------------------------------------------------------------------- /hbase/thrift2/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/README.md -------------------------------------------------------------------------------- /hbase/thrift2/python/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase/THBaseService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase/THBaseService-remote -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase/THBaseService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase/THBaseService.py -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase/__init__.py -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase/constants.py -------------------------------------------------------------------------------- /hbase/thrift2/python/hbase/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/hbase/ttypes.py -------------------------------------------------------------------------------- /hbase/thrift2/python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python/index.py -------------------------------------------------------------------------------- /hbase/thrift2/python3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/README.md -------------------------------------------------------------------------------- /hbase/thrift2/python3/gen-py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase.thrift -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase/THBaseService-remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase/THBaseService-remote -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase/THBaseService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase/THBaseService.py -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase/__init__.py -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase/constants.py -------------------------------------------------------------------------------- /hbase/thrift2/python3/hbase/ttypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/hbase/ttypes.py -------------------------------------------------------------------------------- /hbase/thrift2/python3/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/hbase/thrift2/python3/index.py -------------------------------------------------------------------------------- /lindorm-stream/flink-udf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindorm-stream/flink-udf/pom.xml -------------------------------------------------------------------------------- /lindorm-stream/udf-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindorm-stream/udf-examples/pom.xml -------------------------------------------------------------------------------- /lindorm-stream/udf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindorm-stream/udf/pom.xml -------------------------------------------------------------------------------- /lindormsql-druid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-druid/pom.xml -------------------------------------------------------------------------------- /lindormsql-druid/src/main/resources/druid.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-druid/src/main/resources/druid.properties -------------------------------------------------------------------------------- /lindormsql-druid/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-druid/src/main/resources/logback.xml -------------------------------------------------------------------------------- /lindormsql-go/demo/demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/demo/demo.go -------------------------------------------------------------------------------- /lindormsql-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/go.mod -------------------------------------------------------------------------------- /lindormsql-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/go.sum -------------------------------------------------------------------------------- /lindormsql-go/mapper_demo/mapper_demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/mapper_demo/mapper_demo.go -------------------------------------------------------------------------------- /lindormsql-go/prepare_demo/prepare_demo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/prepare_demo/prepare_demo.go -------------------------------------------------------------------------------- /lindormsql-go/util/errutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-go/util/errutil.go -------------------------------------------------------------------------------- /lindormsql-hibernate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-hibernate/pom.xml -------------------------------------------------------------------------------- /lindormsql-hibernate/src/test/java/test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-hibernate/src/test/java/test.java -------------------------------------------------------------------------------- /lindormsql-java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-java/pom.xml -------------------------------------------------------------------------------- /lindormsql-java/src/main/java/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-java/src/main/java/Demo.java -------------------------------------------------------------------------------- /lindormsql-java/src/main/resources/pool.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-java/src/main/resources/pool.properties -------------------------------------------------------------------------------- /lindormsql-mybatis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/pom.xml -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/Cursor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/Cursor.java -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/CursorDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/CursorDemo.java -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/CursorMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/CursorMapper.java -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/Demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/Demo.java -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/User.java -------------------------------------------------------------------------------- /lindormsql-mybatis/src/main/java/UserMapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-mybatis/src/main/java/UserMapper.java -------------------------------------------------------------------------------- /lindormsql-python/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-python/demo.py -------------------------------------------------------------------------------- /lindormsql-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-spring/pom.xml -------------------------------------------------------------------------------- /lindormsql-spring/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-spring/src/main/resources/application.yml -------------------------------------------------------------------------------- /lindormsql-spring2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-spring2/pom.xml -------------------------------------------------------------------------------- /lindormsql-spring2/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/lindormsql-spring2/src/main/resources/application.yml -------------------------------------------------------------------------------- /phoenix/phoenix-4.x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-4.x/pom.xml -------------------------------------------------------------------------------- /phoenix/phoenix-5.x/docs/Phoenix-5.x-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-5.x/docs/Phoenix-5.x-user-guide.md -------------------------------------------------------------------------------- /phoenix/phoenix-5.x/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-5.x/pom.xml -------------------------------------------------------------------------------- /phoenix/phoenix-5.x/src/main/go/TestPhoenix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-5.x/src/main/go/TestPhoenix.go -------------------------------------------------------------------------------- /phoenix/phoenix-5.x/src/main/python/TestPhoenix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-5.x/src/main/python/TestPhoenix.py -------------------------------------------------------------------------------- /phoenix/phoenix-mybatis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-mybatis/pom.xml -------------------------------------------------------------------------------- /phoenix/phoenix-mybatis/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | #数据源配置,这里填写hbase sql客户端访问地址 2 | spring.datasource.phoenix.server.url=http://localhost:8765 -------------------------------------------------------------------------------- /phoenix/phoenix-mybatis/src/main/resources/log4j.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/phoenix/phoenix-mybatis/src/main/resources/log4j.xml -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/README.md -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/img/aliyun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/img/aliyun.svg -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/img/temp_query.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/img/temp_query.PNG -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/img/temp_table.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/img/temp_table.PNG -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/module.js -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/module.js.map -------------------------------------------------------------------------------- /plugin/grafana-lindorm-datasource/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/grafana-lindorm-datasource/plugin.json -------------------------------------------------------------------------------- /plugin/redash-lindorm-datasource/Lindorm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/redash-lindorm-datasource/Lindorm.png -------------------------------------------------------------------------------- /plugin/redash-lindorm-datasource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/redash-lindorm-datasource/README.md -------------------------------------------------------------------------------- /plugin/redash-lindorm-datasource/img/usage_hint_1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/redash-lindorm-datasource/img/usage_hint_1.PNG -------------------------------------------------------------------------------- /plugin/redash-lindorm-datasource/img/usage_hint_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/redash-lindorm-datasource/img/usage_hint_2.PNG -------------------------------------------------------------------------------- /plugin/redash-lindorm-datasource/lindorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/plugin/redash-lindorm-datasource/lindorm.py -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/pom.xml -------------------------------------------------------------------------------- /solr/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/solr/pom.xml -------------------------------------------------------------------------------- /solr/src/main/java/com/aliyun/solr/SolrQueryDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/solr/src/main/java/com/aliyun/solr/SolrQueryDemo.java -------------------------------------------------------------------------------- /spark/airflow/contrib/operators/livy_spark_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/airflow/contrib/operators/livy_spark_operator.py -------------------------------------------------------------------------------- /spark/airflow/example_dags/example_livy_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/airflow/example_dags/example_livy_operator.py -------------------------------------------------------------------------------- /spark/common-test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/common-test/pom.xml -------------------------------------------------------------------------------- /spark/common-test/resources/kafka.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/common-test/resources/kafka.properties -------------------------------------------------------------------------------- /spark/common-test/resources/kafka_client_jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/common-test/resources/kafka_client_jaas.conf -------------------------------------------------------------------------------- /spark/docs/Airflow_User_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/docs/Airflow_User_Manual.pdf -------------------------------------------------------------------------------- /spark/docs/Zeppelin_User_Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/docs/Zeppelin_User_Manual.pdf -------------------------------------------------------------------------------- /spark/example-dependency/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/example-dependency/pom.xml -------------------------------------------------------------------------------- /spark/libs/spark-tensorflow-connector_2.11-1.10.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/libs/spark-tensorflow-connector_2.11-1.10.0.jar -------------------------------------------------------------------------------- /spark/python/hbase/PythonSparkOnHBaseJDBC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/hbase/PythonSparkOnHBaseJDBC.py -------------------------------------------------------------------------------- /spark/python/hbase/SparkOnHBaseSparkSession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/hbase/SparkOnHBaseSparkSession.py -------------------------------------------------------------------------------- /spark/python/maxcompute/odps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/maxcompute/odps.py -------------------------------------------------------------------------------- /spark/python/phoenix/PythonSparkOnPhoenixJDBC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/phoenix/PythonSparkOnPhoenixJDBC.py -------------------------------------------------------------------------------- /spark/python/phoenix/SparkOnPhoenixSparkSession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/phoenix/SparkOnPhoenixSparkSession.py -------------------------------------------------------------------------------- /spark/python/polardb/SparkOnPolardbSparkSession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/polardb/SparkOnPolardbSparkSession.py -------------------------------------------------------------------------------- /spark/python/sparkstreaming/KafkaWordCount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/sparkstreaming/KafkaWordCount.py -------------------------------------------------------------------------------- /spark/python/sparkstreaming/SparkstreamingOnLogHub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/sparkstreaming/SparkstreamingOnLogHub.py -------------------------------------------------------------------------------- /spark/python/structstreaming/FromKafkaToKafka.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/python/structstreaming/FromKafkaToKafka.py -------------------------------------------------------------------------------- /spark/spark-examples/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/spark-examples/pom.xml -------------------------------------------------------------------------------- /spark/spark-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/spark-jdbc/pom.xml -------------------------------------------------------------------------------- /spark/sparkstreaming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/sparkstreaming/pom.xml -------------------------------------------------------------------------------- /spark/structuredstreaming/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/spark/structuredstreaming/pom.xml -------------------------------------------------------------------------------- /unified-file-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aliyun/aliyun-apsaradb-hbase-demo/HEAD/unified-file-service/pom.xml --------------------------------------------------------------------------------