书栈网 · BookStack 本次搜索耗时 0.039 秒,为您找到 33890 个相关结果.
  • 插入行

    插入行 插入多行 插入行 原文: https://thepythonguru.com/inserting-rows/ 于 2020 年 1 月 7 日更新 Insert 语句用于在 mysql 中插入记录。 语法 : INSERT INTO <some table> (<some column names>) VALUES("<s...
  • Chapter 6. Build Script Basics 构建脚本的基本

    1136 2018-03-22 《Gradle 2 用户指南》
    Chapter 6. Build Script Basics 构建脚本的基本 6.2. Hello world 命令行加中 -q 的作用 6.3. A shortcut task definition 快捷 task 定义 6.4. Build scripts are code 构建的脚本都是代码 6.5. Task dependencies 依赖...
  • Mars 常用术语

    1748 2019-07-13 《Mars 开发文档》
    在使用 Mars 之前,你需要了解以下常用术语: 名词 描述 长连接 维持一个 socket 连接,用来发送网络请求以及和服务器同步消息。 短连接 每次请求都重新建立新的连接,协议为简单的 http 协议。 seq 也就是上层所看到的 taskid,是用来标识任务的唯一性的,长连上也通过比较 seq 的值来对应请求包和回包的关系。 Cmdid 长连的cg...
  • sort

    package sort Overview Index Examples Package files version: 1.10 package sort import "sort" Overview Package sort provides primitives for sorting slices and user-def...
  • 下标

    下标 下标语法 下标用法 下标选项 类型下标 下标 下标可以定义在类、结构体和枚举中,是访问集合、列表或序列中元素的快捷方式。可以使用下标的索引,设置和获取值,而不需要再调用对应的存取方法。举例来说,用下标访问一个 Array 实例中的元素可以写作 someArray[index] ,访问 Dictionary 实例中的元素可以写作 som...
  • 9.2 XML

    9.2. XML 9.2.1. Low level XML support 低级 XML 支持 9.2.2. Getting started with JAXB 开始 9.2.3. POJOs 9.2.4. Using custom JAXBContext 使用自定义 JAXBContext 9.2.5. MOXy 9.2. XML 正如您...
  • PhysicalSkyMaterial

    PhysicalSkyMaterial Description Properties Property Descriptions Up to date This page is up to date for Godot 4.1 . If you still find outdated information, please open an is...
  • View Parser

    View Parser Using the View Parser Class What It Does Parser templates Parser Configuration Options Substitution Variations Loop Substitutions Nested Substitutions Comments C...
  • The Enum Basics

    The Enum Basics Problem Types of Enumeration Basic Enumerations Raw Value Raw Value: String Raw Value: Int Initialization from Raw Value Associated Value Example from Doc V...
  • 确保线程执行

    确保线程执行 确保线程执行 让我们回到我们之前的程序中遇到的问题。回想一下,我们创建了两个线程,但程序在其中任何一个线程运行之前就已完成。我们通过使用 sleep 方法插入固定长度的延迟来解决这个问题。但是有意在你的程序中引入没有额外作用的延迟并不是你想要做的通用规则。幸运的是,Ruby 有一种更加优雅的方式来确保线程有时间执行。join 方法强...