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

无数据

分类

全部后端开发(134)Julia(87)云计算&大数据(31)Pandas(29)Python(26)Django(26)C++(13)数据库(9)PostgreSQL(8)系统运维(4)

语言

全部英语(166)中文(繁体)(10)中文(简体)(2)

格式

全部PDF文档 PDF(164)其他文档 其他(13)PPT文档 PPT(1)
 
本次搜索耗时 0.142 秒,为您找到相关结果约 178 个.
  • 全部
  • 后端开发
  • Julia
  • 云计算&大数据
  • Pandas
  • Python
  • Django
  • C++
  • 数据库
  • PostgreSQL
  • 系统运维
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Iteration Revisited

    ITERATION REVISITED ITERATION BASICS int arr[] = {1, 2, 3, 4, 5}; size_t sz = 5; for (size_t i = 0; i < sz; i�++) { do_something(arr[i]); } 2ITERATION REVISITED ITERATION BASICS for (size_t do_something(arr[i]); } 3ITERATION REVISITED ITERATION BASICS for (int* p = arr; p �!= arr + sz; �++p) { do_something(*p); } 4ITERATION REVISITED ITERATION BASICS for (int* p = std�::begin(arr); do_something(*p); } 5ITERATION REVISITED ITERATION BASICS for (auto iter = std�::begin(arr); iter �!= std�::end(arr); �++iter) { do_something(*iter); } 6ITERATION REVISITED STL ITERATORS ▸
    0 码力 | 56 页 | 5.27 MB | 5 月前
    3
  • pdf文档 Regular, Revisited

    2023 Victor Ciura | @ciura_victor - Regular, Revisited X Abstract “Regular” is not exactly a new concept. If we reflect back on STL and its design principles, as best described by Alexander with examples, common pitfalls and guidance.2023 Victor Ciura | @ciura_victor - Regular, Revisited X About me Advanced Installer Clang Power Tools Visual C++ @ciura_victor 🐘 @ciura_victor@hachyderm Principal Engineer Visual C++ 🐘 @ciura_victor@hachyderm.io Regular, Revisited2023 Victor Ciura | @ciura_victor - Regular, Revisited 8 Classified The classes we write: RAII Utility Callable
    0 码力 | 180 页 | 19.96 MB | 5 月前
    3
  • ppt文档 hazard pointer synchronous reclamation

    • Reclaim matching objects • Why lock? Concurrent cohort destructors. Asynchronous Reclamation Revisited Hazard Pointer Synchronous Reclamation Beyond Concurrency TS2 – Maged Michael • Pop all objects • Push matched objects back into domain cohort object list and unlock list. LockedHeadOnlyList (revisited): • Reentrant lock: • Why? Asynchronous reclamation of objects that lead to destruction of a cohorts Hazard Pointer Synchronous Reclamation Beyond Concurrency TS2 – Maged Michael Cohort Structures Revisited Hazard Pointer Synchronous Reclamation Beyond Concurrency TS2 – Maged Michael class hazard_pointer_cohort
    0 码力 | 31 页 | 856.38 KB | 5 月前
    3
  • pdf文档 Message Handling with Boolean Algebra

    always_t */) { 11: return r; 12: } else { 13: return and_t{l, r}; 14: } 15: } 76Simplify, revisited (and) This is what it looks like now. 1: template 2: constexpr auto simplify(and_trevisited (or) The overload for or_t is the dual of that for and_t. 1: template
    0 码力 | 103 页 | 4.37 MB | 5 月前
    3
  • pdf文档 Nim - the first high performance language with full support for hot codereloading at runtime

    globals can be added - and will be initialized properly 46 The initial HCR example revisited The initial HCR example revisited # main.nim import hotcodereloading # for reload import other while true:
    0 码力 | 63 页 | 2.91 MB | 1 年前
    3
  • pdf文档 The Hitchhiker’s Guide to Logical Verification

    Verification Condition Generator . . . . . . . . . . . . . . . . . . . . . 151 9.8 Second Program Revisited: Adding Two Numbers . . . . . . . . . . . . 153 9.9 Hoare Triples for Total Correctness . . . . then ‘‘partial_hoare.while_inv_intro else ‘‘partial_hoare.while_inv_intro’); 9.8. Second Program Revisited: Adding Two Numbers 153 vcg | _ := tactic.fail (to_fmt "cannot analyze " + + to_fmt S) end emerging subgoals (via the tactic combinator ;) for the compound statements. 9.8 Second Program Revisited: Adding Two Numbers Using the verification condition generator, we can revisit the correctness
    0 码力 | 215 页 | 1.95 MB | 1 年前
    3
  • pdf文档 From Your First Line of Code to Your Largest Repo: How Visual Studio Code Can Help You Develop More Efficiently in C++

    Code Can Help You Develop More Efficiently in C++ – Alexandra Kemper & Sinem Akinci • Regular, Revisited – Victor Ciura Friday 6th​ • Getting Started with C++ – Michael PriceMicrosoft C++ Questions?
    0 码力 | 31 页 | 2.76 MB | 5 月前
    3
  • pdf文档 《TensorFlow 快速入门与实战》7-实战TensorFlow人脸识别

    �����T���������������I��� � +�Dong Chen, Xudong Cao, Liwei Wang, Fang Wen, Jian Sun. Bayesian face revisited: a joint formulation. 2012, european conference on computer vision. MSRA “Feature Master” �� ��3����
    0 码力 | 81 页 | 12.64 MB | 1 年前
    3
  • pdf文档 Apache Wicket 8.x Reference Guide

    This is child body! 5.4.1. Our example revisited Applying tag to our layout example, we obtain the following markup for the main using CompoundPropertyModel and its ability to access the properties of its model object. The revisited code is the following (the LoginFormRevisited project): 87 public class LoginForm extends Form{ links nor interact with its forms. Example project AnnotationsRolesStrategyExample is a revisited version of MetaDataRolesStrategyExample where we use AnnotationsRoleAuthorizationStrategy
    0 码力 | 350 页 | 9.95 MB | 1 年前
    3
  • pdf文档 Apache Wicket 7.x Reference Guide

    is child body! 5.4.1. Our example revisited Applying tag to our layout example, we obtain the following markup for the main using CompoundPropertyModel and its ability to access the properties of its model object. The revisited code is the following (the LoginFormRevisited project): 85 public class LoginForm extends Form{ links nor interact with its forms. Example project AnnotationsRolesStrategyExample is a revisited version of MetaDataRolesStrategyExample where we use AnnotationsRoleAuthorizationStrategy
    0 码力 | 346 页 | 10.00 MB | 1 年前
    3
共 178 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 18
前往
页
相关搜索词
IterationRevisitedRegularhazardpointersynchronousreclamationMessageHandlingwithBooleanAlgebraNimthefirsthighperformancelanguagefullsupportforhotcodereloadingatruntimeTheHitchhikerGuidetoLogicalVerificationFromYourFirstLineofCodeLargestRepoHowVisualStudioCanHelpYouDevelopMoreEfficientlyinC++TensorFlow快速入门实战人脸识别人脸识别ApacheWicketReference
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩