积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(179)C++(179)Conan(74)

语言

全部英语(169)中文(简体)(9)中文(繁体)(1)

格式

全部PDF文档 PDF(167)PPT文档 PPT(10)TXT文档 TXT(2)
 
本次搜索耗时 0.022 秒,为您找到相关结果约 179 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • TXT文档 TXT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Code Generation from Unified Robot Description Format for Accelerated Robotics

    improvements of more than 500x overthe state-of-the-art Compilertakes in standard Unified Robot Description Format (URDF) files and generates optimized code Setup data structure to optimize SIMD execution Skip
    0 码力 | 93 页 | 9.29 MB | 6 月前
    3
  • pdf文档 Implementing C++ Modules: Lessons Learned, Lessons Abandoned

    CppCon 2021 Independently developed libraries Linker error: duplicate definition for exported symbols ‘f()’, needed by ‘lib_m1()’ and ‘lib_m2()’. Non-compositional semanticsStrong Module Ownership ▪ The MSVC toolset relies on the Abstract Semantics Graph (ASG) of a TU, persisted in the IFC format, Binary Module Interface (BMI)! – ASG contains all meaningful semantics information from the input symbol – The linker must build two sets: ▪ References to external linkage symbols ▪ Definitions of external linkage symbols – For external linkage names the “great hunt” begins… – If two definitions
    0 码力 | 53 页 | 1.33 MB | 6 月前
    3
  • pdf文档 A (Short) Tour of C++ Modules

    composition Visibility of Identifiers vs. Reachability of Declarations Relationships, linkage and linker symbols Modules in practice Moving towards modules (by example) Imports are different! Is it worth it namespace name '::A' is attached to the global module, as it is oblivious of module boundaries 21LINKER SYMBOLS export module mod3; int foo(); // module linkage, attached to module 'mod3' namespace 'mod3' return foo(); } } // namespace A 1 2 3 4 5 6 7 8 9 Strong ownership model, the linker symbols of exported names contain the module name they are attached to e.g. msvc Benefit: Identical
    0 码力 | 62 页 | 4.20 MB | 6 月前
    3
  • pdf文档 Shared Libraries

    addresses as resolved by the loader … … … https://learn.microsoft.com/en-us/windows/win32/debug/pe-format#the-idata-section 10 * Actually in section .rdata… .idata lib1: f1, f2, f3 lib2: g1, g2, g3 `global' can not be used when making a shared object; recompile with -fPIC • -fpic vs –fpie: • EXE symbols are relocatable but NOT interposable. Interprocedural optimizations apply. 24Lazy Binding (a linking against an import library • Minor optimization that happens in Release anyway • Most symbols are neither. exe ... call f() ... .idata dll1: __imp_f f(): jmp __imp_f() 41Symbol Visibility
    0 码力 | 69 页 | 1.40 MB | 6 月前
    3
  • pdf文档 Exploration of Strongly-typed Units: A Case Study from Digital Audio

    defined on the slide ●hello, units using namespace mp_units::si::unit_symbols; using namespace mp_units::international::unit_symbols; constexpr quantity v1 = 110 * (km / h); // 110 km/h constexpr quantity : named_unit<"16th", mag * EigthNote> {} SixteenthNote; // ... }namespace ni::unit_symbols { inline constexpr auto n_wd = 3 * HalfNote; inline constexpr auto n_w = WholeNote; inline constexpr constexpr auto n_8th = EigthNote; inline constexpr auto n_16th = SixteenthNote; }namespace ni::unit_symbols { inline constexpr auto n_wd = 3 * HalfNote; inline constexpr auto n_w = WholeNote; inline constexpr
    0 码力 | 106 页 | 5.66 MB | 6 月前
    3
  • pdf文档 Dynamically Loaded Libraries Outside the Standard

    CppCon 2021 | • Portable Executable format (PE) – exe, dll, etc. on Windows • Executable and Linkable Format (ELF) – for UNIX and UNIX-like OS • Mach Object file format (Mach-O) – executable, dylib, bundle if any call failed APIs: Win3211 CppCon 2021 | • dumpbin /exports repromath.dll Checkout what symbols are exported13 CppCon 2021 | double x[] = {1., 2., 3.}; double y[] = {4., -5., 6.}; auto lib = of the last error in dl APIs: POSIX15 CppCon 2021 | • objdump -T librepromath.so Checkout what symbols are exported17 CppCon 2021 | double x[] = {1., 2., 3.}; double y[] = {4., -5., 6.}; auto lib =
    0 码力 | 100 页 | 3.98 MB | 6 月前
    3
  • pdf文档 Compile-Time Compression and Resource Generation with C++20

    config_register.ld main.o objdump -ds config.out 8 . 10/ $ ./build.sh config.out: file format elf64-x86-64 Contents of section .config_registers: 0100 fd000002 fc000003 minimum metadata size 10 . 3/ $ objdump -s --section=.compressedmap example example: file format elf64-x86-64 Contents of section .compressedmap: 20c0 00000000 00000000 01000000 00000000 01006400 ' ( d 10 . 4/ Huffman coding (overview) Optimal encoding given the list of symbols and their frequency symbols are all characters in all strings Uses a min-heap priority_queue to build a tree bottom
    0 码力 | 59 页 | 1.86 MB | 6 月前
    3
  • pdf文档 Back to Basics: The structure of a Program

    namespace wikipedia { class article { public: std::string format(); // symbol: _ZN9wikipedia7article6formatB5cxx11Ev }; } std::string format(std::string const& fmt, int64_t val); // symbol: _Z6form to find their symbols • It determines a set of all symbols that are used by the program • It resolves references to internal and external symbols • It assigns addresses to the symbols representing functions
    0 码力 | 64 页 | 390.34 KB | 6 月前
    3
  • pdf文档 Shared Libraries and Where To Find Them

    Allows or disallows undefined symbols in shared libraries. This switch is similar to --no-undefined except that it determines the behaviour when the undefined symbols are in a shared does not affect how undefined symbols in regular object files are handled. The default behaviour is to report errors for any undefined symbols referenced in shared libraries dependencies / missing symbols libfoo.so libbar.so libmylib.so Linux ✅❓Indirect dependencies / missing symbols libfoo.so libbar.so libmylib.so macOS: errorIndirect dependencies / missing symbols libfoo.so libbar
    0 码力 | 94 页 | 6.49 MB | 6 月前
    3
  • pdf文档 Exceptional C++

    specified/returned if the ContextFlags word // contains the flag CONTEXT_EXTENDED_REGISTERS. // The format and contexts are processor specific BYTE ExtendedRegisters[MAXIMUM_SUPPORTED_EXTENSION]; swprintf_s(buf, MSG_BUFFER_LEN, L"%hs (0x%.8x) at address " ADDRESS_FORMAT SW_EOL, "ACCESS_VIOLATION", EXCEPTION_ACCESS_VIOLATION, aE wchar_t buf[MSG_BUFFER_LEN]; swprintf_s(buf, MSG_BUFFER_LEN, L"(0x%.8x) at address " ADDRESS_FORMAT SW_EOL, aExceptionInfo->ExceptionRecord->ExceptionCode, aExceptionIn
    0 码力 | 113 页 | 24.39 MB | 6 月前
    3
共 179 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 18
前往
页
相关搜索词
CodeGenerationfromUnifiedRobotDescriptionFormatforAcceleratedRoboticsImplementingC++ModulesLessonsLearnedAbandonedShortTourofSharedLibrariesExplorationStronglytypedUnitsCaseStudyDigitalAudioDynamicallyLoadedOutsidetheStandardCompileTimeCompressionandResourcewith20BacktoBasicsThestructureProgramWhereToFindThemExceptional
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩