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

无数据

分类

全部综合其他(96)Weblate(84)系统运维(18)后端开发(17)httpd(17)数据库(16)TiDB(15)Blender(10)UML(9)PHP(5)

语言

全部中文(简体)(148)

格式

全部PDF文档 PDF(87)其他文档 其他(61)
 
本次搜索耗时 0.211 秒,为您找到相关结果约 148 个.
  • 全部
  • 综合其他
  • Weblate
  • 系统运维
  • 后端开发
  • httpd
  • 数据库
  • TiDB
  • Blender
  • UML
  • PHP
  • 全部
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Julia 中文文档

    符串。这允许在构造正则表达式字 符串时使用字符串变量的内容和其他字符串操作。上面的任何正则表达式代码可以在 Regex() 的单 字符串参数中使用。下面是一些例子: julia> using Dates julia> d = Date(1962,7,10) 1962-07-10 julia> regex_d = Regex("Day " * string(day(d))) r"Day 10" 正如你所见,如果要拆解的容器(比如元组或数组)元素数量不匹配就会报错,和直接给多个参数 报错一样。 9.11. 可选参数 75 9.11 可选参数 在很多情况下,函数参数有合理的默认值,因此也许不需要显式地传递。例如,Dates 模块中的 Date(y, [m, d]) 函数对于给定的年(year)y、月(mouth)m、日(data)d 构造了 Date 类型。但是, m 和 d 参数都是可选的,默认值都是 1。这行为可以简述为: and 1 is automatically passed when only one or two of the arguments are specified: julia> using Dates julia> Date(2000, 12, 12) 2000-12-12 julia> Date(2000, 12) 2000-12-01 julia> Date(2000) 2000-01-01
    0 码力 | 1238 页 | 4.59 MB | 1 年前
    3
  • pdf文档 Laravel 5.1 中文文档

    值,那么该模型已经被软删除了。要启用模型的软删除功能,可 以使用模型上的 Illuminate\Database\Eloquent\SoftDeletestrait 并添加 deleted_at 列 到$dates 属性: dates = ['deleted_at']; } 当然,应该添加 deleted_at 列到数据表。Laravel 查询构建器包含一个帮助函数来创建该列: Schema::table('flights' updated_at 列的值为 Carbon 实例,该类继 承自 PHP 原生的 Datetime 类,并提供了各种有用的方法。 你可以自定义哪些字段被自动调整修改,甚至可以通过重写模型中的$dates 属性完全禁止 调整:
    0 码力 | 307 页 | 3.46 MB | 1 年前
    3
  • pdf文档 Laravel 5.2 中文文档

    Eloquent 日期转化 当调用模型或模型集合的 toArray 方法时,任何添加到 $casts 的属性, 如 date 或 datetime,现在都会被转化为字符串。这使得在 $dates 数组中制定的日期转化 变得简单方便。 全局作用域 我们重写了全局作用域的实现以便于使用,全局作用域不再需要 remove 方法,因此可以在 所有你使用到该方法的地方将其移除。 如果你曾经在 值,那么该模型已经被软删除了。要启用模型的软删除功能, 可以使用模型上的 Illuminate\Database\Eloquent\SoftDeletestrait 并添加 deleted_at 列 到$dates 属性: dates = ['deleted_at']; } 当然,应该添加 deleted_at 列到数据表。Laravel Schema 构建器包含一个帮助函数来创 建该列: Schema::table('flights'
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • chm文档 httpd 2.2.29 中文文档

    some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not The CacheIgnoreNoLastMod directive provides a way to specify that documents without last-modified dates should be considered for caching, even without a last-modified date. If neither a last-modified date printing dates. The echo Element This command prints one of the include variables defined below. If the variable is unset, the result is determined by the SSIUndefinedEcho directive. Any dates printed
    0 码力 | 1854 页 | 1.48 MB | 1 年前
    3
  • chm文档 httpd 2.2.27 中文文档

    some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not The CacheIgnoreNoLastMod directive provides a way to specify that documents without last-modified dates should be considered for caching, even without a last-modified date. If neither a last-modified date printing dates. The echo Element This command prints one of the include variables defined below. If the variable is unset, the result is determined by the SSIUndefinedEcho directive. Any dates printed
    0 码力 | 1849 页 | 1.47 MB | 1 年前
    3
  • chm文档 httpd 2.2.31 中文文档

    some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not The CacheIgnoreNoLastMod directive provides a way to specify that documents without last-modified dates should be considered for caching, even without a last-modified date. If neither a last-modified date printing dates. The echo Element This command prints one of the include variables defined below. If the variable is unset, the result is determined by the SSIUndefinedEcho directive. Any dates printed
    0 码力 | 1860 页 | 1.48 MB | 1 年前
    3
  • chm文档 httpd 2.2.27.dev 中文文档

    some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not The CacheIgnoreNoLastMod directive provides a way to specify that documents without last-modified dates should be considered for caching, even without a last-modified date. If neither a last-modified date printing dates. The echo Element This command prints one of the include variables defined below. If the variable is unset, the result is determined by the SSIUndefinedEcho directive. Any dates printed
    0 码力 | 1849 页 | 1.47 MB | 1 年前
    3
  • chm文档 httpd 2.2.32 中文文档

    some operating systems correctly track new and removed files, but do not track changes for sizes or dates of the files within the directory. Changes to the size or date stamp of an existing file will not The CacheIgnoreNoLastMod directive provides a way to specify that documents without last-modified dates should be considered for caching, even without a last-modified date. If neither a last-modified date printing dates. The echo Element This command prints one of the include variables defined below. If the variable is unset, the result is determined by the SSIUndefinedEcho directive. Any dates printed
    0 码力 | 1866 页 | 1.48 MB | 1 年前
    3
  • pdf文档 PlantUML 1.2020.22 语言参考指引

    ends 2020-07-25 @enduml 10.1.4 Start/End It is possible to define both absolutely, by specifying dates: @startuml Project starts 2020-07-01 [Prototype design] starts 2020-07-01 [Test prototype] starts Responsibilities +++- Location ++ CV Upload Done +++ CV Updated ++++ Spelling & Grammar ++++ Check dates ---- Skills +++ Recruitment sites chosen @endwbs PlantUML 语言参考指引 (1.2020.22) 164 / 294 12.4 Removing
    0 码力 | 295 页 | 3.08 MB | 1 年前
    3
  • pdf文档 Laravel 5.3 中文文档

    值,那么该模型已经被软删除了。要启用模型的软删除功能,可以使用模型上的 Illuminate\Database\Eloquent\SoftDeletestrait 并添加 deleted_at 列到$dates 属性: dates = ['deleted_at']; } 当然,应该添加 deleted_at 列到数据表。Laravel Schema 构建器包含一个帮助函数来创建该列: Schema::table('flights' updated_at 列的值为 Carbon 实例,该类继承自 PHP 原生的 Datetime 类,并提供了各种有用的方法。 你可以自定义哪些字段被自动调整修改,甚至可以通过重写模型中的$dates 属性完全禁止调整:
    0 码力 | 691 页 | 9.37 MB | 1 年前
    3
共 148 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 15
前往
页
相关搜索词
Julia中文文档Laravel5.15.2httpd2.2292731dev32PlantUML1.202022语言参考指引5.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩