码迷,mamicode.com
首页 >  
搜索关键字:objects    ( 3239个结果
170.分组-group、permission、user的操作
分组 1.Group.objects.create(group_name):创建分组。 2.group.permissions:某个分组上的权限。多对多关系。 (1)group.permissions.add():添加权限。 (2)group.permissions.remove():删除权限。 ( ...
分类:其他好文   时间:2020-02-24 12:46:35    阅读次数:81
Spring Boot集群管理工具KafkaAdminClient
能与原理介绍在Kafka官网中这么描述AdminClient:The AdminClient API supports managing and inspecting topics, brokers, acls, and other Kafka objects. 具体的KafkaAdminClien... ...
分类:编程语言   时间:2020-02-23 16:36:20    阅读次数:446
qt creator源码全方面分析(2-10-5)
[TOC] The Plugin Manager, the Object Pool, and Registered Objects 通常,插件不需要直接访问插件管理器。 交互主要间接的通过 "ExtensionSystem::IPlugin" 接口。 在某些情况下,则必须使用插件管理器API。 插件 ...
分类:其他好文   时间:2020-02-23 09:33:04    阅读次数:60
Django Rest Framework url注册器组件 | 响应器组件 | 分页器组件
文章参考博主:https://www.cnblogs.com/li-li/p/10103918.html 1.url注册器组件 : 通过DRF的视图组件,数据接口逻辑被我们优化到最后剩下一个类,接下来,我们使用DRF的url控制器来帮助我们自动生成url '''3.使用url注册器组件的url''' ...
分类:Web程序   时间:2020-02-22 12:13:09    阅读次数:116
Git理解
1:git init初始化 主要目录说明 objects-存储对象的目录,本地仓库,git中对象分为三种:commit对象,tree对象(多叉树),blob对象;文件都是blob对象,二进制存储; Refs-存储指向branch的最近一次commit对象的指针,也就是commit对象的sha-1值( ...
分类:其他好文   时间:2020-02-22 00:29:48    阅读次数:76
Python Lambda
Python Lambda Python lambda: an expression form that generates function objects. anonymous (i.e., unnamed) function lambda is designed for coding simp ...
分类:编程语言   时间:2020-02-21 11:25:31    阅读次数:85
Ubuntu安装Python版本管理工具pyenv
gyf@gyf-VirtualBox:~$ git clone https://github.com/yyuu/pyenv.git ~/.pyenvCloning into '/home/gyf/.pyenv'...remote: Enumerating objects: 17608, done.r ...
分类:编程语言   时间:2020-02-20 15:29:31    阅读次数:82
leetcode75 Sort Colors
1 """ 2 Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors i ...
分类:其他好文   时间:2020-02-18 23:20:24    阅读次数:134
opencv detectMultiScale()
此函数用已经训练好的分类器(xml文件)来检测人脸人眼等。 【参数说明】 1.image——待检测图片,一般为灰度图像加快检测速度; 2.objects——被检测物体的矩形框向量组; 3.scaleFactor——每次图像尺寸减小的比例,默认为1.1,即每次缩小10% 4.minNeighbors— ...
分类:其他好文   时间:2020-02-18 20:36:51    阅读次数:103
75. Sort Colors
Given an array with n objects colored red, white or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the or ...
分类:其他好文   时间:2020-02-17 23:42:05    阅读次数:71
3239条   上一页 1 ... 25 26 27 28 29 ... 324 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!