书栈网 · BookStack 本次搜索耗时 0.037 秒,为您找到 2692 个相关结果.
  • H5Score

    H5Score 功能介绍 快速使用 特别说明 H5Score 功能介绍 使用 CSS 编写,带有点击动画效果,多种星级评分特效。 直接使用即可,若需统计分数,调用 js 代码展示评分。 快速使用 引入CSS:zknight_h5score_index.css、zknight_h5score_base.css。 星级评分样式:...
  • 1. 计算布尔值统计信息

    1. 计算布尔值统计信息 # 读取movie,设定行索引是movie_title In [ 2 ]: pd . options . display . max_columns = 50 In [ 3 ]: movie = pd . read_csv ( 'data/movie.csv' , index_col = 'mo...
  • Writing SELECT statements for ORM Mapped Classes

    Writing SELECT statements for ORM Mapped Classes Selecting ORM Entities and Attributes Selecting ORM Entities Selecting Multiple ORM Entities Simultaneously Selecting Individual ...
  • Accessing your files using the Nextcloud Web interface

    Accessing your files using the Nextcloud Web interface Tagging files Comments Video player File controls Previewing files Navigating inside your Nextcloud Sharing status icon...
  • 最佳实践

    最佳实践 1 建表 1.1 数据模型选择 1.2 大宽表与 Star Schema 1.3 分区和分桶 1.4 稀疏索引和 Bloom Filter 1.5 物化视图(rollup) 2 Schema Change 最佳实践 1 建表 1.1 数据模型选择 Doris 数据模型上目前分为三类: AGGREGATE KEY, UN...
  • 介绍

    JavaScript30 - 一个月纯 JS 挑战中文指南 JavaScript30 是什么? 关于《 JavaScript30 中文指南》 如何参加挑战 目录 本中文指南贡献者名单 JOIN US JavaScript30 - 一个月纯 JS 挑战中文指南 创建日期:2016-12-20最后更新:2017-10-29 Repo by...
  • Identifiers

    Identifiers Regular identifiers Delimited identifiers Case sensitivity Identifiers An identifier is an ID to name your database objects, such as index names, field names, al...
  • Systemd

    Systemd Configuration Parameters Getting Started Command Line Configuration File Systemd The Systemd input plugin allows to collect log messages from the Journald daemon on ...
  • WeUI组件库

    WeUI组件库简介 项目背景 快速上手 在线预览 参与贡献 WeUI组件库简介 这是一套基于样式库weui-wxss 开发的小程序扩展组件库,同微信原生视觉体验一致的UI组件库,由微信官方设计团队和小程序团队为微信小程序量身设计,令用户的使用感知更加统一。 支持扩展库 引入,不占用小程序包体积。 项目背景 随着小程序的普及,微信...
  • 167. Two Sum II - Input array is sorted

    题目描述(简单难度) 解法一 总 题目描述(简单难度) 给一个有序数组和一个目标值,找出两个数使其和为目标值,返回这两个数的位置(数组下标加 1)。 解法一 第 1 题 做过无序数组找两个数,里边的解法当然也可以用到这道题,利用了 HashMap ,可以过去看一下。 第 15 题 找出三个数,使其和为目标值的题目中的解法中,其实我...