积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

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

语言

全部英语(240)中文(简体)(4)英语(2)

格式

全部PDF文档 PDF(237)PPT文档 PPT(9)
 
本次搜索耗时 0.120 秒,为您找到相关结果约 246 个.
  • 全部
  • 后端开发
  • C++
  • Conan
  • 全部
  • 英语
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Undefined Behavior: What Every Programmer Should Know and Fear

    it bool f(int i) { return i + 1 > i; } // Example 01 ● Signed integer overflow is UB ● UB never happens (compiler is not required to condone UB) ● i != INT_MAX ● i + 1 is always greater than i bool g(int it bool f(int i) { return i + 1 > i; } // Example 01 ● Signed integer overflow is UB ● UB never happens (compiler is not required to condone UB) ● i != INT_MAX ● i + 1 is always greater than i bool g(int int i = 1; int main() { cout << "Before" << endl; while (i) {} cout << "After" << endl; } ● GCC, O3: prints “Before” and hangs ● CLANG, O3: prints “Before”, “After”, and exitsUndefined Behavior
    0 码力 | 38 页 | 2.56 MB | 6 月前
    3
  • pdf文档 Building a Coroutine-Based Job System Without Standard Library

    What do we do? Before we get started, just a quick self introduction about my background, I am a real-time rendering engineer at NVIDIA working on the RTX renderer in Omniverse. Before that, I was rendering functions are compiled More resources: https://gist.github.com/MattPD/9b55db49537a90545a90447392ad3aeb Before we dive into the system, I want to take 10 mins to have a quick recap about C++ coroutine and share expression into code. 1. Retreive awaiter & awaitable 2. Awaiting the awaiter(suspend and resume happens here) Awaitable & awaiter & co_await Useful to know • According to the definition, a type can
    0 码力 | 120 页 | 2.20 MB | 6 月前
    3
  • pdf文档 Back to Basics: Pointers

    storing an int with value 7 ● Here we see ‘px’ again ● And we see an ‘asterisk’ before px ○ When an asterisk is before the variable name (and the type is a pointer), it means to retrieve the value at storing an int with value 7 ● Here we see ‘px’ again ● And we see an ‘asterisk’ before px ○ When an asterisk is before the variable name (and the type is a pointer), it means to retrieve the value at addresses (8/11) 36 ● Okay, so what happens with our pointer? ○ int x= 7; ○ int* px= &x; 7Visualizing Memory - Linear array of addresses (9/11) 37 ● Okay, so what happens with our pointer? ○ int x= 7;
    0 码力 | 152 页 | 5.61 MB | 6 月前
    3
  • pdf文档 Single Producer Single Consumer Lock-free FIFO From the Ground Up

    evaluations are atomic operations (see std::atomic ), or ■ one of the conflicting evaluations happens-before another (see std::memory_order ). If a data race occurs, the behavior of the program is undefined size_] if (popCursor_ < pushCursor_) ++popCursor_ if (pushCursor_ - popCursor_ != size_) need happens before Need atomic pushCursor_ and popCursor_24 template> (popCursor_ != pushCursor_) happens before new (&ring_[pushCursor_ % size_]) T(value) if (pushCursor_ - popCursor_ != size_) if (pushCursor_ - popCursor_ != size_) happens before release release acquire
    0 码力 | 51 页 | 546.30 KB | 6 月前
    3
  • pdf文档 Conan 2.0 Documentation

    with conan config install. Deployers run before generators, and they can change the target folders. For example, if the --deployer=full_deploy deployer runs before CMakeDeps, the files generated by CMakeDeps We used the CMake already installed in our system to build our compressor binary. However, what happens if you want to build your project with a specific CMake version, different from the one already installed was created in the same folder. If you source this file you can restore the environment as it was before. Listing 12: Windows $ deactivate_conanbuild.bat Listing 13: Linux, macOS $ source deactivate_conanbuild
    0 码力 | 652 页 | 4.00 MB | 1 年前
    3
  • pdf文档 Conan 2.1 Documentation

    with conan config install. Deployers run before generators, and they can change the target folders. For example, if the --deployer=full_deploy deployer runs before CMakeDeps, the files generated by CMakeDeps of those sources in your own server, so your builds are always fully reproducible, no matter what happens to the original internet sources. See also: • the backup-sources blog post 2.15. Package lists We used the CMake already installed in our system to build our compressor binary. However, what happens if you want to build your project with a specific CMake version, different from the one already installed
    0 码力 | 694 页 | 4.13 MB | 1 年前
    3
  • pdf文档 Conan 2.10 Documentation

    with conan config install. Deployers run before generators, and they can change the target folders. For example, if the --deployer=full_deploy deployer runs before CMakeDeps, the files generated by CMakeDeps of those sources in your own server, so your builds are always fully reproducible, no matter what happens to the original internet sources. See also: • the backup-sources blog post 2.18 Installing configuration We used the CMake already installed in our system to build our compressor binary. However, what happens if you want to build your project with a specific CMake version, different from the one already installed
    0 码力 | 803 页 | 5.02 MB | 10 月前
    3
  • pdf文档 Conan 2.9 Documentation

    with conan config install. Deployers run before generators, and they can change the target folders. For example, if the --deployer=full_deploy deployer runs before CMakeDeps, the files generated by CMakeDeps of those sources in your own server, so your builds are always fully reproducible, no matter what happens to the original internet sources. See also: • the backup-sources blog post 2.18 Installing configuration We used the CMake already installed in our system to build our compressor binary. However, what happens if you want to build your project with a specific CMake version, different from the one already installed
    0 码力 | 795 页 | 4.99 MB | 10 月前
    3
  • pdf文档 Back to Basics: Concurrency

    matters, and sometimes tasks have to wait on shared resources. 2. Parallelism Definition: Everything happens at once, instantaneously 18Parallelism vs Concurrency (programming context) (2/4) Concurrency is matters, and sometimes tasks have to wait on shared resources. 2. Parallelism Definition: Everything happens at once, instantaneously 19Parallelism vs Concurrency (programming context) (3/4) Concurrency is matters, and sometimes tasks have to wait on shared resources. 2. Parallelism Definition: Everything happens at once, instantaneously 20 “The world is concurrent.” - Joe ArmstrongParallelism vs Concurrency
    0 码力 | 141 页 | 6.02 MB | 6 月前
    3
  • pdf文档 Conan 2.5 Documentation

    with conan config install. Deployers run before generators, and they can change the target folders. For example, if the --deployer=full_deploy deployer runs before CMakeDeps, the files generated by CMakeDeps of those sources in your own server, so your builds are always fully reproducible, no matter what happens to the original internet sources. See also: • the backup-sources blog post 2.18 Installing configuration We used the CMake already installed in our system to build our compressor binary. However, what happens if you want to build your project with a specific CMake version, different from the one already installed
    0 码力 | 769 页 | 4.70 MB | 1 年前
    3
共 246 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 25
前往
页
相关搜索词
UndefinedBehaviorWhatEveryProgrammerShouldKnowandFearBuildingCoroutineBasedJobSystemWithoutStandardLibraryBacktoBasicsPointersSingleProducerConsumerLockfreeFIFOFromtheGroundUpConan2.0Documentation2.12.102.9Concurrency2.5
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩