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

无数据

分类

全部后端开发(330)Java(229)Spring(229)区块链(40)Python(37)Tornado(20)Conda(16)C++(11)Go(3)敏捷开发(3)

语言

全部英语(309)中文(简体)(21)

格式

全部PDF文档 PDF(232)其他文档 其他(98)
 
本次搜索耗时 0.023 秒,为您找到相关结果约 330 个.
  • 全部
  • 后端开发
  • Java
  • Spring
  • 区块链
  • Python
  • Tornado
  • Conda
  • C++
  • Go
  • 敏捷开发
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 The Absurdity of Error Handling

    Software Ltd. Definition of Safety — The Experts 8 Software Language Designer Functional Safety Practitioner I design programming languages and libraries I write safety-critical software© 2023 Codeplay Software Ltd. Definition of Safety — The Priorities 9 Software Language Designer Functional Safety Practitioner Type safety Memory safety Easy to use correctly; hard to use incorrectly I want determinism Definition of Safety — The Primary Concern 14 Software Language Designer Functional Safety Practitioner What if the abstract machine breaks? What if the real machine breaks?© 2023 Codeplay Software
    0 码力 | 43 页 | 1.39 MB | 5 月前
    3
  • pdf文档 The Main Points of C++

    Pointer to member of object struct S { int mi; int f(int n) const; }; auto pmi = &S::mi; auto pf = &S::f; S x{ 5 }; cout << x.*pmi << endl; cout << (x.*pf)(6) << endl; .1. Just one point (dot) • In floating-point Pointer to member struct S { int mi; int f(int n) const; }; int S::* pmi = &S::mi; int (S::* pf)(int) = &S::f; S x{ 5 }; cout << x.*pmi << endl; cout << (x.*pf)(6) << endl; ::4. Four points -> double colon
    0 码力 | 34 页 | 344.31 KB | 5 月前
    3
  • pdf文档 Modern C++ Tutorial: C++11/14/17/20 On the Fly

    parameters, further enhancing the usability of the language. In conclusion, as an advocate and practitioner of C++, we always maintain an open mind to accept new things, and we can promote the development
    0 码力 | 92 页 | 1.79 MB | 1 年前
    3
  • pdf文档 Python的智能问答之路 张晓庆

    开源数据抓取&清洗 • 依赖工具 Ø requests抓取数据 Ø retry重试 • 模型训练&特征生成 • 依赖工具 • gensim:训练word2vec • jieba:切词,统计生成PMI/TM词典 • difflib:调用SequenceMatcher生成edit-distance • fasttext:对词向量进行fine-tune,计算fasttext label • numpy:计算w2v
    0 码力 | 28 页 | 2.60 MB | 1 年前
    3
  • pdf文档 成都敏捷之旅十周年/2_刘朋_程序员如何练就领导力_刘朋

    10+软件行业开发、管理经验 禅 与 敏捷 “所有模型都是错的,但 是其中有些却是有用的。” ——统计学家 乔治·E·P·博克斯 个体与互动 高于 流程和文档 Agile-Driven Leader 第一招 什么是管理? 什么是领导力? 什么是管理? 管理是指在特定的环境条件下,对组织所 拥有的人力、物力、财力、信息等资源进 行有效的决策、计划、组织、领导、控制, 26种语言,在全球售出了200万册 并被《财富》杂志评选的75本必 读的最睿智的图书之一。 Agile-Driven Leader 第一招 “从关注事到关注人, 是从技术到管理最核心 的转变 工作的软件 高于 详尽的文档 Agile-Driven Leader 第二招 SAFe的9个原则 • 采用经济视角 Take 作的数量并管控工作队列的长度 • 与跨领域的计划相同步 • 释放出知识型员工的内在动力 • 决策过程的去中心化 Agile-Driven Leader 第二招 “随时都问自己:我和 我的团队,到底创造 了什么(客户)价值? Agile-Driven Leader 第三招 什么是领导力? “领导力就是把一个人的视野提到更高的境界, 把一个人的成就提到更高的标准,锤炼其人格,
    0 码力 | 40 页 | 2.01 MB | 1 年前
    3
  • pdf文档 Casdoor · An Open Source UI-first Identity Access Management (IAM) / Single-Sign-On (SSO) platform supporting OAuth 2.0, OIDC, SAML and CAS

    client libraries, you can find more details at: 1. https://oauth.net/code/ 2. https://openid.net/certified-open-id-developer-tools/ OIDC UserInf OIDC UserInfo Fields o Fields The following table illustrates applications, like Flarum ? ? Moodle Moodle Using OAuth to connect Moodle Zentao Zentao Zentao is an agile (scrum) project management system/tool, but it does not support OIDC itself. To integrate Zentao
    0 码力 | 825 页 | 58.31 MB | 1 年前
    3
  • pdf文档 成都敏捷之旅十周年/3_大卫张_敏捷是骗人的

    2018-12 故事是这样开始的 开始是这样的! 结果是这样的 结果是这样的! 敏捷就是快速迭代! 敏捷会议可以提升产出! 危险动作,请勿模仿! 危险动作,请勿模仿! Agile is about better. What’s the essential? 出来混,总归是要还的 互 联 网 软 件 超 越 迭 代 建 模 产 品 一个人走得更快,一群人走得更远! 小变化创造奇迹! What’s the essential Agile? 一群人,已经干得不错, 还想干得更好! 如果你想出海,不要先想 着造船,而是激发大家对 大海的渴望! ————安东尼《小王子》 What’s the essential Agile? 互动确实是改变产出 的有效方式! 我今天讲的都是错的
    0 码力 | 18 页 | 888.08 KB | 1 年前
    3
  • pdf文档 Breaking Dependencies: The SOLID Principles

    Single-Responsibility Principle (SRP) ”A class should have only one reason to change.” (Robert C. Martin, Agile Software Development)18 The Single-Responsibility Principle (SRP) explicit Circle( double rad ”Clients should not be forced to depend on methods that they do not use.” (Robert C. Martin, Agile Software Development)66 The Interface Segregation Principle (ISP) ”Many client specific interfaces Abstractions should not depend on details. Details should depend on abstractions.” (Robert C. Martin, Agile Software Development)Drawing Geometry 84 The Dependency Inversion Principle (DIP) Circle DrawCircle
    0 码力 | 96 页 | 2.14 MB | 5 月前
    3
  • pdf文档 成都敏捷之旅十周年/5_王勉_ScaledAgile

    Scaled Agile 大规模敏捷 ·王勉· 2018.12.13 环境 单一产品,逐步扩大敏捷团队。 问题1 敏捷团队太大,沟通成本太高。 问题1 问题2 团队部门化,团队成员缺少认同感。 问题2 产品 UE 前端 后端 测试 敏捷团队 问题3 团队成员缺乏使命感,开发更多感觉自己是资源 。 Scaling Agile@Spotify
    0 码力 | 27 页 | 1.87 MB | 1 年前
    3
  • pdf文档 Implementing C++ Modules: Lessons Learned, Lessons Abandoned

    winrt::impl::make_agile_delegate(struct winrt::Windows::Foundation::AsyncActionCompletedHandler const &)" (??$make_agile_delegate@UAsync
    0 码力 | 53 页 | 1.33 MB | 5 月前
    3
共 330 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 33
前往
页
相关搜索词
TheAbsurdityofErrorHandlingMainPointsC++ModernTutorial11141720OntheFlyPython智能问答张晓庆成都敏捷之旅十周周年十周年刘朋程序程序员如何练就领导领导力CasdoorAnOpenSourceUIfirstIdentityAccessManagementIAMSingleSignSSOplatformsupportingOAuth2.0OIDCSAMLandCAS大卫骗人BreakingDependenciesSOLIDPrinciples王勉ScaledAgileImplementingModulesLessonsLearnedAbandoned
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩