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

无数据

分类

全部后端开发(32)Python(32)Django(32)

语言

全部英语(31)中文(简体)(1)

格式

全部PDF文档 PDF(17)其他文档 其他(15)
 
本次搜索耗时 0.595 秒,为您找到相关结果约 32 个.
  • 全部
  • 后端开发
  • Python
  • Django
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Django 官方教程翻译项目

    - 53 - 本文档使用 书栈(BookStack.CN) 构建 测试在不同的层次中都存在。有些测试只关注某个很小的细节(某个模型的某个方法的返回值是否满 足预期?),而另一些测试可能检查对某个软件的一系列操作(某一用户输入序列是否造成了预期的 结果?)。其实这和我们在教程的 第二部分(zh)里做的并没有什么不同,我们使用 shell 来测试 某一方法的功能,或者运行某个应用并输入数据来检查它的行为。 测试不仅能发现错误,而且能预防错误 创建你的第一个 Django 项目, 第五部分 - 54 - 本文档使用 书栈(BookStack.CN) 构建 你也许遇到过这种情况:你编写了一个绝赞的软件,但是其他开发者看都不看它一眼,因为它缺少测 试。没有测试的代码不值得信任。 Django 最初开发者之一的 Jacob Kaplan-Moss 说过:“项目 规划时没有包含测试是不科学的。” 打包的解决方案目前有点混乱,因为有各种不同的工具。在本教程中,我们将使用 setuptools 建立我们的包。这是推荐的打包工具(与distribute分支合并后)。可是使用 pip 来安装和卸载它。你现在应该安装这两个软件包。如果需要帮助,你可以参考如何使用 pip 安装 Django。您可以用相同的方式安装 setuptools。 Python 的 打包 是指将你的应用制作成特定的格式,以便能被很方便地安装和使用。Django
    0 码力 | 103 页 | 1.86 MB | 1 年前
    3
  • pdf文档 Django、Vue 和Element UI 前后端原理论述

    pStorm、Rider、RubyMine 和 WebStorm; 3)隐私和安全:优先考虑用户隐私,从不存储或复制代码,始终对数据和日志进行 加密。 除此之外呢?它还可以生成测试用例,保障软件开发人员的代码质量,提高开发团 队生产力和效率。 值得再次强调的是:它是一款免费工具。免费!免费! ·安装方法 上面已经说过,Bito AI 适用于 AppCode、GoLand、Intel MeterSphere 基本的安装过程及常规报错,但是一些环境原因,最后没 有安装成功,现将安装过程及注意事项进行整理,供参考!!! 系统要求: 1、8c 32G 2、windows 纯净版(没有其他系统软件) 安装过程 ·安装 WSL ·安装 Ubuntu ·Docker 安装与配置 ·下载安装包 Windows11 下载安装 MeterSphere 社区版本踩坑指南  作者:M&T. 随着科技日新月异的发展,人工智能正逐渐渗透到我们生活的各方各面,从智能语 音助手到自动驾驶汽车,从智能家居到人脸识别技术,AI 正以其卓越的智能和学习能力 引领着新时代的发展方向。在这个快速演进的时代中,软件测试领域也受到了不小的冲 击。虽然在当下,传统的软测技术仍然是绝对的主力,但是身为 IT 行业中的一员,近几 年 AI 的全新业务体验与其超强的算力所带来的震撼感受也应该远超其他行业。所以为了
    0 码力 | 61 页 | 6.84 MB | 1 年前
    3
  • epub文档 Django 5.1 Documentation

    to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make [https://www.gnu.org/software/make/] installed for this. If you’re on Windows you can alternatively use with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, macOS, or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s article [https://en.wikipedia.org/wiki/Internationalization_and_localization] or the GNU gettext documentation [https://www.gnu.org/software/gettext/manual/gettext.html#Concepts]. Warning Translation is controlled
    0 码力 | 3513 页 | 3.17 MB | 1 年前
    3
  • epub文档 Django 5.1.2 Documentation

    to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make [https://www.gnu.org/software/make/] installed for this. If you’re on Windows you can alternatively use with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, macOS, or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s article [https://en.wikipedia.org/wiki/Internationalization_and_localization] or the GNU gettext documentation [https://www.gnu.org/software/gettext/manual/gettext.html#Concepts]. Warning Translation is controlled
    0 码力 | 3519 页 | 3.17 MB | 1 年前
    3
  • epub文档 Django 5.0.x Documentation

    to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make [https://www.gnu.org/software/make/] installed for this. If you’re on Windows you can alternatively use with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, macOS, or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s article [https://en.wikipedia.org/wiki/Internationalization_and_localization] or the GNU gettext documentation [https://www.gnu.org/software/gettext/manual/gettext.html#Concepts]. Warning Translation is controlled
    0 码力 | 3407 页 | 3.21 MB | 1 年前
    3
  • pdf文档 Django 1.11.x Documentation

    included Makefile to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make installed for this. If you’re on Windows you can alternatively use the included batch file: with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, macOS, or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s Once the translators have filled in the message file, it must be compiled. This process relies on the GNU gettext toolset. Once this is done, Django takes care of translating Web apps on the fly in each available
    0 码力 | 1878 页 | 6.40 MB | 1 年前
    3
  • pdf文档 Django 1.10.x Documentation

    included Makefile to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make installed for this. If you’re on Windows you can alternatively use the included batch file: with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, Mac OS X or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s Once the translators have filled in the message file, it must be compiled. This process relies on the GNU gettext toolset. Once this is done, Django takes care of translating Web apps on the fly in each available
    0 码力 | 1817 页 | 6.19 MB | 1 年前
    3
  • epub文档 Django 1.11.x Documentation

    included Makefile to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make installed for this. If you’re on Windows you can alternatively use the included batch file: with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, macOS, or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s More details can be found in the W3C Web Internationalization FAQ, the Wikipedia article or the GNU gettext documentation. Warning Translation and formatting are controlled by USE_I18N and USE_L10N
    0 码力 | 2747 页 | 2.67 MB | 1 年前
    3
  • epub文档 Django 1.10.x Documentation

    included Makefile to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make installed for this. If you’re on Windows you can alternatively use the included batch file: with the error message that you encounter. Now we are ready to run the test suite. If you’re using GNU/Linux, Mac OS X or some other flavor of Unix, run: $ ./runtests.py Now sit back and relax. Django’s More details can be found in the W3C Web Internationalization FAQ, the Wikipedia article or the GNU gettext documentation. Warning Translation and formatting are controlled by USE_I18N and USE_L10N
    0 码力 | 2538 页 | 2.59 MB | 1 年前
    3
  • pdf文档 Django 1.8.x Documentation

    included Makefile to turn the documentation into HTML: $ cd path/to/django/docs $ make html You’ll need GNU Make installed for this. If you’re on Windows you can alternatively use the included batch file: We can run the test suite by simply cd-ing into the Django tests/ directory and, if you’re using GNU/Linux, Mac OS X or some other flavor of Unix, run: PYTHONPATH=.. python runtests.py --settings=test_sqlite Once the translators have filled in the message file, it must be compiled. This process relies on the GNU gettext toolset. Once this is done, Django takes care of translating Web apps on the fly in each available
    0 码力 | 1685 页 | 6.01 MB | 1 年前
    3
共 32 条
  • 1
  • 2
  • 3
  • 4
前往
页
相关搜索词
Django官方教程翻译项目VueElementUI前后原理论述5.1Documentation5.01.111.101.8
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩