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

无数据

分类

全部后端开发(117)C++(90)Python(15)云计算&大数据(14)Django(13)系统运维(12)VirtualBox(11)Julia(10)网络与安全(10)数据库(5)

语言

全部英语(130)中文(繁体)(10)中文(简体)(7)英语(3)中文(简体)(1)

格式

全部PDF文档 PDF(132)DOC文档 DOC(9)其他文档 其他(7)PPT文档 PPT(3)
 
本次搜索耗时 0.041 秒,为您找到相关结果约 151 个.
  • 全部
  • 后端开发
  • C++
  • Python
  • 云计算&大数据
  • Django
  • 系统运维
  • VirtualBox
  • Julia
  • 网络与安全
  • 数据库
  • 全部
  • 英语
  • 中文(繁体)
  • 中文(简体)
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • DOC文档 DOC
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Breaking Dependencies: The SOLID Principles

    Breaking Dependencies: The SOLID Principles Klaus Iglberger, CppCon 2020 klaus.iglberger@gmx.de2 Klaus Iglberger C++ Trainer since 2016 Author of the C++ math library (Co-)Organizer Single-Responsibility Principle (SRP) A Circle changes if … … the basic properties of a circle change; … the Screen changes; … the Printer changes; … the ByteStream changes; … the implementation details of SOLID principles to reduce coupling and facilitate change Separate concerns via the SRP to isolate changes Design by OCP to simplify additions/extensions Adhere to the LSP when using abstractions Minimize
    0 码力 | 96 页 | 2.14 MB | 5 月前
    3
  • pdf文档 Thinking Functionally In C++

    1:Functional Code Categories • Actions • Depend on when or how many times they are called. Observable changes occur. • puts("hello world"); • LaunchRocket(); • x = 4; • Calculations • Depend only on their are called. Calling them with the same inputs always results in the same output. No observable changes occur. • std::plus(2,4) • IsEven(integer); • std::all_of(begin(integers), end(integers), IsEven) birthday card with the gift card options that will be put on their desk at the beginning of the day!Breaking down a problem Barb's bakery wants to give their employees a fun gift on their birthday. They
    0 码力 | 114 页 | 3.14 MB | 5 月前
    3
  • pdf文档 Adventures with Legacy Codebases: Tales of Incremental Improvement

    ● Adopt new Poetry + pyproject.toml project templates ○ New linters ○ New type-checking ○ Code changes needed to adopt ● A goal to increase test coverage ○ “Refactoring” to make code more testable“X% analysis ● Always provide a clang-format file ● git-hooks to automatically apply formatting to changes ● Formatting verified in CIImproving with static analysis …with ASAN, UBSAN, and TSANhttps://www E2EMoving up the testing pyramid Unit Tests DSP Regression VST3Changing legacy APIs should you?Breaking changes ● class template checked_value ● class template boost::optional ● Platform
    0 码力 | 77 页 | 4.34 MB | 5 月前
    3
  • pdf文档 Django CMS 2.4.x Documentation

    Release 2.4.3-support 2 Contents CHAPTER 1 Install Warning: Version 2.4 introduces some significant changes that require action if you are upgrading from a previous version. Please refer to Upgrading from USE_THOUSAND_SEPARATOR = True, which caused placeholders pri- mary keys to be formatted according to locale, breaking frontend editing. Fix show_placeholder in preview mode show_placeholder no longer uses cached content release notes 1.3.1 What’s new in 2.4 Warning: Upgrading from previous versions 2.4 introduces some changes that require action if you are upgrading from a previous version. You will need to read the sections
    0 码力 | 104 页 | 709.98 KB | 6 月前
    3
  • epub文档 Django CMS 2.4.x Documentation

    document refers to version 2.4.3-support Install Warning Version 2.4 introduces some significant changes that require action if you are upgrading from a previous version. Please refer to Upgrading from USE_THOUSAND_SEPARATOR = True, which caused placeholders primary keys to be formatted according to locale, breaking frontend editing. Fix show_placeholder in preview mode show_placeholder no longer uses cached content 2.4 release notes What’s new in 2.4 Warning Upgrading from previous versions 2.4 introduces some changes that require action if you are upgrading from a previous version. You will need to read the sections
    0 码力 | 156 页 | 727.78 KB | 6 月前
    3
  • pdf文档 Continuous Regression Testing for Safer and Faster Refactoring

    code change can break our software, how could we stay productive and safely introduce frequent changes? Implement high-level tests and continuously run them at scale to cover real-world system behaviors prone to capturing non-deterministic data. are prone to capturing unimportant data. may leave out changes not captured in the output. fail to compare captured data in their original type. Good tests pass testing27 Aurora Innovation About Touca Find the unintended side-effects of your day-to-day code changes Trusted By: Backed By:28 Aurora Innovation Agenda What is continuous regression testing How
    0 码力 | 85 页 | 11.66 MB | 5 月前
    3
  • pdf文档 Django CMS 2.3.x Documentation

    USE_THOUSAND_SEPARATOR = True, which caused placeholders pri- mary keys to be formatted according to locale, breaking frontend editing. 1.3 2.3.7 release notes Warning: Upgrading from previous versions 2.3.7 now requires namespace. Plugin cancel button fixed The cancel button in plugin change forms no longer saves the changes, but actually cancels. Tests refactor Tests can now be run using setup.py test or runtests.py (the improved. • Internationalized strings in JavaScript now get escaped. 1.7.2 Backwards incompatible changes New minimum requirements for dependencies • django-reversion must now be at version 1.6 • django-sekizai
    0 码力 | 92 页 | 666.41 KB | 6 月前
    3
  • epub文档 Django CMS 3.11.10 Documentation

    can double-click on the paragraph of the text to change it, add formatting, and save it again. Any changes that are made after publishing are saved to a draft and will not be visible until you re-publish com/django-cms/djangocms-admin-style] for a consistent user experience with django CMS and Django admin. 3. It changes into the project directory and runs the migrate command to create the database: 4. It prompts for list of polls in the sideframe, with add_sideframe_item(). After refreshing the page to load the changes, you can now see the list of polls directly from the menu. Also useful would be an option to create
    0 码力 | 493 页 | 1.44 MB | 6 月前
    0.03
  • epub文档 Django CMS 4.1.x Documentation

    can double-click on the paragraph of the text to change it, add formatting, and save it again. Any changes that are made after publishing are saved to a draft and will not be visible until you re-publish com/django-cms/djangocms-admin-style] for a consistent user experience with django CMS and Django admin. 3. It changes into the project directory and runs the migrate command to create the database: 4. It prompts for list of polls in the sideframe, with add_sideframe_item(). After refreshing the page to load the changes, you can now see the list of polls directly from the menu. Also useful would be an option to create
    0 码力 | 518 页 | 1.66 MB | 6 月前
    3
  • pdf文档 Back to Basics: Debugging Techniques

    under a well-defined set of conditions • In contrast, a non-deterministic defect is a defect that changes its symptoms from run-to-run under a well-defined set of conditions 8CppCon 2021 – Back to Basics: root cause of the defect and its relationship to the whole • Repair • Resolve the defect without breaking anything else 13CppCon 2021 – Back to Basics: Debugging Techniques Copyright © 2021 Bob Steagall Gaining enough knowledge about a problem and the surrounding code, that you believe you can make changes to carry out a repair • At a minimum, you should have • Located the incorrect lines of code •
    0 码力 | 44 页 | 470.68 KB | 5 月前
    3
共 151 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 16
前往
页
相关搜索词
BreakingDependenciesTheSOLIDPrinciplesThinkingFunctionallyInC++AdventureswithLegacyCodebasesTalesofIncrementalImprovementDjangoCMS2.4DocumentationContinuousRegressionTestingforSaferandFasterRefactoring2.3httpsdocsdjangocmsorgdownloadsenlatest4.1BacktoBasicsDebuggingTechniques
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩