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

无数据

分类

全部后端开发(236)Python(129)云计算&大数据(119)VirtualBox(112)PyWebIO(84)Julia(77)综合其他(44)Blender(37)数据库(36)Django(24)

语言

全部英语(351)中文(简体)(80)中文(繁体)(10)中文(简体)(2)韩语(1)英语(1)

格式

全部PDF文档 PDF(372)其他文档 其他(73)
 
本次搜索耗时 0.326 秒,为您找到相关结果约 445 个.
  • 全部
  • 后端开发
  • Python
  • 云计算&大数据
  • VirtualBox
  • PyWebIO
  • Julia
  • 综合其他
  • Blender
  • 数据库
  • Django
  • 全部
  • 英语
  • 中文(简体)
  • 中文(繁体)
  • 中文(简体)
  • 韩语
  • 英语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 SQLite, Firefox, and our small IMDB movie database

    1 SQLite, Firefox, and our small IMDB movie database CS3200 Database design (sp18 s2) Version 1/17/2018 2 Overview • This document covers 2 issues: • How to install SQLite manager in Firefox browser: a database with Firefox. • How to load the small IMDB movie database: • I posted a small file that contains subset of data from the IMDB movie website ("300 – Small IMDB - SQLite.sql"). You will upload • Install the plug-in 9 2. Loading the small IMDB movie database 10 Download the small IMDB movie database • Download the small IMDB movie database "300 – Small IMDB - SQLite.sql" from our shared
    0 码力 | 22 页 | 1.83 MB | 1 年前
    3
  • pdf文档 Flask入门教程

    movies|length }} Titles

      {% for movie in movies %} {# 迭代 movies 变量 #}
    • {{ movie.title }} - {{ movie.year }}
    • {# 等同于 movie['title'] #} {% endfor %} {# 使用 endfor # ... @app.route('/') def index(): return render_template('index.html', name=name, movies=movie s) 为了更好的表示这个视图函数的作用,我们把原来的函数名 hello 改为 index ,意思是“索引”,即主页。 在传入 render_template() 函数的关键字参数中,左边的 电影列表 */ .movie-list { list-style-type: none; padding: 0; margin-bottom: 10px; box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rg ba(0, 0, 0, 0.12); } .movie-list li {
    0 码力 | 127 页 | 7.62 MB | 1 年前
    3
  • pdf文档 从零蛋开始学 Rust

    fn play(name:String) { println!("Playing movie {}",name); } } fn main(){ movies::play("Herold and Kumar".to_string()); } Playing movie Herold and Kumar use ������������������������������� play(name:String) { println!("Playing movie {}",name); } } use movies::play; fn main(){ play("Herold and Kumar ".to_string()); } Playing movie Herold and Kumar pub mod movies { pub pub mod comedy { pub fn play(name:String) { println!("Playing comedy movie {}",name); } } } } 19.3.1 �� �������������� ���� Rust ��������� 19.4 ��������
    0 码力 | 168 页 | 1.24 MB | 1 年前
    3
  • pdf文档 The Swift Programming Language

    The next snippet defines two subclasses of MediaItem. The first subclass, Movie, encapsulates additional information about a movie or film. It adds a director property on top of the base MediaItem class second subclass, Song, adds an artist property and initializer on top of the base class: 1 class Movie: MediaItem { 2 var director: String 3 init(name: String, director: String) { 4 two Movie instances and three Song instances. The type of the library array is inferred by initializing it with the contents of an array literal. Swift’s type checker is able to deduce that Movie and
    0 码力 | 525 页 | 4.68 MB | 1 年前
    3
  • pdf文档 Blender v2.92 参考手册(繁体中文版)

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor 動畫 Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting Opening an Image Sequence. Frame A label showing the current frame. Further options See Movie below. Movie Frames packed into a container. Deinterlace Removes fields in a video file. For example playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. 偏移量(Offset) Offsets the first
    0 码力 | 3966 页 | 203.00 MB | 1 年前
    3
  • pdf文档 Blender v2.93 Manual

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor Animation Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting Opening an Image Sequence. Frame A label showing the current frame. Further options See Movie below. Movie Frames packed into a container. Deinterlace Removes fields in a video file. For example playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. Offset Offsets the first frame
    0 码力 | 3962 页 | 201.40 MB | 1 年前
    3
  • pdf文档 Blender v2.92 参考手册(繁体中文版)

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor Animation Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting Opening an Image Sequence. Frame A label showing the current frame. Further options See Movie below. Movie Frames packed into a container. Deinterlace Removes fields in a video file. For example playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. Offset Offsets the first frame
    0 码力 | 3868 页 | 198.83 MB | 1 年前
    3
  • pdf文档 Blender v2.92 Manual

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor Animation Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting Opening an Image Sequence. Frame A label showing the current frame. Further options See Movie below. Movie Frames packed into a container. Deinterlace Removes fields in a video file. For example playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. Offset Offsets the first frame
    0 码力 | 3868 页 | 198.46 MB | 1 年前
    3
  • pdf文档 Blender v3.0 Manual

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor Animation Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting options see Movie below. Movie Frames packed into a container. Frames Sets the range of frames to use. Match Movie Length This button sets the movies frames to the length of the selected movie. Start playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. Offset Offsets the first frame
    0 码力 | 4209 页 | 225.45 MB | 1 年前
    3
  • pdf文档 Blender v3.0 参考手册(繁体中文版)

    Image Editor UV Editor Shader Editor Compositor Geometry Node Editor Texture Nodes Video Sequencer Movie Clip Editor 動畫 Dope Sheet Timeline Graph Editor Drivers Editor Nonlinear Animation Scripting options see Movie below. Movie Frames packed into a container. Frames Sets the range of frames to use. Match Movie Length This button sets the movies frames to the length of the selected movie. Start playback should start. This is a global setting which means it affects all clip users such as the Movie Clip editor itself, motion tracking constraints and Compositor nodes. 偏移量(Offset) Offsets the first
    0 码力 | 4215 页 | 227.19 MB | 1 年前
    3
共 445 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 45
前往
页
相关搜索词
SQLSQLiteFirefoxandoursmallIMDBmoviedatabaseFlask入门教程入门教程零蛋开始RustTheSwiftProgrammingLanguageBlenderv292参考手册参考手册繁体中文繁体中文93Manualv3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩