找到约 10000 条结果
  • Hora 0.1.0发布,可能是最快的 AI 相似性搜索算法库
    Hora 完全基于 Rust🦀 实现,事实证明,Rust 确实非常非常快,完全可以媲美 C++ ,且Hora使用 SIMD进行了加速,速度非常快⚡️⚡️⚡️,具体速度可以参考下面的 benchmark.
    2021-08-07
  • 151.HarmonyOS NEXT系列教程之3D立方体旋转轮播案例讲解之顶部搜索栏实现
    温馨提示:本篇博客的详细代码已发布到 git : [链接] 可以下载运行哦!HarmonyOS NEXT系列教程之3D立方体旋转轮播案例讲解之顶部搜索栏实现效果演示1. 搜索栏结构设计1.1 基础布局 {代码...} 1.2 组件组成Search组件:搜索输入框Image组件:扫描图标Row容器:水平布局2. 样式配置2.1 搜索框样式 {代码...} 2.2 容器样式 ...
    2025-03-20
  • OpenSuse11.3 安装docker yj版本
    找了好多教程都是直接yum in docker 但是我本地的虚拟机是OpenSuSe11.3 很老的版本了 死活安装不下来 添加了无数个镜像仓库,最后终于找到了一个 可以用的1 将docker源添加到SUSE 的zypper源中 {代码...} 2 安装最新版Commercially supported Docker Engine (不知道什么野鸡版本的) {代码...} 3 安装特定版本Dcoker {代码...
    2021-09-09
    1
  • 为 Blade 模板引擎添加新文件扩展名
    之前我是使用的 XiaoLer/blade 这个从 Laravel 中抽离出来的 Blade 模板引擎,并且自定义为使用 .tpl 文件后缀。你问为啥不用默认的 .blade.php 而是用这个 Smarty 的模板扩展名?能有啥,好看呗 :-D
    2016-09-15
    3
  • elastic学习-elastic认证考纲
    1. 数据管理定义满足条件的索引 index定义并使用满足条件的索引模板 index template定义并使用满足条件的动态模板 dynamic template为时间序列索引定义一个ILM策略定义创建新的数据流的索引模板-index template+data stream2. 检索数据执行查询query: terms and/or phrases 在一个索引的单个或多个field中;执行查询query...
    2023-03-06
  • leetcode讲解--701. Insert into a Binary Search Tree
    Given the root node of a binary search tree (BST) and a value to be inserted into the tree, insert the value into the BST. Return the root node of the BST after the insertion. It is guaranteed that the new value does not exist in the original BST.
    2018-12-17
  • 两个小时写了一个无广告版:百度搜索
    效果见图: 不为别的,怕家人搜索到不该搜索的东西、致命的毒药,医院.... 代码逻辑目前比较简单,只实现了接口调用,还没有进行过多逻辑判断,这里跟大家分享的目的也是希望人人都能使用安全卫生的搜索环境: 完整代码:(需要油猴浏览器插件)背景图是采集的bing.com的,会动态跟随变化。 {代码...}
    2018-10-23
    1
  • Elasticsearch 查询权重(qbit)
    前言本文对 Elasticsearch 7.17 适用提升字段的权重multi_match默认 type 为 best_fields {代码...} most_fields {代码...} query_string {代码...} simple_query_string {代码...} 提升子句的权重bool 查询 {代码...} 提升索引的权重indices_boost {代码...} Function score queryElasticSearch 相关性打分机制年份越大...
    2020-05-20
  • leetcode讲解--700. Search in a Binary Search Tree
    Given the root node of a binary search tree (BST) and a value. You need to find the node in the BST that the node's value equals the given value. Return the subtree rooted with that node. If such node doesn't exist, you should return NULL.
    2018-12-26
  • springboot, 本地配置中心
    1 eureka, application.properties {代码...} plus, bootstrap优先级高于application.properties
    2022-07-07
  • Leetcode[35] Search Insert Position
    Given a sorted array and a target value, return the index if thetarget is found. If not, return the index where it would be if it wereinserted in order.You may assume no duplicates in the array. Example 1: Input: [1,3,5,6], 5 Output: 2 Example 2: Input: [1,3,5,6], 2 Output: 1 Example 3: Input: [1...
    2018-01-29
  • 仲夏开源之夜演讲| FOSSG 联合发起人 max:解读人工智能和开源技术的最新热潮
    On 20 July 2023, Max Lorenz, a tech guru at AI startup and co-organizer FOSSG, participated in the keynote of this Midsummer Open Source Night, presenting his thoughts on AI and open source technologies. Here's what he said.
    2023-08-06
  • springboot使用jest操作elasticsearch
    maven {代码...} 配置 {代码...} auto-config {代码...} 使用 {代码...} doc Connecting to Elasticsearch using Jest
    2017-07-03
  • COMP3617 3D图形算法代码
    COMP3617 Virtual and Augmented Reality VR Coursework3D Graphics engine code, VR headset 3D model, additional literature related to motion tracking, physics, and distortion correction. All files are available in the Blackboard coursework folder.Please submit a compressed archive (.zip) with:(a) al...
    2024-01-14
  • 如何自行分析定位SAP BSP错误
    The “BSP tag” I mentioned in the blog title means for example the tag chtmlb:configCellerator below which is pre-delivered by SAP and you could include it in your UI component view to draw various UI element.
    2020-09-04
  • Golang实现简单爬虫框架(3)——简单并发版
    在上篇文章Golang实现简单爬虫框架(2)——单任务版爬虫中我们实现了一个简单的单任务版爬虫,对于单任务版爬虫,每次都要请求页面,然后解析数据,然后才能请求下一个页面。整个过程中,获取网页数据速度比较慢,那么我们就把获取数据模块做成并发执行。在项目的基础上,实现多任务并发版爬虫。
    2019-05-22
    1
  • nginx dynamic resolve upstream servers
    使用nginx时, upstream中若有server不可resolve. start/reload都会失败.当把nginx作为网关时, 可能有多个服务, 任意服务挂掉. 导致整个网关不可启动. 这明显是不合理的.
    2019-11-19
    2