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

无数据

分类

全部后端开发(114)Python(55)C++(22)Julia(18)Django(13)Conda(11)数据库(10)TiDB(10)前端开发(9)云计算&大数据(7)

语言

全部英语(93)中文(简体)(26)中文(繁体)(23)中文(简体)(3)英语(2)

格式

全部PDF文档 PDF(139)其他文档 其他(7)PPT文档 PPT(1)
 
本次搜索耗时 0.252 秒,为您找到相关结果约 147 个.
  • 全部
  • 后端开发
  • Python
  • C++
  • Julia
  • Django
  • Conda
  • 数据库
  • TiDB
  • 前端开发
  • 云计算&大数据
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 中文(简体)
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Python 标准库参考指南 2.7.18

    False return True 2.5 新版功能. any(iterable) 如果 iterable 的任一元素为真则返回 True。如果迭代器为空,返回 False。等价于: def any(iterable): for element in iterable: if element: return True return False 2.5 新版功能. basestring() sort(). The key argument, if supplied, must be in keyword form (for example, max(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. memoryview(obj) 返回由给定实参创建的“内存视图”对象。有关详细信息,请参阅memoryview sort(). The key argument, if supplied, must be in keyword form (for example, min(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. next(iterator[, default]) Retrieve the next item
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    False return True 2.5 新版功能. any(iterable) 如果 iterable 的任一元素为真则返回 True。如果迭代器为空,返回 False。等价于: def any(iterable): for element in iterable: if element: return True return False 2.5 新版功能. basestring() sort(). The key argument, if supplied, must be in keyword form (for example, max(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. memoryview(obj) 返回由给定实参创建的“内存视图”对象。有关详细信息,请参阅memoryview sort(). The key argument, if supplied, must be in keyword form (for example, min(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. next(iterator[, default]) Retrieve the next item
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
  • pdf文档 Python 标准库参考指南 2.7.18

    False return True 2.5 新版功能. any(iterable) 如果 iterable 的任一元素为真则返回 True。如果迭代器为空,返回 False。等价于: def any(iterable): for element in iterable: if element: return True return False 2.5 新版功能. basestring() sort(). The key argument, if supplied, must be in keyword form (for example, max(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. memoryview(obj) 返回由给定实参创建的“内存视图”对象。有关详细信息,请参阅memoryview sort(). The key argument, if supplied, must be in keyword form (for example, min(a,b,c,key=func)). 在 2.5 版更改: Added support for the optional key argument. next(iterator[, default]) Retrieve the next item
    0 码力 | 1552 页 | 7.42 MB | 9 月前
    3
  • pdf文档 Trends Artificial Intelligence

    12/24: OpenAI announces o3, its highest-ever performing model 1/25: Alibaba unveils Qwen2.5-Max, which surpasses the performance of other leading models (GPT- 4o, Claude 3.5) on some AI overviews to augment its search functions 9/24: Alibaba releases 100 open-source Qwen 2.5 models, with performance in line with Western competitors 1/25: DeepSeek releases its 2021-2025, per NVIDIA 2.5MM 6MM 0 3 6 Number of Developers (MM) 7K 27K 0 15 30 2021 2025 Number of AI Startups (K) Number of Applications Using GPUs (K) 1.7K 4K 0 2.5 5 +2.4x +3.9x +2
    0 码力 | 340 页 | 12.14 MB | 5 月前
    3
  • pdf文档 Django CMS 2.4.x Documentation

    outline the steps necessary for you to follow the Introductory Tutorial. 1.1.1 Requirements • Python 2.5 (or a higher release of 2.x). • Django 1.4.5, 1.5 or higher • South 0.7.2 or higher • django-classy-tags django-filer==0.9.4 cmsplugin-filer==0.9.5 django-reversion==1.7 for Postgresql you would also add: psycopg2==2.5 and install libpq-dev (on Debian-based distro) for MySQL you would also add: mysql-python==1.2.4 and dropped support for Django 1.3 and Python 2.5 Django CMS 2.4 introduces Django 1.5 support. In django CMS 2.4 we dropped support for Django 1.3 and Python 2.5. Django 1.4 and Python 2.6 are now the minimum
    0 码力 | 104 页 | 709.98 KB | 6 月前
    3
  • pdf文档 Symbolic Calculus for High-Performance Computing: From Scratch Using C++23

    3 symbol t; 4 symbol phi; 5 6 formula f = a ∗ sin(w ∗ t + phi ); 7 8 double y = f(a = 5.0, w = 2.5, t = 1.6, phi = 0); CppCon - Vincent Reverdy - October 4th, 2023 - Aurora, Colorado, USA 10 CC0 1 3 symbol t; 4 symbol phi; 5 6 formula f = a ∗ sin(w ∗ t + phi ); 7 8 double y = f(a = 5.0, w = 2.5, t = 1.6, phi = 0); // Binding here The idea operator= should return an object that binds the value formula Introductory example 1 formula f = a ∗ sin(w ∗ t + phi ); 2 3 double y = f(a = 5.0, w = 2.5, t = 1.6, phi = 0); // Substitution ! Starting from the formula 1 template
    0 码力 | 70 页 | 1.80 MB | 6 月前
    3
  • pdf文档 Linear Algebra with The Eigen Cpp Library

    0; MatrixXd mtx{2, 2}; // 0-index as is the case in C++ generally: mtx(0, 0) = 3.0; mtx(1, 0) = 2.5; mtx(0, 1) = -1.0; mtx(1, 1) = mtx3(1, 0) + mtx3(0, 1); // Similar for Vector types Eigen MatrixXd {1.0, 2.0, 3.0}, {1.5, 2.5, 3.5}, {4.0, 5.0, 6.0}, {4.5, 5.5, 6.5}, {7.0, 8.0, 9.0} }; MatrixXd B { {1.0, 2.0, 3.0, 4.0, 5.0}, {1.5, 2.5, 3.5, 4.5, 5.5}, {5.0, 6 Eigen: Scalar Multiplication Daniel Hanson CppCon 2024 15MatrixXd A { {1.0, 2.0, 3.0}, {1.5, 2.5, 3.5}, {4.0, 5.0, 6.0}, {4.5, 5.5, 6.5}, {7.0, 8.0, 9.0} }; MatrixXd mtx_sum = A + C; cout
    0 码力 | 35 页 | 1.10 MB | 6 月前
    3
  • epub文档 Django CMS 2.4.x Documentation

    Why would you need to write a plugin? 2.2. Overview 2.3. The simplest plugin 2.4. Troubleshooting 2.5. Storing configuration 2.6. Advanced 3. App Integration 3.1. Menus 3.2. Attach Menus 3.3. App-Hooks necessary for you to follow the Introductory Tutorial. Requirements Python [http://www.python.org] 2.5 (or a higher release of 2.x). Django [http://www.djangoproject.com] 1.4.5, 1.5 or higher South [http://south django-filer==0.9.4 cmsplugin-filer==0.9.5 django-reversion==1.7 for Postgresql you would also add: psycopg2==2.5 and install libpq-dev (on Debian-based distro) for MySQL you would also add: mysql-python==1.2.4
    0 码力 | 156 页 | 727.78 KB | 6 月前
    3
  • pdf文档 Applicative: The Forgotten Functional Pattern

    evaluate function arguments lazily. we'll need to evaluate function arguments lazily. 52TAKE 2.5 TAKE 2.5 return fmap(l, lazy_call(foo, i), lazy_call(bar, i)); template lazy{[&] { return std::invoke(std::forward(f), std::forward(args)...); }}; } 53TAKE 2.5 TAKE 2.5 template struct lazy { F f{}; std::invoke_result_t opt{}; constexpr explicit(true) auto operator*(this Self&& self) { return *(std::forward(self).opt); } }; 54TAKE 2.5 TAKE 2.5 Better? Maybe? Yes? Better? Maybe? Yes? Take your pick. Use lazy evaluation if you want. Take
    0 码力 | 141 页 | 11.33 MB | 6 月前
    3
  • pdf文档 Django CMS 2.3.x Documentation

    outline the steps necessary for you to follow the Introductory Tutorial. 1.1.1 Requirements • Python 2.5 (or a higher release of 2.x). • Django 1.3.1 or 1.4. • South 0.7.2 or higher • PIL 1.1.6 or higher notes 1.5.1 What’s new in 2.3.3 Restored Python 2.5 support 2.3.3 restores Python 2.5 suppport for the django CMS. 1.5.2 Pending deprecations Python 2.5 support will be dropped in django CMS 2.4. 1.6 2 interface. 2.4.7 Modifying & Extending the menu Please refer to the App Integration documentation 2.5 Plugins reference 2.5.1 File Allows you to upload a file. A filetype icon will be assigned based on
    0 码力 | 92 页 | 666.41 KB | 6 月前
    3
共 147 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 15
前往
页
相关搜索词
Python标准参考指南2.718TrendsArtificialIntelligenceDjangoCMS2.4DocumentationSymbolicCalculusforHighPerformanceComputingFromScratchUsingC++23LinearAlgebrawithTheEigenCppLibraryApplicativeForgottenFunctionalPattern2.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩