书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 50777 个相关结果.
  • Creating a multicomponent application with odo

    Creating a multicomponent application with odo Creating a project Deploying the back-end component Deploying the front-end component Linking both components Exposing component...
  • Performance

    Performance Premature optimization Avoiding memory allocations Don’t create intermediate strings when writing to an IO Use string interpolation instead of concatenation Avoid IO...
  • 153. Find Minimum in Rotated Sorted Array

    题目描述(中等难度) 解法一 解法二 总 题目描述(中等难度) 给定一个特殊升序数组,即一个排序好的数组,把前边的若干的个数,一起移动到末尾,找出最小的数字。 解法一 其实之前已经在 33 题 解法一中写过这个解法了,这里直接贴过来。 求最小值,遍历一遍当然可以,不过这里提到了有序数组,所以我们可以采取二分的方法去找,二分的方法就...
  • Linkis Console Deployment

    Linkis Console Deployment 1. Preparation 2. Deployment 2.1 Automated deployment 2.2 Manual deployment 3. Common problems Linkis Console Deployment Linkis 1.0 provides a Lin...
  • Examples

    Examples Overview Hello World End to End Examples Examples of using Go Micro Overview We have an extensive examples repository on github. Checkout github.com/micro/exampl...
  • Grid

    List of displays: BreakPoints: Offsets Gutters: API: Main container - va-layout <div class = "va-layout gutter--md" > <div class = "va-row" > <div class ...
  • 规格约束

    规格约束 规格约束 注意: 自治事务执行时,将会在后台启动自治事务session,我们可以通过max_concurrent_autonomous_transactions设置自治事务执行的最大并行数量,该参数取值范围为0~1024,默认值为10。当max_concurrent_autonomous_transactions参数设置为0时,自治...
  • 数组中出现次数超过一半的数字

    数组中出现次数超过一半的数字 题目 解题思路 数组中出现次数超过一半的数字 题目 牛客网 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字。例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2} 。由于数字2在数组中出现了5次,超过数组长度的一半,因此输出 2 。如果不存在则输出 0 。 解题思路 由于数组的...
  • 异常处理

    异常处理 异常处理 使用raise抛出异常 raise "OH NO!" raise Exception . new ( "Some error" ) # 继承Exception类可以自定义异常类 class MyException < Exception end 处理异常使用rescue beg...
  • CASE WHEN

    CASE WHEN Description Syntax Examples CASE WHEN Description CASE WHEN statement is used in that evaluates a list of conditions and returns one of multiple possible re...