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

无数据

分类

全部后端开发(271)C++(172)Python(59)Julia(18)Conda(17)系统运维(16)Django(13)云计算&大数据(13)数据库(12)TiDB(12)

语言

全部英语(286)中文(简体)(15)中文(繁体)(11)英语(3)日语(2)zh(2)西班牙语(1)韩语(1)葡萄牙语(1)

格式

全部PDF文档 PDF(297)其他文档 其他(11)DOC文档 DOC(8)PPT文档 PPT(8)
 
本次搜索耗时 0.071 秒,为您找到相关结果约 324 个.
  • 全部
  • 后端开发
  • C++
  • Python
  • Julia
  • Conda
  • 系统运维
  • Django
  • 云计算&大数据
  • 数据库
  • TiDB
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 英语
  • 日语
  • zh
  • 西班牙语
  • 韩语
  • 葡萄牙语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • DOC文档 DOC
  • 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文档 Conda 23.3.x Documentation

    more about conda's noarch packages. Link and unlink scripts You may optionally execute scripts before and after the link and unlink steps. For more information, see Adding pre- link, post-link, and pre-unlink string). • Letters/Strings indicating non-release versions should always occur at the same position. Before comparison, version strings are parsed as follows: • They are first split into epoch, version number case ��dev�� == 1.1.dev1 # 0 is inserted before string < 1.1.a1 < 1.1.0rc1 < 1.1.0 == 1.1 < 1.1.0post1 # special case ��post�� == 1.1.post1 # 0 is inserted before string < 1.1post1 # special case ��post��
    0 码力 | 370 页 | 2.94 MB | 8 月前
    3
  • pdf文档 Conda 23.5.x Documentation

    more about conda's noarch packages. Link and unlink scripts You may optionally execute scripts before and after the link and unlink steps. For more information, see Adding pre- link, post-link, and pre-unlink string). • Letters/Strings indicating non-release versions should always occur at the same position. Before comparison, version strings are parsed as follows: • They are first split into epoch, version number case ��dev�� == 1.1.dev1 # 0 is inserted before string < 1.1.a1 < 1.1.0rc1 < 1.1.0 == 1.1 < 1.1.0post1 # special case ��post�� == 1.1.post1 # 0 is inserted before string < 1.1post1 # special case ��post��
    0 码力 | 370 页 | 3.11 MB | 8 月前
    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文档 Oracle VM VirtualBox 4.1.40 Programming Guide and Reference

    downside (and, one could say, typical of things related to XML), a lot of standards are involved before a web service can be implemented. Many of the standards invented around XML are used one way or another file grows beyond this limit. • --loginterval (or -I): Maximum time interval to be put in a log file before rotation is triggered, in seconds, and defaults to one day. 1.4.2 Authenticating at web service logon able. On most Linux distribution PAM uses a suid root helper internally, so make sure you test this before deploying it. One can override this behavior by setting the environment variable VBOX_PAM_ALLOW_INACTIVE
    0 码力 | 306 页 | 1.92 MB | 6 月前
    3
  • pdf文档 Oracle VM VirtualBox 4.3.36 Programming Guide and Reference

    downside (and, one could say, typical of things related to XML), a lot of standards are involved before a web service can be implemented. Many of the standards invented around XML are used one way or another file grows beyond this limit. • --loginterval (or -I): Maximum time interval to be put in a log file before rotation is triggered, in seconds, and defaults to one day. 1.4.2 Authenticating at web service logon able. On most Linux distribution PAM uses a suid root helper internally, so make sure you test this before deploying it. One can override this behavior by setting the environment variable VBOX_PAM_ALLOW_INACTIVE
    0 码力 | 376 页 | 1.99 MB | 6 月前
    3
  • pdf文档 Oracle VM VirtualBox 4.3.12 Programming Guide and Reference

    downside (and, one could say, typical of things related to XML), a lot of standards are involved before a web service can be implemented. Many of the standards invented around XML are used one way or another file grows beyond this limit. • --loginterval (or -I): Maximum time interval to be put in a log file before rotation is triggered, in seconds, and defaults to one day. 1.4.2 Authenticating at web service logon able. On most Linux distribution PAM uses a suid root helper internally, so make sure you test this before deploying it. One can override this behavior by setting the environment variable VBOX_PAM_ALLOW_INACTIVE
    0 码力 | 376 页 | 2.24 MB | 6 月前
    3
  • pdf文档 Oracle VM VirtualBox 4.2.32 Programming Guide and Reference

    downside (and, one could say, typical of things related to XML), a lot of standards are involved before a web service can be implemented. Many of the standards invented around XML are used one way or another file grows beyond this limit. • --loginterval (or -I): Maximum time interval to be put in a log file before rotation is triggered, in seconds, and defaults to one day. 1.4.2 Authenticating at web service logon able. On most Linux distribution PAM uses a suid root helper internally, so make sure you test this before deploying it. One can override this behavior by setting the environment variable VBOX_PAM_ALLOW_INACTIVE
    0 码力 | 339 页 | 2.07 MB | 6 月前
    3
共 324 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 33
前往
页
相关搜索词
UndefinedBehaviorWhatEveryProgrammerShouldKnowandFearBuildingCoroutineBasedJobSystemWithoutStandardLibraryBacktoBasicsPointersConda23.3Documentation23.5SingleProducerConsumerLockfreeFIFOFromtheGroundUpOracleVMVirtualBox4.140ProgrammingGuideReference4.336124.232
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩